aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorevacha01 <evan.chandler@arm.com>2024-02-07 11:21:55 +0000
committerevacha01 <evan.chandler@arm.com>2024-03-07 12:06:38 +0000
commit9c96eefbaca6c85be79529bce7ff04fd7dfe3a0d (patch)
tree55647ee0216800b621bd0b27277c6f895929ef3d /scripts
parent6e1e2bc06bff785e87577f24064bbc846300f8fd (diff)
downloadreference_model-9c96eefbaca6c85be79529bce7ff04fd7dfe3a0d.tar.gz
FULL data gen mode for FP16
Signed-off-by: evacha01 <evan.chandler@arm.com> Change-Id: I81bb322132daf25328a40342edc62d8e1db9edd6
Diffstat (limited to 'scripts')
-rw-r--r--scripts/schemavalidation/datagen-config.schema.json26
1 files changed, 6 insertions, 20 deletions
diff --git a/scripts/schemavalidation/datagen-config.schema.json b/scripts/schemavalidation/datagen-config.schema.json
index a74d79f..19e8b62 100644
--- a/scripts/schemavalidation/datagen-config.schema.json
+++ b/scripts/schemavalidation/datagen-config.schema.json
@@ -22,7 +22,7 @@
"type": "object",
"properties": {
"generator": {
- "description": "data generator name - PSEUDO_RANDOM, DOT_PRODUCT or OP_SPECIFIC",
+ "description": "data generator name - PSEUDO_RANDOM, DOT_PRODUCT, FULL_RANGE, BOUNDARY, or SPECIAL",
"type": "string"
},
"data_type": {
@@ -120,33 +120,19 @@
"acc_type"
]
},
- "op_specific_info": {
- "description": "info required for the OP_SPECIFIC generator",
+ "full_range_info": {
+ "description": "info required for the FULL_RANGE generator",
"type": "object",
"properties":
{
- "sub_generator": {
- "description": "sub generator type for this op - FULL, SPECIAL or BOUNDARY",
- "type": "string"
- },
- "offset": {
- "description": "starting offset within the test data",
+ "start_val": {
+ "description": "starting value of the test data",
"type": "integer",
"minimum": 0
- },
- "attributes": {
- "description": "attribute data from the op needed to compute the data",
- "type": "object",
- "properties": {
- "TBD": {
- "description": "Probably needed for RESCALE and MUL",
- "type": "string"
- }
- }
}
},
"additionalProperties": false,
- "required": [ "sub_generator" ]
+ "required": [ ]
},
"fixed_data_info": {
"description": "info required for FIXED_DATA generator",