From 874bb4fe493b2958a21e9a84c22828e82d4ff167 Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Wed, 16 Nov 2022 14:39:55 +0000 Subject: Updating conformance files for BF16 support Signed-off-by: Jeremy Johnson Change-Id: Iabe3a47a30eaea83f29b160ae2227e57ec22e96d --- .../desc.json | 24 ++++++++++ .../input-0.json | 17 +++++++ .../input-1.json | 6 +++ .../test.json | 56 ++++++++++++++++++++++ 4 files changed, 103 insertions(+) create mode 100644 operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/desc.json create mode 100644 operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/input-0.json create mode 100644 operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/input-1.json create mode 100644 operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/test.json (limited to 'operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32') diff --git a/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/desc.json b/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/desc.json new file mode 100644 index 000000000..e7d7ed273 --- /dev/null +++ b/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/desc.json @@ -0,0 +1,24 @@ +{ + "tosa_file": "test.json", + "ifm_name": [ + "input-0", + "input-1" + ], + "ifm_file": [ + "input-0.npy", + "input-1.npy" + ], + "ofm_name": [ + "result-0" + ], + "ofm_file": [ + "result-0.npy" + ], + "expected_return_code": 2, + "expected_failure": true, + "expected_failure_desc": "Output data type not supported for this configuration of operator", + "profile": [ + "tosa-bi", + "tosa-mi" + ] +} \ No newline at end of file diff --git a/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/input-0.json b/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/input-0.json new file mode 100644 index 000000000..1b1c4db8a --- /dev/null +++ b/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/input-0.json @@ -0,0 +1,17 @@ +{ + "type": "int32", + "data": [ + 202512168, + -1702580955, + -382467075, + 2122462196, + 610379911, + 1543414759, + -753305929, + 990576163, + 1010031710, + -1344151502, + -1199242824, + -296739315 + ] +} \ No newline at end of file diff --git a/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/input-1.json b/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/input-1.json new file mode 100644 index 000000000..a52fda427 --- /dev/null +++ b/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/input-1.json @@ -0,0 +1,6 @@ +{ + "type": "int32", + "data": [ + 588718509 + ] +} \ No newline at end of file diff --git a/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/test.json b/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/test.json new file mode 100644 index 000000000..98bdb03a4 --- /dev/null +++ b/operators/ew_binary/intdiv/intdiv_ERRORIF_WrongOutputType_12_i32/test.json @@ -0,0 +1,56 @@ +{ + version: { + _major: 0, + _minor: 41, + _patch: 0, + _draft: true + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "INTDIV", + attribute_type: "NONE", + inputs: [ + "input-0", + "input-1" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 12 + ], + type: "INT32" + }, + { + name: "input-1", + shape: [ + 1 + ], + type: "INT32" + }, + { + name: "result-0", + shape: [ + 12 + ], + type: "FP16" + } + ], + inputs: [ + "input-0", + "input-1" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1