Commit 2ee10362 authored by Davis King's avatar Davis King

merged

parents e8e064e5 9ed2ba9e
...@@ -390,7 +390,7 @@ namespace dlib ...@@ -390,7 +390,7 @@ namespace dlib
#elif defined(DLIB_HAVE_VSX) #elif defined(DLIB_HAVE_VSX)
return vec_cmpeq(lhs(), rhs()); return vec_cmpeq(lhs(), rhs());
#elif defined(DLIB_HAVE_NEON) #elif defined(DLIB_HAVE_NEON)
return vceqq_f32(lhs, rhs); return (int32x4_t)vceqq_f32(lhs, rhs);
#else #else
return simd4f_bool(lhs[0]==rhs[0], return simd4f_bool(lhs[0]==rhs[0],
lhs[1]==rhs[1], lhs[1]==rhs[1],
...@@ -424,7 +424,7 @@ namespace dlib ...@@ -424,7 +424,7 @@ namespace dlib
#elif defined(DLIB_HAVE_VSX) #elif defined(DLIB_HAVE_VSX)
return vec_cmplt(lhs(), rhs()); return vec_cmplt(lhs(), rhs());
#elif defined(DLIB_HAVE_NEON) #elif defined(DLIB_HAVE_NEON)
return vcltq_f32(lhs, rhs); return (int32x4_t)vcltq_f32(lhs, rhs);
#else #else
return simd4f_bool(lhs[0]<rhs[0], return simd4f_bool(lhs[0]<rhs[0],
lhs[1]<rhs[1], lhs[1]<rhs[1],
...@@ -449,7 +449,7 @@ namespace dlib ...@@ -449,7 +449,7 @@ namespace dlib
#elif defined(DLIB_HAVE_VSX) #elif defined(DLIB_HAVE_VSX)
return vec_cmple(lhs(), rhs()); return vec_cmple(lhs(), rhs());
#elif defined(DLIB_HAVE_NEON) #elif defined(DLIB_HAVE_NEON)
return vcleq_f32(lhs, rhs); return (int32x4_t)vcleq_f32(lhs, rhs);
#else #else
return simd4f_bool(lhs[0]<=rhs[0], return simd4f_bool(lhs[0]<=rhs[0],
lhs[1]<=rhs[1], lhs[1]<=rhs[1],
......
...@@ -105,7 +105,6 @@ namespace dlib ...@@ -105,7 +105,6 @@ namespace dlib
x = vld1q_s32(data); x = vld1q_s32(data);
} }
inline simd4i(const int32x4_t& val):x(val) {} inline simd4i(const int32x4_t& val):x(val) {}
inline simd4i(const uint32x4_t& val):x((int32x4_t)val) {}
inline simd4i& operator=(const int32x4_t& val) inline simd4i& operator=(const int32x4_t& val)
{ {
......
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