masahi commented on a change in pull request #9873:
URL: https://github.com/apache/tvm/pull/9873#discussion_r787169459
##########
File path: python/tvm/relay/op/strategy/cuda.py
##########
@@ -641,7 +642,7 @@ def conv3d_strategy_cuda(attrs, inputs, out_type, target):
(N % 16 == 0 and CI % 16 == 0 and CO % 16 == 0)
or (N % 8 == 0 and CI % 16 == 0 and CO % 32 == 0)
or (N % 32 == 0 and CI % 16 == 0 and CO % 8 == 0)
- ):
+ ) and out_type == "float16":
Review comment:
How about making this change to conv2d as well?. Perhaps better to send
a separate PR for disabling fp32 tensorcore use since that would be a breaking
change and potentially controversial.
--
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]