-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[res] Add TFLiteRecipe for dynamic shape NEG (#14158)
This commit adds TFLiteRecipe for dynamic shape NEG ONE-DCO-1.0-Signed-off-by: HanJin Choi [email protected]
- Loading branch information
1 parent
a661f4b
commit 75df9a0
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
operand { | ||
name: "ifm" | ||
type: FLOAT32 | ||
shape { dim: 1 dim: 3 dim: 3 dim: 2 } | ||
shape_signature { dim: -1 dim: 3 dim: 3 dim :2 } | ||
} | ||
operand { | ||
name: "ofm" | ||
type: FLOAT32 | ||
shape { dim: 1 dim: 3 dim: 3 dim: 2 } | ||
shape_signature { dim: -1 dim: 3 dim: 3 dim: 2 } | ||
} | ||
operation { | ||
type: "Neg" | ||
input: "ifm" | ||
output: "ofm" | ||
} | ||
input: "ifm" | ||
output: "ofm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# To check if dynamic dimension properly inferred | ||
|
||
RULE "VERIFY_FILE_FORMAT" $(verify_file_format) '=' 1 | ||
|
||
RULE "NEG_SHAPE" $(tensor_shape ofm) '=' [-1,3,3,2] |