aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorVidhya Sudhan Loganathan <vidhyasudhan.loganathan@arm.com>2018-06-18 14:40:56 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:53:09 +0000
commit0fc25454b6ce499b7f89792f91b81a61a42d3182 (patch)
tree0c988cbbef3f5f1967cc2f77672d05a702191349 /utils
parentf5f0ecca39c905bc8c1f90e7469eed2221ca662f (diff)
downloadComputeLibrary-0fc25454b6ce499b7f89792f91b81a61a42d3182.tar.gz
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 <bsgcomp@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/GraphUtils.cpp2
-rw-r--r--utils/TypePrinter.h6
2 files changed, 0 insertions, 8 deletions
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<int8_t> distribution_s8(_lower.get<int8_t>(), _upper.get<int8_t>());
fill<int8_t>(tensor, distribution_s8);
@@ -335,7 +334,6 @@ bool RandomAccessor::access_tensor(ITensor &tensor)
break;
}
case DataType::S16:
- case DataType::QS16:
{
std::uniform_int_distribution<int16_t> distribution_s16(_lower.get<int16_t>(), _upper.get<int16_t>());
fill<int16_t>(tensor, distribution_s16);
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index f74623ea69..2bd30d53f8 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -545,9 +545,6 @@ inline ::std::ostream &operator<<(::std::ostream &os, const DataType &data_type)
case DataType::U8:
os << "U8";
break;
- case DataType::QS8:
- os << "QS8";
- break;
case DataType::QASYMM8:
os << "QASYMM8";
break;
@@ -560,9 +557,6 @@ inline ::std::ostream &operator<<(::std::ostream &os, const DataType &data_type)
case DataType::S16:
os << "S16";
break;
- case DataType::QS16:
- os << "QS16";
- break;
case DataType::U32:
os << "U32";
break;