summaryrefslogtreecommitdiff
path: root/res/TensorFlowTests/UNIT_CustomOp_001/test.pbtxt
diff options
context:
space:
mode:
Diffstat (limited to 'res/TensorFlowTests/UNIT_CustomOp_001/test.pbtxt')
-rw-r--r--res/TensorFlowTests/UNIT_CustomOp_001/test.pbtxt38
1 files changed, 38 insertions, 0 deletions
diff --git a/res/TensorFlowTests/UNIT_CustomOp_001/test.pbtxt b/res/TensorFlowTests/UNIT_CustomOp_001/test.pbtxt
new file mode 100644
index 000000000..ad673e0a7
--- /dev/null
+++ b/res/TensorFlowTests/UNIT_CustomOp_001/test.pbtxt
@@ -0,0 +1,38 @@
+# test case discussed in https://github.sec.samsung.net/STAR/nnfw/issues/5607
+node {
+ name: "input_00"
+ op: "Placeholder"
+ attr {
+ key: "dtype"
+ value {
+ type: DT_FLOAT
+ }
+ }
+ attr {
+ key: "shape"
+ value {
+ shape {
+ dim {
+ size: 10
+ }
+ }
+ }
+ }
+}
+node {
+ name: "FillFrom"
+ op: "FillFrom"
+ input: "input_00"
+ attr {
+ key: "idx"
+ value {
+ i: 3
+ }
+ }
+ attr {
+ key: "val"
+ value {
+ f: 1.1
+ }
+ }
+}