leandron commented on code in PR #10915:
URL: https://github.com/apache/tvm/pull/10915#discussion_r875749730
##########
tests/python/frontend/tflite/test_forward.py:
##########
@@ -884,23 +912,25 @@ def _test_tflite2_quantized_convolution(
data_in = tf.keras.layers.Input(shape=data.shape[1:])
conv = tf.keras.layers.Conv2D(
- filters=kernel_shape[3],
+ filters=filters,
kernel_size=(kernel_shape[0], kernel_shape[1]),
- strides=strides,
+ activation=tf.nn.relu,
padding=padding,
- data_format=data_format,
Review Comment:
Yes, I was too eager in simplifying the function and removed that. I will
add it back.
##########
tests/python/frontend/tflite/test_forward.py:
##########
@@ -909,6 +939,24 @@ def representative_data_gen():
)
+def test_forward_quantized_convolution():
Review Comment:
https://github.com/apache/tvm/issues/11356
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]