summaryrefslogtreecommitdiffstats
path: root/vec_double.h
diff options
context:
space:
mode:
Diffstat (limited to 'vec_double.h')
-rw-r--r--vec_double.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/vec_double.h b/vec_double.h
index 2392756..d19126b 100644
--- a/vec_double.h
+++ b/vec_double.h
@@ -290,7 +290,7 @@ namespace vecmathlib {
realvec atanh() const { return MF::vml_atanh(*this); }
realvec ceil() const { return MF::vml_ceil(*this); }
realvec copysign(realvec y) const { return MF::vml_copysign(*this, y); }
- realvec cos() const { return MF::vml_cos(*this); }
+ realvec cos() const { return MF::vml_cos_chebyshev_double(*this); }
realvec cosh() const { return MF::vml_cosh(*this); }
realvec exp() const { return MF::vml_exp(*this); }
realvec exp10() const { return MF::vml_exp10(*this); }
@@ -319,7 +319,7 @@ namespace vecmathlib {
realvec rsqrt() const { return MF::vml_rsqrt(*this); }
realvec scalbn(intvec_t n) const { return MF::vml_scalbn(*this, n); }
boolvec_t signbit() const { return MF::vml_signbit(*this); }
- realvec sin() const { return MF::vml_sin(*this); }
+ realvec sin() const { return MF::vml_sin_chebyshev_double(*this); }
realvec sinh() const { return MF::vml_sinh(*this); }
realvec sqrt() const { return MF::vml_sqrt(*this); }
realvec tan() const { return MF::vml_tan(*this); }
OpenPOWER on IntegriCloud