Skip to content

Commit

Permalink
[mlir][sparse][gpu] fix spgemm runtime compile error
Browse files Browse the repository at this point in the history
Differential Revision: https://reviews.llvm.org/D157349
  • Loading branch information
K-Wu committed Aug 8, 2023
1 parent 12a22ec commit 0664db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlir/lib/ExecutionEngine/CudaRuntimeWrappers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ extern "C" MLIR_CUDA_WRAPPERS_EXPORT intptr_t mgpuSpGEMMWorkEstimation(
cusparseSpGEMMDescr_t spgemmDesc = reinterpret_cast<cusparseSpGEMMDescr_t>(s);
cusparseOperation_t modeA = static_cast<cusparseOperation_t>(ma);
cusparseOperation_t modeB = static_cast<cusparseOperation_t>(mb);
cusparseSpGEMMAlg_t algType = static_cast<cusparseSpGEMMAlg_t>(alg);
cusparseSpGEMMAlg_t algorithm = static_cast<cusparseSpGEMMAlg_t>(alg);
cusparseSpMatDescr_t matA = reinterpret_cast<cusparseSpMatDescr_t>(a);
cusparseSpMatDescr_t matB = reinterpret_cast<cusparseSpMatDescr_t>(b);
cusparseSpMatDescr_t matC = reinterpret_cast<cusparseSpMatDescr_t>(c);
Expand Down

0 comments on commit 0664db5

Please sign in to comment.