summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/DepthwiseConv2D_000/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/DepthwiseConv2D_000/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/DepthwiseConv2D_000/test.recipe41
1 files changed, 41 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/DepthwiseConv2D_000/test.recipe b/res/TensorFlowLiteRecipes/DepthwiseConv2D_000/test.recipe
new file mode 100644
index 000000000..17a3b06c7
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/DepthwiseConv2D_000/test.recipe
@@ -0,0 +1,41 @@
+operand {
+ name: "ifm"
+ type: FLOAT32
+ shape { dim: 1 dim: 64 dim: 64 dim: 8 }
+}
+operand {
+ name: "ker"
+ type: FLOAT32
+ shape { dim: 1 dim: 3 dim: 3 dim: 8 }
+}
+operand {
+ name: "bias"
+ type: FLOAT32
+ shape { dim: 8 }
+ filler {
+ tag: "constant"
+ arg: "1.1"
+ }
+}
+operand {
+ name: "ofm"
+ type: FLOAT32
+ shape { dim: 1 dim: 64 dim: 64 dim: 8 }
+}
+operation {
+ type: "DepthwiseConv2D"
+ depthwiseconv2d_options {
+ padding: SAME
+ stride_w: 1
+ stride_h: 1
+ depth_multiplier: 1
+ activation : RELU6
+ }
+ input: "ifm"
+ input: "ker"
+ input: "bias"
+ output: "ofm"
+}
+input: "ifm"
+input: "ker"
+output: "ofm"