From f3e016f7aedad5bc995932e75821f2eeb2ec45ea Mon Sep 17 00:00:00 2001 From: Kevin Cheng Date: Tue, 2 Nov 2021 01:15:50 +0000 Subject: more ERROR_IF fixes - TRANSPOSE: move perm attribute check to compile-time checker - TABLE: add output type checker Signed-off-by: Kevin Cheng Change-Id: I834a5f290fbc384ef339b624060e6e5c77072c36 --- reference_model/src/ops/ewise_binary.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'reference_model/src/ops/ewise_binary.cc') diff --git a/reference_model/src/ops/ewise_binary.cc b/reference_model/src/ops/ewise_binary.cc index 415cd1c..b199f69 100644 --- a/reference_model/src/ops/ewise_binary.cc +++ b/reference_model/src/ops/ewise_binary.cc @@ -512,6 +512,7 @@ int OpTable::checkTensorAttributes() } ERROR_IF(inputs[0]->getDtype() != InDtype, "OpTable: Unexpected input type"); + ERROR_IF(outputs[0]->getDtype() != OutDtype, "OpTable: Unexpected output type"); ERROR_IF(attribute->table().size() != TableNumEntries, "OpTable: table attribute size must be %u", TableNumEntries); for (uint32_t i = 0; i < TableNumEntries; i++) -- cgit v1.2.1