Removing references to *StaticCompiledGEMM from TF code

This commit is in conjunction with this MIOpen PR which removes scgemm from MIOpen
https://github.com/ROCmSoftwarePlatform/MIOpen/pull/325

The MIOpen release that includes that change will be included in the next ROCm release.
This commit removes references to `*StaticCompiledGEMM` from TF code to prepare for switching to the next ROCm release (3.7)
This commit is contained in:
Deven Desai 2020-07-17 01:04:58 +00:00
parent fcc2de09eb
commit 77fb7fd1c6

View File

@ -113,9 +113,6 @@ string ToString(miopenConvFwdAlgorithm_t algorithm) {
case miopenConvolutionFwdAlgoImplicitGEMM:
s = "Implicit GEMM";
break;
case miopenConvolutionFwdAlgoStaticCompiledGEMM:
s = "Static Compiled GEMM";
break;
}
return s;
}
@ -182,9 +179,6 @@ string ToString(miopenConvAlgorithm_t algorithm) {
case miopenConvolutionAlgoImplicitGEMM:
s = "Implicit GEMM";
break;
case miopenConvolutionAlgoStaticCompiledGEMM:
s = "Static Compiled GEMM";
break;
}
return s;
}