mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-03-11 17:49:25 -05:00
chore: update tools and remaining files for module swap
This commit is contained in:
@@ -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
|
||||
│
|
||||
|
||||
@@ -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",
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -26,8 +26,8 @@ MODULE_NAMES = {
|
||||
"14": "Profiling",
|
||||
"15": "Quantization",
|
||||
"16": "Compression",
|
||||
"17": "Memoization",
|
||||
"18": "Acceleration",
|
||||
"17": "Acceleration",
|
||||
"18": "Memoization",
|
||||
"19": "Benchmarking",
|
||||
"20": "Capstone",
|
||||
}
|
||||
|
||||
@@ -31,8 +31,8 @@ MODULE_NAMES = {
|
||||
"14": "Profiling",
|
||||
"15": "Quantization",
|
||||
"16": "Compression",
|
||||
"17": "Memoization",
|
||||
"18": "Acceleration",
|
||||
"17": "Acceleration",
|
||||
"18": "Memoization",
|
||||
"19": "Benchmarking",
|
||||
"20": "Capstone",
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user