From ec526684e201cfe5ef3687ea684beebb1dd0949b Mon Sep 17 00:00:00 2001 From: Luka Macan Date: Thu, 12 Dec 2024 18:26:33 +0100 Subject: [PATCH] wip: neureka_v2 tests --- test/tests_neureka_v2/1x1/test_0/conf.json | 30 +++++++++++++++++++ .../3x3dense/test_0/conf.json | 30 +++++++++++++++++++ .../3x3depthwise/test_0/conf.json | 30 +++++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 test/tests_neureka_v2/1x1/test_0/conf.json create mode 100644 test/tests_neureka_v2/3x3dense/test_0/conf.json create mode 100644 test/tests_neureka_v2/3x3depthwise/test_0/conf.json diff --git a/test/tests_neureka_v2/1x1/test_0/conf.json b/test/tests_neureka_v2/1x1/test_0/conf.json new file mode 100644 index 0000000..e178b25 --- /dev/null +++ b/test/tests_neureka_v2/1x1/test_0/conf.json @@ -0,0 +1,30 @@ +{ + "in_height": 2, + "in_width": 2, + "in_channel": 2, + "in_type": "uint8", + "out_channel": 2, + "out_type": "int8", + "depthwise": false, + "kernel_shape": { + "height": 1, + "width": 1 + }, + "weight_type": "int8", + "scale_type": "int8", + "bias_type": "int32", + "stride": { + "height": 1, + "width": 1 + }, + "padding": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "has_norm_quant": true, + "has_bias": true, + "has_relu": false, + "wmem": "mram" +} diff --git a/test/tests_neureka_v2/3x3dense/test_0/conf.json b/test/tests_neureka_v2/3x3dense/test_0/conf.json new file mode 100644 index 0000000..c4d9d46 --- /dev/null +++ b/test/tests_neureka_v2/3x3dense/test_0/conf.json @@ -0,0 +1,30 @@ +{ + "in_height": 3, + "in_width": 3, + "in_channel": 2, + "in_type": "uint8", + "out_channel": 2, + "out_type": "int8", + "depthwise": false, + "kernel_shape": { + "height": 3, + "width": 3 + }, + "weight_type": "int8", + "scale_type": "int8", + "bias_type": "int32", + "stride": { + "height": 1, + "width": 1 + }, + "padding": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "has_norm_quant": true, + "has_bias": true, + "has_relu": false, + "wmem": "mram" +} diff --git a/test/tests_neureka_v2/3x3depthwise/test_0/conf.json b/test/tests_neureka_v2/3x3depthwise/test_0/conf.json new file mode 100644 index 0000000..c4d9d46 --- /dev/null +++ b/test/tests_neureka_v2/3x3depthwise/test_0/conf.json @@ -0,0 +1,30 @@ +{ + "in_height": 3, + "in_width": 3, + "in_channel": 2, + "in_type": "uint8", + "out_channel": 2, + "out_type": "int8", + "depthwise": false, + "kernel_shape": { + "height": 3, + "width": 3 + }, + "weight_type": "int8", + "scale_type": "int8", + "bias_type": "int32", + "stride": { + "height": 1, + "width": 1 + }, + "padding": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "has_norm_quant": true, + "has_bias": true, + "has_relu": false, + "wmem": "mram" +}