kevinthesun commented on a change in pull request #7009:
URL: https://github.com/apache/tvm/pull/7009#discussion_r533703042
##########
File path: python/tvm/relay/frontend/tflite.py
##########
@@ -3210,7 +3210,7 @@ def get_pad_value(data, kernel, stride):
"""
out = int(math.ceil(float(data) / float(stride)))
- pad = max(0, (out - 1) * stride + kernel - data)
+ pad = max(0, (out - 1) * int(stride) + int(kernel) - int(data))
Review comment:
Do we want to somehow test the compilation for skylake/cascadelake
target?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]