Skip to content

Commit

Permalink
WINOGRAD_MPASS_ F(3,5) and F(3,6) enabled by default (#2039)
Browse files Browse the repository at this point in the history
  • Loading branch information
shurale-nkn authored and Daniel Lowell committed Aug 31, 2019
1 parent f1fb5ca commit a5c6e1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/solver/conv_multipass_wino3x3WrW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -353,10 +353,10 @@ bool ConvWinograd3x3MultipassWrW<WinoDataW, WinoFilterW>::IsApplicable(
if(miopen::IsDisabled(MIOPEN_DEBUG_AMD_WINOGRAD_MPASS_F3X4{}) && WinoDataW == 3 &&
WinoFilterW == 4)
return false;
if(!miopen::IsEnabled(MIOPEN_DEBUG_AMD_WINOGRAD_MPASS_F3X5{}) && WinoDataW == 3 &&
if(miopen::IsDisabled(MIOPEN_DEBUG_AMD_WINOGRAD_MPASS_F3X5{}) && WinoDataW == 3 &&
WinoFilterW == 5)
return false;
if(!miopen::IsEnabled(MIOPEN_DEBUG_AMD_WINOGRAD_MPASS_F3X6{}) && WinoDataW == 3 &&
if(miopen::IsDisabled(MIOPEN_DEBUG_AMD_WINOGRAD_MPASS_F3X6{}) && WinoDataW == 3 &&
WinoFilterW == 6)
return false;
if(!params.use_asm_kernels)
Expand Down

0 comments on commit a5c6e1a

Please sign in to comment.