icemelon9 commented on a change in pull request #6213:
URL: https://github.com/apache/incubator-tvm/pull/6213#discussion_r466838537
##########
File path: src/runtime/contrib/cublas/cublas.cc
##########
@@ -172,7 +172,11 @@ inline void CallLtIgemm(TVMArgs args, TVMRetValue* ret,
cublasLtHandle_t hdl) {
cublasLtOrder_t order_COL32 = CUBLASLT_ORDER_COL32;
cublasLtOrder_t order_COL4_4R2_8C = CUBLASLT_ORDER_COL4_4R2_8C;
cublasLtMatmulDesc_t operationDesc = nullptr;
+#if CUDART_VERSION >= 11000
+ CHECK_CUBLAS_ERROR(cublasLtMatmulDescCreate(&operationDesc,
CUBLAS_COMPUTE_32I, CUDA_R_32I));
+#elif
Review comment:
No condition in the `#elif`. This is causing compilation error.
@lanchongyizu
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]