Files
cs249r_book/tinytorch/tests/06_autograd/__init__.py
Vijay Janapa Reddi 5b423f917a refactor(tinytorch): rename module directories for dataloader reordering
Move DataLoader from position 08 to 05, cascading renumbers:
- 08_dataloader → 05_dataloader
- 05_autograd → 06_autograd
- 06_optimizers → 07_optimizers
- 07_training → 08_training

Addresses module dependency reorganization to place DataLoader
earlier in the learning path (before autograd).
2025-12-18 13:07:19 -05:00

14 lines
391 B
Python

"""
Autograd-specific edge case tests.
These tests focus on the autograd module's internal behavior:
- Broadcasting in gradients (common bug source)
- Computation graph construction
- Numerical stability in backward pass
- Memory management in gradient accumulation
- Edge cases students encounter
Complements the inline tests in the autograd module with
focused edge case validation.
"""