mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-03-10 15:11:59 -05:00
- Move testing utilities from tinytorch/utils/testing.py to tito/tools/testing.py - Update all module imports to use tito.tools.testing - Remove testing utilities from core TinyTorch package - Testing utilities are development tools, not part of the ML library - Maintains clean separation between library code and development toolchain - All tests continue to work correctly with improved architecture
9 lines
187 B
Python
Generated
9 lines
187 B
Python
Generated
"""
|
|
TinyTorch utilities module.
|
|
|
|
This module provides shared utilities and infrastructure for TinyTorch modules.
|
|
"""
|
|
|
|
# No utilities currently - testing moved to tito/tools
|
|
|
|
__all__ = [] |