From b08fb3e856b7757403ff9aafc9487f9c0ad61fe7 Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Mon, 16 Jan 2023 15:17:52 +0000 Subject: Regen tests after control flow operator support Includes removing 3 tests that are not needed anymore. Signed-off-by: Jeremy Johnson Change-Id: I2c62d95a7b053e9016000d90125e00862f94200e --- .../test_concat_64_i32_axis_m1.json | 97 ++++++++++++---------- 1 file changed, 51 insertions(+), 46 deletions(-) (limited to 'frameworks/tflite/operators/concatenation_concat_64_i32_axis_m1/test_concat_64_i32_axis_m1.json') diff --git a/frameworks/tflite/operators/concatenation_concat_64_i32_axis_m1/test_concat_64_i32_axis_m1.json b/frameworks/tflite/operators/concatenation_concat_64_i32_axis_m1/test_concat_64_i32_axis_m1.json index a3593a8d8..be000cc94 100644 --- a/frameworks/tflite/operators/concatenation_concat_64_i32_axis_m1/test_concat_64_i32_axis_m1.json +++ b/frameworks/tflite/operators/concatenation_concat_64_i32_axis_m1/test_concat_64_i32_axis_m1.json @@ -5,16 +5,60 @@ _patch: 0, _draft: true }, - blocks: [ + regions: [ { name: "main", - operators: [ + blocks: [ { - op: "CONCAT", - attribute_type: "AxisAttribute", - attribute: { - axis: 0 - }, + name: "main", + operators: [ + { + op: "CONCAT", + attribute_type: "AxisAttribute", + attribute: { + axis: 0 + }, + inputs: [ + "TosaInput_0", + "TosaInput_1" + ], + outputs: [ + "TosaOutput_0" + ] + } + ], + tensors: [ + { + name: "TosaInput_0", + shape: [ + 64 + ], + type: "INT32", + data: [ + + ] + }, + { + name: "TosaInput_1", + shape: [ + 64 + ], + type: "INT32", + data: [ + + ] + }, + { + name: "TosaOutput_0", + shape: [ + 128 + ], + type: "INT32", + data: [ + + ] + } + ], inputs: [ "TosaInput_0", "TosaInput_1" @@ -23,45 +67,6 @@ "TosaOutput_0" ] } - ], - tensors: [ - { - name: "TosaInput_0", - shape: [ - 64 - ], - type: "INT32", - data: [ - - ] - }, - { - name: "TosaInput_1", - shape: [ - 64 - ], - type: "INT32", - data: [ - - ] - }, - { - name: "TosaOutput_0", - shape: [ - 128 - ], - type: "INT32", - data: [ - - ] - } - ], - inputs: [ - "TosaInput_0", - "TosaInput_1" - ], - outputs: [ - "TosaOutput_0" ] } ] -- cgit v1.2.1