aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/reference/PixelWiseMultiplication.cpp
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2019-08-28 16:27:26 +0100
committerPablo Marquez <pablo.tello@arm.com>2019-09-04 14:32:18 +0000
commit4aff98fcfd3c736115f3983dc448c3280e570841 (patch)
treefd9ce801272b0a1aec9f14fbe89923760a5c2182 /tests/validation/reference/PixelWiseMultiplication.cpp
parent49be2e32e697f3b7a124018bc3cee91adb5f9478 (diff)
downloadComputeLibrary-4aff98fcfd3c736115f3983dc448c3280e570841.tar.gz
COMPMID-2247: Extend support of CLBoundingBoxTransform for QUANT16_ASYMM
Change-Id: I8af7a382c0bccf55cf7f4a64f46ce9e6cd965afe Signed-off-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-on: https://review.mlplatform.org/c/1833 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Marquez <pablo.tello@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/reference/PixelWiseMultiplication.cpp')
-rw-r--r--tests/validation/reference/PixelWiseMultiplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/validation/reference/PixelWiseMultiplication.cpp b/tests/validation/reference/PixelWiseMultiplication.cpp
index 41a919249e..d9895e5ed9 100644
--- a/tests/validation/reference/PixelWiseMultiplication.cpp
+++ b/tests/validation/reference/PixelWiseMultiplication.cpp
@@ -160,7 +160,7 @@ SimpleTensor<uint8_t> pixel_wise_multiplication(const SimpleTensor<uint8_t> &src
SimpleTensor<float> src1_tmp = convert_from_asymmetric(src1);
SimpleTensor<float> src2_tmp = convert_from_asymmetric(src2);
SimpleTensor<float> dst_tmp = pixel_wise_multiplication<float>(src1_tmp, src2_tmp, scale, convert_policy, rounding_policy, qout);
- dst = convert_to_asymmetric(dst_tmp, qout);
+ dst = convert_to_asymmetric<uint8_t>(dst_tmp, qout);
}
else
{