Skip to content

Commit

Permalink
[res] Add TFLiteRecipe for dynamic shape Quantize (#14129)
Browse files Browse the repository at this point in the history
This commit add TFLiteRecipe for dynamic shape Quantize.

ONE-DCO-1.0-Signed-off-by: Bokyeong Lee <[email protected]>
  • Loading branch information
kyeong8139 authored Sep 30, 2024
1 parent 8893023 commit b8fe99d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
21 changes: 21 additions & 0 deletions res/TensorFlowLiteRecipes/Inf_Quantize_000/test.recipe
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# quantize with dynamic shape
operand {
name: "ifm"
type: FLOAT32
shape { dim: 4 dim: 1 }
shape_signature { dim: 4 dim: -1 }
}
operand {
name: "ofm"
type: UINT8
shape { dim: 4 dim: 1 }
shape_signature { dim: 4 dim: -1 }
quant { min: 0 max: 255 scale: 1.0 zero_point: 0 }
}
operation {
type: "Quantize"
input: "ifm"
output: "ofm"
}
input: "ifm"
output: "ofm"
5 changes: 5 additions & 0 deletions res/TensorFlowLiteRecipes/Inf_Quantize_000/test.rule
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# To check if dynamic shape properly infered

RULE "VERIFY_FILE_FORMAT" $(verify_file_format) '=' 1

RULE "RANGE_SHAPE" $(tensor_shape ofm) '=' [4,-1]

0 comments on commit b8fe99d

Please sign in to comment.