From 6a6b4028bd3a3f95721587dced4a97093eec4ab2 Mon Sep 17 00:00:00 2001 From: Peter Han Date: Tue, 23 Mar 2021 23:20:40 +0800 Subject: [PATCH] Revert wrong fix of params.update in GemmUniversalBase Signed-off-by: Peter Han --- include/cutlass/gemm/device/gemm_universal_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cutlass/gemm/device/gemm_universal_base.h b/include/cutlass/gemm/device/gemm_universal_base.h index f15b3589..74c519a4 100644 --- a/include/cutlass/gemm/device/gemm_universal_base.h +++ b/include/cutlass/gemm/device/gemm_universal_base.h @@ -347,7 +347,7 @@ public: return Status::kErrorWorkspaceNull; } - params_.update(args, workspace, stream); + params_.update(args, workspace); return Status::kSuccess; }