mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-04-30 01:29:07 -05:00
fix(tests): correct MODULE_NUMBER and MODULE_NAME in all run_all_tests.py
Fixed copy-paste errors where MODULE metadata was incorrect: - 01_tensor: 02 → 01 - 02_activations: 03 → 02 - 03_layers: 04 → 03 - 04_losses: Dense/Networks → Losses - 05_dataloader: 09/Autograd → 05/DataLoader - 06_autograd: XX → 06/Autograd - 07_optimizers: 06/Spatial/CNN → 07/Optimizers - 08_training: XX → 08/Training - 09_convolutions: XX → 09/Convolutions - 10_tokenization: XX → 10/Tokenization - 11_embeddings: XX → 11/Embeddings - 12_attention: XX → 12/Attention - 13_transformers: XX → 13/Transformers - 14_profiling: KV Caching → Profiling - 15_quantization: Module 16 → Module 15 - 18_memoization: XX → 18/Memoization
This commit is contained in:
@@ -25,7 +25,7 @@ def run_module_tests() -> Dict:
|
||||
|
||||
# Update module number and name
|
||||
MODULE_NUMBER = "14"
|
||||
MODULE_NAME = "KV Caching"
|
||||
MODULE_NAME = "Profiling"
|
||||
|
||||
# Header
|
||||
console.print(Panel(f"[bold blue]Module {MODULE_NUMBER}: {MODULE_NAME} - Test Suite[/bold blue]",
|
||||
|
||||
Reference in New Issue
Block a user