From 7485d5a62685cb745ab50e970adb722cb71557ac Mon Sep 17 00:00:00 2001 From: Vidhya Sudhan Loganathan Date: Wed, 4 Jul 2018 09:34:00 +0100 Subject: COMPMID-970 : Remove QS8 / QS16 support Removed fixed point related code. Change-Id: I487acf138dace3b0450e0d72ca7071eaec254566 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/137678 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- tests/validation/Helpers.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/validation/Helpers.h') diff --git a/tests/validation/Helpers.h b/tests/validation/Helpers.h index 2b4d277e92..814d1f5ed0 100644 --- a/tests/validation/Helpers.h +++ b/tests/validation/Helpers.h @@ -176,13 +176,11 @@ void fill_lookuptable(T &&table) } /** Helper function to get the testing range for batch normalization layer. - * - * @param[in] fixed_point_position (Optional) Number of bits for the fractional part. Defaults to 0. * * @return A pair containing the lower upper testing bounds. */ template -std::pair get_batchnormalization_layer_test_bounds(int fixed_point_position = 0) +std::pair get_batchnormalization_layer_test_bounds() { const bool is_float = std::is_floating_point::value; std::pair bounds; @@ -194,7 +192,7 @@ std::pair get_batchnormalization_layer_test_bounds(int fixed_point_positio } else { - bounds = std::make_pair(1, 1 << (fixed_point_position)); + bounds = std::make_pair(1, 1); } return bounds; -- cgit v1.2.1