summaryrefslogtreecommitdiffstats
path: root/vec_builtin.h
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-06-28 14:04:29 -0400
committerErik Schnetter <schnetter@gmail.com>2013-06-28 14:04:29 -0400
commitba43da889e5d662eedb4c2957162b4d9254557f9 (patch)
tree839bf17b2201bd5b912c461cd36a63e97a4200ab /vec_builtin.h
parent137ce80e5535eb98872e5b49970fad2615cb57fe (diff)
downloadvecmathlib-ba43da889e5d662eedb4c2957162b4d9254557f9.zip
vecmathlib-ba43da889e5d662eedb4c2957162b4d9254557f9.tar.gz
Implement frexp
Diffstat (limited to 'vec_builtin.h')
-rw-r--r--vec_builtin.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vec_builtin.h b/vec_builtin.h
index a240a6d..f7db8ca 100644
--- a/vec_builtin.h
+++ b/vec_builtin.h
@@ -532,6 +532,7 @@ namespace vecmathlib {
realvec_t fmax(realvec_t y) const { return MF::vml_fmax(*this, y); }
realvec_t fmin(realvec_t y) const { return MF::vml_fmin(*this, y); }
realvec_t fmod(realvec_t y) const { return MF::vml_fmod(*this, y); }
+ realvec frexp(intvec_t& r) const { return MF::vml_frexp(*this, r); }
realvec_t hypot(realvec_t y) const { return MF::vml_hypot(*this, y); }
intvec_t ilogb() const { return MF::vml_ilogb(*this); }
boolvec_t isfinite() const { return MF::vml_isfinite(*this); }
OpenPOWER on IntegriCloud