From d1a08ce27ef8d0f6cf77e1b864610aade06edc5c Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Wed, 18 Oct 2023 17:22:21 +0100 Subject: 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 Change-Id: I5be3b761a1e3ef259c058e493877cd5a89d5778b --- scripts/schemavalidation/datagen-config.schema.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'scripts/schemavalidation/datagen-config.schema.json') 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", -- cgit v1.2.1