chore: update tools and remaining files for module swap

This commit is contained in:
Vijay Janapa Reddi
2025-12-19 19:30:46 -05:00
parent f51f87566b
commit 42f5b34ceb
5 changed files with 10 additions and 10 deletions

View File

@@ -185,8 +185,8 @@ TinyTorch/
│ ├── 14_profiling/ # Module 14: Performance analysis
│ ├── 15_quantization/ # Module 15: Model compression (precision reduction)
│ ├── 16_compression/ # Module 16: Pruning & distillation
│ ├── 17_memoization/ # Module 17: KV-cache/memoization
│ ├── 18_acceleration/ # Module 18: Hardware optimization
│ ├── 17_acceleration/ # Module 17: Hardware optimization
│ ├── 18_memoization/ # Module 18: KV-cache/memoization
│ ├── 19_benchmarking/ # Module 19: Performance measurement
│ └── 20_capstone/ # Module 20: Complete ML systems

View File

@@ -32,8 +32,8 @@ SOURCE_MAPPINGS = {
("perf", "profiling"): "src/14_profiling/14_profiling.py",
("perf", "quantization"): "src/15_quantization/15_quantization.py",
("perf", "compression"): "src/16_compression/16_compression.py",
("perf", "memoization"): "src/17_memoization/17_memoization.py",
("perf", "acceleration"): "src/18_acceleration/18_acceleration.py",
("perf", "acceleration"): "src/17_acceleration/17_acceleration.py",
("perf", "memoization"): "src/18_memoization/18_memoization.py",
("bench",): "src/19_benchmarking/19_benchmarking.py",
("capstone",): "src/20_capstone/20_capstone.py",
}

View File

@@ -228,8 +228,8 @@ class ModuleTestCommand(BaseCommand):
14: [], # Profiling: observational, no integration changes
15: [], # Quantization: tested in module-specific tests
16: [], # Compression: tested in module-specific tests
17: [], # Memoization: tested in module-specific tests
18: [], # Acceleration: tested in module-specific tests
17: [], # Acceleration: tested in module-specific tests
18: [], # Memoization: tested in module-specific tests
19: [], # Benchmarking: tested in module-specific tests
# Capstone (20) - runs comprehensive validation

View File

@@ -26,8 +26,8 @@ MODULE_NAMES = {
"14": "Profiling",
"15": "Quantization",
"16": "Compression",
"17": "Memoization",
"18": "Acceleration",
"17": "Acceleration",
"18": "Memoization",
"19": "Benchmarking",
"20": "Capstone",
}

View File

@@ -31,8 +31,8 @@ MODULE_NAMES = {
"14": "Profiling",
"15": "Quantization",
"16": "Compression",
"17": "Memoization",
"18": "Acceleration",
"17": "Acceleration",
"18": "Memoization",
"19": "Benchmarking",
"20": "Capstone",
}