summaryrefslogtreecommitdiff
path: root/res/TensorFlowLiteRecipes/Sqrt_000/test.recipe
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowLiteRecipes/Sqrt_000/test.recipe')
-rw-r--r--res/TensorFlowLiteRecipes/Sqrt_000/test.recipe18
1 files changed, 18 insertions, 0 deletions
diff --git a/res/TensorFlowLiteRecipes/Sqrt_000/test.recipe b/res/TensorFlowLiteRecipes/Sqrt_000/test.recipe
new file mode 100644
index 000000000..1754f9a58
--- /dev/null
+++ b/res/TensorFlowLiteRecipes/Sqrt_000/test.recipe
@@ -0,0 +1,18 @@
+operand {
+ name: "ifm"
+ type: FLOAT32
+ shape { dim: 1 dim: 3 dim: 3 dim: 2 }
+ filler { tag: "constant" arg: "3.5" }
+}
+operand {
+ name: "ofm"
+ type: FLOAT32
+ shape { dim: 1 dim: 3 dim: 3 dim: 2 }
+}
+operation {
+ type: "Sqrt"
+ input: "ifm"
+ output: "ofm"
+}
+input: "ifm"
+output: "ofm"