Files
TinyTorch/bin/tito
Vijay Janapa Reddi 553d6e6d8b cleanup: remove redundant files and directories
- Delete _proc/ directory (duplicate of modules/ with processed files)
- Delete bin/tito.py (old CLI implementation, replaced by tito/ structure)
- Delete temporary log files (tito-cli.log, tinytorch-cli.log)
- Update bin/tito wrapper to use new CLI structure
- All CLI functionality preserved with new architecture
2025-07-10 22:58:22 -04:00

19 lines
383 B
Python
Executable File

#!/usr/bin/env python3
"""
TinyTorch CLI Wrapper
Backward compatibility wrapper that calls the new CLI structure.
"""
import sys
from pathlib import Path
# Add the project root to Python path
project_root = Path(__file__).parent.parent
sys.path.insert(0, str(project_root))
# Import and run the new CLI
from tito.main import main
if __name__ == "__main__":
sys.exit(main())