From 0435979f594878b2b735103143c7c0569471ecc1 Mon Sep 17 00:00:00 2001 From: Adnan Akhundov Date: Tue, 4 Apr 2023 02:30:51 +0200 Subject: [PATCH] Remove const from 3.x GemmUniversalAdapter::operator() (#905) --- include/cutlass/gemm/device/gemm_universal_adapter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cutlass/gemm/device/gemm_universal_adapter.h b/include/cutlass/gemm/device/gemm_universal_adapter.h index 922fcc50..64adac33 100644 --- a/include/cutlass/gemm/device/gemm_universal_adapter.h +++ b/include/cutlass/gemm/device/gemm_universal_adapter.h @@ -385,7 +385,7 @@ public: /// Overload that allows a user to re-launch the same kernel without updating internal params struct. Status - operator()(cudaStream_t stream = nullptr) const { + operator()(cudaStream_t stream = nullptr) { return run(params_, stream); } };