aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJeremy Johnson <jeremy.johnson@arm.com>2023-10-18 17:22:21 +0100
committerEric Kunze <eric.kunze@arm.com>2023-11-02 23:22:09 +0000
commitd1a08ce27ef8d0f6cf77e1b864610aade06edc5c (patch)
tree777992f45d240361f898b1d21902c2a46c58235f /scripts
parentb0b9e33c3500bd8dc9b12ef012d4234b1245247a (diff)
downloadreference_model-d1a08ce27ef8d0f6cf77e1b864610aade06edc5c.tar.gz
Compliance mode testing for CONV2D
Added CONV2D data generation. Updated verify dot product check to latest specification. Updated test generator and python datagenerator library to create const files during test generation. Add support for compliance test sets to conformance test_select. Signed-off-by: Jeremy Johnson <jeremy.johnson@arm.com> Change-Id: I5be3b761a1e3ef259c058e493877cd5a89d5778b
Diffstat (limited to 'scripts')
-rw-r--r--scripts/schemavalidation/datagen-config.schema.json7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/schemavalidation/datagen-config.schema.json b/scripts/schemavalidation/datagen-config.schema.json
index 01f9fad..68789f6 100644
--- a/scripts/schemavalidation/datagen-config.schema.json
+++ b/scripts/schemavalidation/datagen-config.schema.json
@@ -85,7 +85,8 @@
},
"ks": {
"description": "kernel size for this dot product operation",
- "type": "integer"
+ "type": "integer",
+ "minimum": 0
},
"acc_type": {
"description": "operator accumulator type (like tensor data_type)",
@@ -93,9 +94,9 @@
},
"kernel": {
"type": "array",
- "description": "kernel x, y sizes (for avg_pool2d)",
+ "description": "kernel x, y (and z) sizes",
"minItems": 2,
- "maxItems": 2,
+ "maxItems": 3,
"items": {
"description": "kernel dimension",
"type": "integer",