summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/MaxPool2D_U8_000/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/MaxPool2D_U8_000/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/MaxPool2D_U8_000/test.recipe26
1 files changed, 26 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/MaxPool2D_U8_000/test.recipe b/res/TensorFlowLiteRecipes/MaxPool2D_U8_000/test.recipe
new file mode 100644
index 000000000..a736988e9
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/MaxPool2D_U8_000/test.recipe
@@ -0,0 +1,26 @@
+operand {
+ name: "ifm"
+ type: UINT8
+ shape { dim: 1 dim: 8 dim: 8 dim: 1 }
+ quant { min: 0 max: 1 scale: 0.004 zero_point: 0 }
+}
+operand {
+ name: "ofm"
+ type: UINT8
+ shape { dim: 1 dim: 7 dim: 7 dim: 1 }
+ quant { min: 0 max: 1 scale: 0.004 zero_point: 0 }
+}
+operation {
+ type: "MaxPool2D"
+ maxpool2d_options {
+ padding: VALID
+ stride_w: 1
+ stride_h: 1
+ filter_width: 2
+ filter_height: 2
+ }
+ input: "ifm"
+ output: "ofm"
+}
+input: "ifm"
+output: "ofm"