commit | 2326dd1a88bfedda6d753f01ab234b34a7a0e4fc | [log] [tgz] |
---|---|---|
author | Przemyslaw Szczepaniak <pszczepaniak@google.com> | Fri Nov 29 09:49:17 2019 +0000 |
committer | Lev Proleev <levp@google.com> | Mon Jan 06 15:20:10 2020 +0000 |
tree | fcad1c61e7a3653d67f7f96c8c5a75addf067a1d | |
parent | 0184f1836d91051a4c81c3e90cb00f41428e82ff [diff] [blame] |
Add TENSOR_QUANT8_ASYMM_SIGNED support for ARG(MIN|MAX) Test: CTS/VTS Change-Id: I4a90642f4d8500237fd41de76687fbe4c021b652 Merged-In: I4a90642f4d8500237fd41de76687fbe4c021b652 (cherry picked from commit e9f0b92568bd30782b844e7aff943844257d720d)
diff --git a/neuralnetworks/1.3/vts/functional/ValidateModel.cpp b/neuralnetworks/1.3/vts/functional/ValidateModel.cpp index 242e12e..6fd5407 100644 --- a/neuralnetworks/1.3/vts/functional/ValidateModel.cpp +++ b/neuralnetworks/1.3/vts/functional/ValidateModel.cpp
@@ -340,7 +340,8 @@ case OperationType::ARGMAX: case OperationType::ARGMIN: { if (type == OperandType::TENSOR_FLOAT16 || type == OperandType::TENSOR_FLOAT32 || - type == OperandType::TENSOR_INT32 || type == OperandType::TENSOR_QUANT8_ASYMM) { + type == OperandType::TENSOR_INT32 || type == OperandType::TENSOR_QUANT8_ASYMM || + type == OperandType::TENSOR_QUANT8_ASYMM_SIGNED) { return true; } } break;