summaryrefslogtreecommitdiffstats
path: root/vec_sse_float4.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_float4.h
parent137ce80e5535eb98872e5b49970fad2615cb57fe (diff)
downloadvecmathlib-ba43da889e5d662eedb4c2957162b4d9254557f9.zip
vecmathlib-ba43da889e5d662eedb4c2957162b4d9254557f9.tar.gz
Implement frexp
Diffstat (limited to 'vec_sse_float4.h')
-rw-r--r--vec_sse_float4.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vec_sse_float4.h b/vec_sse_float4.h
index 5259cb2..2163e09 100644
--- a/vec_sse_float4.h
+++ b/vec_sse_float4.h
@@ -545,6 +545,7 @@ namespace vecmathlib {
realvec fmax(realvec y) const { return _mm_max_ps(v, y.v); }
realvec fmin(realvec y) const { return _mm_min_ps(v, y.v); }
realvec fmod(realvec y) const { return MF::vml_fmod(*this, y); }
+ 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 { return MF::vml_ilogb(*this); }
boolvec_t isfinite() const { return MF::vml_isfinite(*this); }
OpenPOWER on IntegriCloud