From 7125e9b2ef21580734f6ec654f6c47da6d870ebe Mon Sep 17 00:00:00 2001 From: James Ward Date: Wed, 14 Dec 2022 17:32:32 +0000 Subject: Create MI tests for Activation: SIGMOID, TANH Signed-off-by: James Ward Change-Id: I9e8fb2ab4b4227ffb68a2a216265f5d9425b0178 --- .../sigmoid/sigmoid_1x3x1x65533_f32/test.json | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 operators/activation/sigmoid/sigmoid_1x3x1x65533_f32/test.json (limited to 'operators/activation/sigmoid/sigmoid_1x3x1x65533_f32/test.json') diff --git a/operators/activation/sigmoid/sigmoid_1x3x1x65533_f32/test.json b/operators/activation/sigmoid/sigmoid_1x3x1x65533_f32/test.json new file mode 100644 index 000000000..42953376f --- /dev/null +++ b/operators/activation/sigmoid/sigmoid_1x3x1x65533_f32/test.json @@ -0,0 +1,53 @@ +{ + version: { + _major: 0, + _minor: 51, + _patch: 0, + _draft: true + }, + blocks: [ + { + name: "main", + operators: [ + { + op: "SIGMOID", + attribute_type: "NONE", + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ], + tensors: [ + { + name: "input-0", + shape: [ + 1, + 3, + 1, + 65533 + ], + type: "FP32" + }, + { + name: "result-0", + shape: [ + 1, + 3, + 1, + 65533 + ], + type: "FP32" + } + ], + inputs: [ + "input-0" + ], + outputs: [ + "result-0" + ] + } + ] +} -- cgit v1.2.1