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 | 18 +++++++ .../test.json | 56 ++++++++++++++++++++++ 4 files changed, 115 insertions(+) create mode 100644 operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/desc.json create mode 100644 operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/input-0.json create mode 100644 operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/input-1.json create mode 100644 operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/test.json (limited to 'operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8') diff --git a/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/desc.json b/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/desc.json new file mode 100644 index 000000000..9b2042e49 --- /dev/null +++ b/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/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": "Input Dimensions do not match output", + "profile": [ + "tosa-bi", + "tosa-mi" + ] +} \ No newline at end of file diff --git a/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/input-0.json b/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/input-0.json new file mode 100644 index 000000000..1e0137c53 --- /dev/null +++ b/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/input-0.json @@ -0,0 +1,17 @@ +{ + "type": "int32", + "data": [ + -18, + 92, + -120, + 106, + 39, + 101, + 33, + -79, + 72, + -100, + -113, + -72 + ] +} \ No newline at end of file diff --git a/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/input-1.json b/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/input-1.json new file mode 100644 index 000000000..ec3767958 --- /dev/null +++ b/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/input-1.json @@ -0,0 +1,18 @@ +{ + "type": "int32", + "data": [ + 3, + 8, + 0, + 10, + 28, + 16, + 23, + 31, + 15, + 11, + 20, + 7, + 30 + ] +} \ No newline at end of file diff --git a/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/test.json b/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/test.json new file mode 100644 index 000000000..8f65eab80 --- /dev/null +++ b/operators/ew_binary/logical_right_shift/logical_right_shift_ERRORIF_DimensionMismatch_12_i8/test.json @@ -0,0 +1,56 @@ +{ + version: { + _major: 0, + _minor: 41, + _patch: 0, + _draft: true + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "LOGICAL_RIGHT_SHIFT", + attribute_type: "NONE", + inputs: [ + "input-0", + "input-1" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 12 + ], + type: "INT8" + }, + { + name: "input-1", + shape: [ + 13 + ], + type: "INT8" + }, + { + name: "result-0", + shape: [ + 12 + ], + type: "INT8" + } + ], + inputs: [ + "input-0", + "input-1" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1