mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-03-09 10:12:08 -05:00
- Updated release checklist and December 2024 release notes - Updated student version tooling documentation - Modified modules 15-19 (memoization, quantization, compression, benchmarking) - Added milestone dashboard and progress tracking - Added compliance reports and module audits - Added checkpoint tests for modules 15-20 - Added activation script and book configuration
15 lines
481 B
Bash
Executable File
15 lines
481 B
Bash
Executable File
#!/bin/bash
|
|
# TinyTorch activation helper
|
|
if [ "$(uname -s)" = "Darwin" ] && [ "$(uname -m)" = "arm64" ]; then
|
|
# On Apple Silicon, ensure arm64
|
|
export TINYTORCH_ARCH="arm64"
|
|
alias python='arch -arm64 .venv/bin/python3'
|
|
alias pip='arch -arm64 .venv/bin/pip'
|
|
source .venv/bin/activate
|
|
echo "🔥 TinyTorch environment activated (arm64)"
|
|
else
|
|
source .venv/bin/activate
|
|
echo "🔥 TinyTorch environment activated"
|
|
fi
|
|
echo "💡 Try: tito system doctor"
|