From f9f5f4e7ca0b58de2d29bc783b65ae49283e4cab Mon Sep 17 00:00:00 2001 From: reed Date: Sun, 27 Aug 2023 12:49:26 +0800 Subject: [PATCH] fix typos (#1059) --- include/cute/algorithm/gemm.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/cute/algorithm/gemm.hpp b/include/cute/algorithm/gemm.hpp index 329a1fe7..44a0f7d4 100644 --- a/include/cute/algorithm/gemm.hpp +++ b/include/cute/algorithm/gemm.hpp @@ -40,7 +40,7 @@ #include /** The gemm algorithm takes four (or three) tensors and computes - * D += A * B + C + * D = A * B + C * It dispatches based on the number of modes each tensor has: * * 1. `(V) x (V) => (V)`.