mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-07-16 23:24:55 -05:00
[PR #1120] [MERGED] fix: matmul should not allow 0D tensors #16930
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/1120
Author: @minhdang26403
Created: 1/20/2026
Status: ✅ Merged
Merged: 1/20/2026
Merged by: @profvjreddi
Base:
dev← Head:fix/tensor-matmul📝 Commits (1)
f314db2fix: matmul should not allow 0D tensors📊 Changes
1 file changed (+9 additions, -11 deletions)
View changed files
📝
tinytorch/src/01_tensor/01_tensor.py(+9 -11)📄 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.