mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-23 07:23:03 -05:00
[PR #1119] [CLOSED] Fix tensor's matmul method to reject 0D tensors #1129
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/harvard-edge/cs249r_book/pull/1119
Author: @minhdang26403
Created: 1/20/2026
Status: ❌ Closed
Base:
dev← Head:fix/tensor-matmul📝 Commits (2)
cfd5449fix: fix memory calculation result8f387b9fix: matmul should not allow 0D tensors📊 Changes
2 files changed (+10 additions, -12 deletions)
View changed files
📝
tinytorch/src/01_tensor/01_tensor.py(+9 -11)📝
tinytorch/src/01_tensor/ABOUT.md(+1 -1)📄 Description
Both NumPy and PyTorch do not allow operands of the matmul operation to be 0D tensors. To make TinyTorch achieve the same functionality as PyTorch, the method matmul should raise error when it receives a 0D tensor. For 0D tensor multiplication, users should use element-wise multiplication
*.All Tensor module tests pass and there is no regression.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.