-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WORKAROUND][OCL][MI100][MI200] Disable MIOpenGEMM convolutions (W/A for #1315). Disable iGemm ASM GTC XDLOPS NCHW convolutions (W/A for #1317) #1321
Conversation
atamazov
commented
Dec 2, 2021
•
edited
Loading
edited
- W/A for [OCL][MI100][MI200] GEMM convolution failures with OCL backend (Staging 95b58f72f) #1315
- Disable MIOpenGEMM convolutions for xDLOPs GPUs (MI100/MI200) && OpenCL BE
- W/A for [OCL][MI100][MI200] iGemm ASM GTC XDLOPS failures with OCL backend (Staging 95b58f72f) #1317
- Disable iGemm ASM GTC XDLOPS convolutions for NCHW configs && OCL BE (keep them enabled for NHWC)
- By-products
- [Jenkins] Add Fp32 Full tests stages for Opencl BE && MI100/MI200
- [NFC] Fix comments related to WORKAROUND_MIOPENGEMM_SINCE_ROCM41
…100/MI200) && OpenCL BE
…volutions for all backends, but only for NCHW layout.
…] Update tests for Opencl BE && MI100/MI200" This reverts commit 3363730.
This comment has been minimized.
This comment has been minimized.
… Remove W/A for SWDEV-312112 and SWDEV-313696.
This unblocking PR is ready to go, please review! |
Manually tested on MI200 node with OCL BE, all tests pass. |
@@ -792,6 +792,11 @@ ConvAsmImplicitGemmGTCDynamicFwdXdlopsNHWC::GetWorkspaceSize(const ConvolutionCo | |||
|
|||
bool ConvAsmImplicitGemmGTCDynamicFwdXdlopsNHWC::IsApplicable(const ConvolutionContext& ctx) const | |||
{ | |||
#if WORKAROUND_ISSUE_1317 | |||
if(ctx.IsLayoutDefault()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since #1324 resolve this issue, this logic can be removed?
sorry I saw #1324 (comment), seems not resolved
cc @shaojiewang
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, I'll check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are there other missing cases where we still get the same error?
Please see #1317. I am suspecting this is related to n_groups > 1
&& OCL BE.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…(gfx940) (#1312)" This reverts commit cd0d942.
…for #1315). Disable iGemm ASM GTC XDLOPS NCHW convolutions (W/A for #1317) (#1321) * W/A for #1315. Disable MIOpenGEMM convolutions for xDLOPs GPUs (MI100/MI200) && OpenCL BE * W/A for #1317. Disable iGemm ASM GTC XDLOPS convolutions for NCHW configs && OCL BE (keep them enabled for NHWC) * [Jenkins] Add Fp32 Full tests stages for Opencl BE && MI100/MI200 * [NFC] Fix comments related to WORKAROUND_MIOPENGEMM_SINCE_ROCM41
WORKAROUND_ISSUE_1317 must also disable |