Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 20241203_matmul.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down