From 0fc25454b6ce499b7f89792f91b81a61a42d3182 Mon Sep 17 00:00:00 2001 From: Vidhya Sudhan Loganathan Date: Mon, 18 Jun 2018 14:40:56 +0100 Subject: COMPMID-970 : Remove QS8 / QS16 support Remove QS8 and QS16 validation and benchmark tests Change-Id: I566f1474c1fafcb3903115ec2d3a003d73e4c93b Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/133762 Tested-by: Jenkins Reviewed-by: Pablo Tello --- utils/GraphUtils.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'utils/GraphUtils.cpp') diff --git a/utils/GraphUtils.cpp b/utils/GraphUtils.cpp index 0edb6f2a56..b51e122d61 100644 --- a/utils/GraphUtils.cpp +++ b/utils/GraphUtils.cpp @@ -322,7 +322,6 @@ bool RandomAccessor::access_tensor(ITensor &tensor) break; } case DataType::S8: - case DataType::QS8: { std::uniform_int_distribution distribution_s8(_lower.get(), _upper.get()); fill(tensor, distribution_s8); @@ -335,7 +334,6 @@ bool RandomAccessor::access_tensor(ITensor &tensor) break; } case DataType::S16: - case DataType::QS16: { std::uniform_int_distribution distribution_s16(_lower.get(), _upper.get()); fill(tensor, distribution_s16); -- cgit v1.2.1