Skip to content

Commit

Permalink
[res] test.rule for Decomposed GRU recipe
Browse files Browse the repository at this point in the history
- Add rule.test for dredd test of fuse_gru pass

ONE-DCO-1.0-Signed-off-by: Chunseok Lee <chunseok.lee@samsung.com>
  • Loading branch information
chunseoklee committed Oct 25, 2024
1 parent 153edec commit d0719c3
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions res/TensorFlowLiteRecipes/Net_Decomposed_GRU_000/test.rule
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To check whether tfl model is converted to circle GRU op

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

RULE "GRU_EXIST" $(op_count GRU) '=' 1
RULE "NO_WHILE" $(op_count WHILE) '=' 0
RULE "NO_SPLIT" $(op_count SPLIT) '=' 0
RULE "NO_LOGISTIC" $(op_count LOGISTIC) '=' 0
RULE "NO_TANH" $(op_count TANH) '=' 0
RULE "NO_GATHER" $(op_count GATHER) '=' 0
RULE "NO_LESS" $(op_count LESS) '=' 0

0 comments on commit d0719c3

Please sign in to comment.