summaryrefslogtreecommitdiff
path: root/compiler/tflchef/tests/shape_signature/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/tflchef/tests/shape_signature/test.recipe')
-rw-r--r--compiler/tflchef/tests/shape_signature/test.recipe19
1 files changed, 19 insertions, 0 deletions
diff --git a/compiler/tflchef/tests/shape_signature/test.recipe b/compiler/tflchef/tests/shape_signature/test.recipe
new file mode 100644
index 000000000..fa4293e35
--- /dev/null
+++ b/compiler/tflchef/tests/shape_signature/test.recipe
@@ -0,0 +1,19 @@
+operand {
+ name: "ifm"
+ type: FLOAT32
+ shape { dim: 1 dim: 3 dim: 3 dim: 2 }
+ shape_signature { dim: -1 dim: 3 dim: 3 dim: 2 }
+}
+operand {
+ name: "ofm"
+ type: FLOAT32
+ shape { dim: 1 dim: 3 dim: 3 dim: 2 }
+ shape_signature { dim: -1 dim: 3 dim: 3 dim: 2 }
+}
+operation {
+ type: "ReLU"
+ input: "ifm"
+ output: "ofm"
+}
+input: "ifm"
+output: "ofm"