summaryrefslogtreecommitdiffstats
path: root/vec_sse_float1.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_sse_float1.h
parent137ce80e5535eb98872e5b49970fad2615cb57fe (diff)
downloadvecmathlib-ba43da889e5d662eedb4c2957162b4d9254557f9.zip
vecmathlib-ba43da889e5d662eedb4c2957162b4d9254557f9.tar.gz
Implement frexp
Diffstat (limited to 'vec_sse_float1.h')
-rw-r--r--vec_sse_float1.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vec_sse_float1.h b/vec_sse_float1.h
index 56ece24..12ab1ae 100644
--- a/vec_sse_float1.h
+++ b/vec_sse_float1.h
@@ -421,6 +421,7 @@ namespace vecmathlib {
return to_float(_mm_min_ss(from_float(v), from_float(y.v)));
}
realvec fmod(realvec y) const { return std::fmod(v, y.v); }
+ realvec frexp(intvec_t& r) const { return MF::vml_frexp(*this, r); }
realvec hypot(realvec y) const { return MF::vml_hypot(*this, y); }
intvec_t ilogb() const
{
OpenPOWER on IntegriCloud