You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm currently fighting a bit with Vector. There are really many functions in it and they are really helpful, but for most of our algorithms we would need exp, log, sqrt, sin, cos, etc. For some of these methods we are using MKL, but it would be much nicer to have them in Vector<T> . Of course I would do my own implementations either using SVML or _mm256_exp_ps in native libraries, but Vector<T> is so much nicer and platform independent.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello,
I'm currently fighting a bit with Vector. There are really many functions in it and they are really helpful, but for most of our algorithms we would need
exp, log, sqrt, sin, cos
, etc. For some of these methods we are using MKL, but it would be much nicer to have them inVector<T>
. Of course I would do my own implementations either usingSVML
or_mm256_exp_ps
in native libraries, butVector<T>
is so much nicer and platform independent.Are there any plans to add this to vector?
Beta Was this translation helpful? Give feedback.
All reactions