Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the CUBLAS_VERSION checking of cublasMMWrapper
- Loading branch information
Fix the CUBLAS_VERSION checking of cublasMMWrapper
a6ef7af
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.
You should also change the line-987
#if (CUBLAS_VERSION) <= 11402
to#if (CUBLAS_VERSION) <= 11601
since the compiling error occurs at line-1019per_column_scaling ? CUBLASLT_POINTER_MODE_ALPHA_DEVICE_VECTOR_BETA_HOST : CUBLASLT_POINTER_MODE_DEVICE;
. Thanksa6ef7af
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.
Thank you. Fixed.