aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/ReferenceCPP.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/ReferenceCPP.cpp')
-rw-r--r--tests/validation/ReferenceCPP.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/validation/ReferenceCPP.cpp b/tests/validation/ReferenceCPP.cpp
index 4c831ebe0a..029f6586f5 100644
--- a/tests/validation/ReferenceCPP.cpp
+++ b/tests/validation/ReferenceCPP.cpp
@@ -111,14 +111,6 @@ void ReferenceCPP::absolute_difference(const RawTensor &src1, const RawTensor &s
boost::apply_visitor(absolute_difference_visitor(), s1, s2, d);
}
-// Mean and standard deviation
-void ReferenceCPP::mean_and_standard_deviation(const RawTensor &src, float &mean, float &std_dev)
-{
- ARM_COMPUTE_ERROR_ON(src.data_type() != DataType::U8);
- const Tensor<uint8_t> s(src.shape(), src.data_type(), src.fixed_point_position(), reinterpret_cast<const uint8_t *>(src.data()));
- tensor_operations::mean_and_standard_deviation(s, mean, std_dev);
-}
-
// Integral image
void ReferenceCPP::integral_image(const RawTensor &src, RawTensor &dst)
{