Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions res/TensorFlowLiteRecipes/GreaterEqual_000/test.rule
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# To check if the model is resized properly

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

RULE "IFM1_SHAPE" $(tensor_shape ifm1) '=' [1,2,3]
RULE "IFM2_SHAPE" $(tensor_shape ifm2) '=' [1,2,3]
RULE "GREATER_EQUAL_SHAPE" $(tensor_shape ofm) '=' [1,2,3]
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# To check if the model is resized properly

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

RULE "IN_SHAPE" $(tensor_shape in) '=' [2,16]
RULE "OUT_2_SHAPE" $(tensor_shape out_2) '=' [2,4]
7 changes: 7 additions & 0 deletions res/TensorFlowLiteRecipes/PRelu_000/test.rule
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# To check if the model is resized properly

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

RULE "IFM1_SHAPE" $(tensor_shape ifm1) '=' [1,4,4,5]
RULE "IFM2_SHAPE" $(tensor_shape ifm2) '=' [1,1,5]
RULE "PRELU_SHAPE" $(tensor_shape ofm) '=' [1,4,4,5]
6 changes: 6 additions & 0 deletions res/TensorFlowLiteRecipes/ReduceAny_dynamic_000/test.rule
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# To check if the model is resized properly

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

RULE "IFM_SHAPE" $(tensor_shape ifm) '=' [4,5,6]
RULE "REDUCE_ANY_SHAPE" $(tensor_shape ofm) '=' []
7 changes: 7 additions & 0 deletions res/TensorFlowLiteRecipes/Split_000/test.rule
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# To check if the model is resized properly

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

RULE "IFM_SHAPE" $(tensor_shape ifm) '=' [8,1,2]
RULE "OFM1_SHAPE" $(tensor_shape ofm1) '=' [4,1,2]
RULE "OFM2_SHAPE" $(tensor_shape ofm2) '=' [4,1,2]