Fix module file naming and tensor assignment issues

- Updated module.yaml files for 05_dense and 06_spatial to reference correct dev file names
- Fixed #| default_exp directives in dense_dev.py and spatial_dev.py to export to correct module names
- Fixed tensor assignment issues in 12_compression module by creating new Tensor objects instead of trying to assign to .data property
- Removed missing function imports from autograd integration test
- All individual module tests now pass (01_setup through 14_benchmarking)
- Generated correct module files: dense.py, spatial.py, attention.py
This commit is contained in:
Vijay Janapa Reddi
2025-07-18 01:56:07 -04:00
parent 87dcf5083a
commit 442e860d5f
6 changed files with 1785 additions and 17 deletions

View File

@@ -15,7 +15,7 @@ exports_to: "tinytorch.core.spatial"
# File Structure - What files exist in this module
files:
dev_file: "cnn_dev.py"
dev_file: "spatial_dev.py"
readme: "README.md"
tests: "inline"