Files
TinyTorch/modules/source/11_kernels/module.yaml
Vijay Janapa Reddi 1f58841e65 Clean up module configurations and add kernels integration tests
- Standardize module.yaml files (11-13) to match concise format of early modules
- Remove verbose sections, keep essential metadata only
- Update kernels README to match TinyTorch module style standards
- Add comprehensive integration tests for kernels module
- Test hardware-optimized operations with real TinyTorch components
- Prepare for systematic integration testing across all modules
2025-07-14 19:12:20 -04:00

39 lines
1.1 KiB
YAML

# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "11_kernels"
title: "Kernels - Hardware-Aware Optimization"
description: "Custom operations, performance optimization, and hardware-aware computing for ML systems"
# Dependencies - Used by CLI for module ordering and prerequisites
dependencies:
prerequisites: [
"00_setup", "01_tensor", "02_activations", "03_layers",
"04_networks", "05_cnn", "06_dataloader", "07_autograd",
"08_optimizers", "09_training", "10_compression"
]
enables: ["12_benchmarking", "13_mlops"]
# Package Export - What gets built into tinytorch package
exports_to: "tinytorch.core.kernels"
# File Structure - What files exist in this module
files:
dev_file: "kernels_dev.py"
readme: "README.md"
tests: "inline"
# Components - What's implemented in this module
components:
- "matmul_custom"
- "relu_custom"
- "conv2d_custom"
- "matmul_vectorized"
- "matmul_cache_optimized"
- "matmul_parallel"
- "quantized_matmul"
- "sparse_matmul"
- "pruned_conv2d"
- "KernelProfiler"
- "PerformanceBenchmark"
- "HardwareProfiler"