-
Notifications
You must be signed in to change notification settings - Fork 157
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 pad (#14109)
This commit adds TFLiteRecipe for dynamic shape pad. ONE-DCO-1.0-Signed-off-by: JuYoung Lee [email protected] Co-authored-by: SaeHie Park <[email protected]>
- Loading branch information
1 parent
06a536b
commit a1e9884
Showing
2 changed files
with
38 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,33 @@ | ||
# padding with dynamic shape, others same as Pad_000 | ||
operand { | ||
name: "ifm" | ||
type: FLOAT32 | ||
shape { dim: 1 dim: 1 dim: 3 dim: 2 } | ||
shape_signature { dim: 1 dim: -1 dim: 3 dim: 2 } | ||
} | ||
operand { | ||
name: "padding" | ||
type: INT32 | ||
shape { dim: 4 dim: 2 } | ||
filler { | ||
tag: "explicit" | ||
arg: "0" arg: "0" | ||
arg: "1" arg: "1" | ||
arg: "2" arg: "2" | ||
arg: "0" arg: "0" | ||
} | ||
} | ||
operand { | ||
name: "ofm" | ||
type: FLOAT32 | ||
shape { dim: 1 dim: 1 dim: 7 dim: 2 } | ||
shape_signature { dim: 1 dim: -1 dim: 7 dim: 2 } | ||
} | ||
operation { | ||
type: "Pad" | ||
input: "ifm" | ||
input: "padding" | ||
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 "PAD_SHAPE" $(tensor_shape ofm) '=' [1,-1,7,2] |