We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cf7658 commit a556b4cCopy full SHA for a556b4c
gallery/simd-variance.cpp
@@ -17,7 +17,7 @@ class VarianceTransformer : public SimdTransformer<double>
17
18
void update(const packed_type& data, packed_type* pBuffer)
19
{
20
- *pBuffer += boost::simd::sqr(data - mean_);
+ *pBuffer += sqr(data - mean_);
21
}
22
23
value_type reduce(const packed_type& data)
0 commit comments