releaase 2.11 (#703)

This commit is contained in:
Aditya Atluri
2022-11-19 06:02:15 -08:00
committed by GitHub
parent 3c90f6aea6
commit c975e2ccbb
329 changed files with 47332 additions and 10607 deletions

View File

@@ -195,7 +195,12 @@ bool get_cudnn_mathtype(cudnnMathType_t &cudnn_math_type, library::ConvDescripti
return true;
}
case library::OpcodeClassID::kSimt:
return false;
#if (defined(CUDNN_VERSION) && CUDNN_VERSION <= 8000)
cudnn_math_type = CUDNN_DEFAULT_MATH;
#else
cudnn_math_type = CUDNN_FMA_MATH;
#endif
return true;
}
return false;