Commit c5847374 authored by Davis King's avatar Davis King

Added operator= for simd8f so assignment from float compiles.

parent cbd187fb
......@@ -42,6 +42,11 @@ namespace dlib
inline void store(type* ptr) const { _mm256_storeu_ps(ptr, x); }
inline simd8f& operator=(const simd8i& rhs) { *this = simd8f(rhs); return *this; }
inline simd8f& operator=(const float& val)
{
x = simd8f(val);
return *this;
}
inline unsigned int size() const { return 8; }
inline float operator[](unsigned int idx) const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment