mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-08 18:01:20 -05:00
03-Layers Integration Tests Failed, #481
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?
Originally created by @wz1114841863 on GitHub (Jan 14, 2026).
Originally assigned to: @profvjreddi on GitHub.
I re-downloaded the latest version of TinyTorch. To maintain consistency with my previous progress, I directly used the commands:

tito module start 01,tito module complete 01,tito module start 02,tito module complete 02,tito module start 013,tito module complete 03. However, it failed during testing—this is the same issue I encountered yesterday.@profvjreddi commented on GitHub (Jan 14, 2026):
Thanks for reporting this @wz1114841863! You've found a real bug in the workflow.
Root Cause: The integration tests were running BEFORE the module was exported. Since integration tests import from
tinytorch.core.layers(which only exists after export), they always failed on a fresh install.The Fix: I've reordered the workflow in commit 1f7a2bb:
Now:
tinytorch/core/layers.py)To get the fix: Re-download the latest version:
I will do a new bug fix release once all the tests pass.
Then try
tito module complete 03again. Let me know if you hit any other issues!@profvjreddi commented on GitHub (Jan 23, 2026):
v0.1.4 is now released with this fix! See #1112 for update instructions.