Skip to content

Commit 41f9c90

Browse files
authored
[res] Add test recipe for sign operation (#16405)
This creates a test TFLite recipe for the Sign operation. Signed-off-by: Seungho Henry Park <shs.park@samsung.com>
1 parent f4bbc7b commit 41f9c90

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
operand {
2+
name: "ifm"
3+
type: FLOAT32
4+
shape { dim: 1 dim: 3 dim: 3 dim: 2 }
5+
}
6+
operand {
7+
name: "ofm"
8+
type: FLOAT32
9+
shape { dim: 1 dim: 3 dim: 3 dim: 2 }
10+
}
11+
operation {
12+
type: "Sign"
13+
input: "ifm"
14+
output: "ofm"
15+
}
16+
input: "ifm"
17+
output: "ofm"

res/TensorFlowLiteRecipes/Sign_000/test.reverse

Whitespace-only changes.

0 commit comments

Comments
 (0)