From b57619d479fba776a6e96d60b257dc5ad6693b48 Mon Sep 17 00:00:00 2001 From: gui martins Date: Thu, 18 Dec 2025 23:31:53 -0300 Subject: [PATCH] Fix typo in reduce operation description Corrected a typo in the explanation of reduce operations. --- 20241203_matmul.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/20241203_matmul.md b/20241203_matmul.md index d7c90da..562c67e 100644 --- a/20241203_matmul.md +++ b/20241203_matmul.md @@ -22,7 +22,7 @@ An elementwise op describes operation with no changes to the number of element, Tensor.empty(4, 4) * Tensor.empty(4, 4) # ---> output shape is (4, 4) ``` -A reduce op is something that reduces the number of elment, usually along an axis, for example, sum +A reduce op is something that reduces the number of element, usually along an axis, for example, sum ```python Tensor.empty(4, 4).sum(0) # --> output shape is (1, 4) or (4,) depending on whether the dim is kept