diff --git a/res/TensorFlowLiteRecipes/GreaterEqual_000/test.rule b/res/TensorFlowLiteRecipes/GreaterEqual_000/test.rule new file mode 100644 index 00000000000..6e11af8f7cc --- /dev/null +++ b/res/TensorFlowLiteRecipes/GreaterEqual_000/test.rule @@ -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] diff --git a/res/TensorFlowLiteRecipes/Net_FullyConnected_Gelu_000/test.rule b/res/TensorFlowLiteRecipes/Net_FullyConnected_Gelu_000/test.rule new file mode 100644 index 00000000000..05ecff0e7c1 --- /dev/null +++ b/res/TensorFlowLiteRecipes/Net_FullyConnected_Gelu_000/test.rule @@ -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] diff --git a/res/TensorFlowLiteRecipes/PRelu_000/test.rule b/res/TensorFlowLiteRecipes/PRelu_000/test.rule new file mode 100644 index 00000000000..39eacbd0a36 --- /dev/null +++ b/res/TensorFlowLiteRecipes/PRelu_000/test.rule @@ -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] diff --git a/res/TensorFlowLiteRecipes/ReduceAny_dynamic_000/test.rule b/res/TensorFlowLiteRecipes/ReduceAny_dynamic_000/test.rule new file mode 100644 index 00000000000..052a5727e75 --- /dev/null +++ b/res/TensorFlowLiteRecipes/ReduceAny_dynamic_000/test.rule @@ -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) '=' [] diff --git a/res/TensorFlowLiteRecipes/Split_000/test.rule b/res/TensorFlowLiteRecipes/Split_000/test.rule new file mode 100644 index 00000000000..2f62e5e387c --- /dev/null +++ b/res/TensorFlowLiteRecipes/Split_000/test.rule @@ -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]