aboutsummaryrefslogtreecommitdiff
path: root/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b
diff options
context:
space:
mode:
authorJeremy Johnson <jeremy.johnson@arm.com>2022-10-13 12:50:21 +0100
committerJeremy Johnson <jeremy.johnson@arm.com>2022-10-13 12:50:21 +0100
commit4cc1201dde80193611cc8e14a7886aba96a3da09 (patch)
tree7911391452d9fe7c90f1756d9379c7d69a526669 /operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b
parentcf8989f6250721418177c5b78cdedb7b6c56f74d (diff)
downloadconformance_tests-4cc1201dde80193611cc8e14a7886aba96a3da09.tar.gz
Updating EW_BINARY tests for FP16 and accumulator types
Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com> Change-Id: Ia7139c9720b6e2bbaa6b2dcc4c7367aa07135f4e
Diffstat (limited to 'operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b')
-rw-r--r--operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/desc.json24
-rw-r--r--operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/input-0.json57
-rw-r--r--operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/input-1.json18
-rw-r--r--operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/test.json58
4 files changed, 157 insertions, 0 deletions
diff --git a/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/desc.json b/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/desc.json
new file mode 100644
index 000000000..338bd3ec2
--- /dev/null
+++ b/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/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 Rank does not match output rank",
+ "profile": [
+ "tosa-bi",
+ "tosa-mi"
+ ]
+} \ No newline at end of file
diff --git a/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/input-0.json b/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/input-0.json
new file mode 100644
index 000000000..59b558e23
--- /dev/null
+++ b/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/input-0.json
@@ -0,0 +1,57 @@
+{
+ "type": "bool",
+ "data": [
+ [
+ true,
+ true
+ ],
+ [
+ false,
+ true
+ ],
+ [
+ false,
+ true
+ ],
+ [
+ false,
+ true
+ ],
+ [
+ false,
+ true
+ ],
+ [
+ false,
+ false
+ ],
+ [
+ true,
+ false
+ ],
+ [
+ true,
+ true
+ ],
+ [
+ true,
+ false
+ ],
+ [
+ false,
+ false
+ ],
+ [
+ true,
+ true
+ ],
+ [
+ true,
+ true
+ ],
+ [
+ false,
+ false
+ ]
+ ]
+} \ No newline at end of file
diff --git a/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/input-1.json b/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/input-1.json
new file mode 100644
index 000000000..89e7bc342
--- /dev/null
+++ b/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/input-1.json
@@ -0,0 +1,18 @@
+{
+ "type": "bool",
+ "data": [
+ false,
+ false,
+ false,
+ false,
+ false,
+ false,
+ true,
+ true,
+ true,
+ false,
+ false,
+ false,
+ false
+ ]
+} \ No newline at end of file
diff --git a/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/test.json b/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/test.json
new file mode 100644
index 000000000..8e0083c82
--- /dev/null
+++ b/operators/ew_binary/logical_or/logical_or_ERRORIF_RankMismatch_13x2_b/test.json
@@ -0,0 +1,58 @@
+{
+ version: {
+ _major: 0,
+ _minor: 41,
+ _patch: 0,
+ _draft: true
+ },
+ blocks: [
+ {
+ name: "main",
+ operators: [
+ {
+ op: "LOGICAL_OR",
+ attribute_type: "NONE",
+ inputs: [
+ "input-0",
+ "input-1"
+ ],
+ outputs: [
+ "result-0"
+ ]
+ }
+ ],
+ tensors: [
+ {
+ name: "input-0",
+ shape: [
+ 13,
+ 2
+ ],
+ type: "BOOL"
+ },
+ {
+ name: "input-1",
+ shape: [
+ 13
+ ],
+ type: "BOOL"
+ },
+ {
+ name: "result-0",
+ shape: [
+ 13,
+ 2
+ ],
+ type: "BOOL"
+ }
+ ],
+ inputs: [
+ "input-0",
+ "input-1"
+ ],
+ outputs: [
+ "result-0"
+ ]
+ }
+ ]
+}