Files
TinyTorch/modules/source/03_layers/module.yaml
Vijay Janapa Reddi 17439fdc5c feat: Complete standardized testing implementation across all modules
- Added standardized testing sections to modules 07_autograd and 08_optimizers
- Updated module.yaml files to reference inline testing approach
- Reorganized kernels module structure with proper testing placement
- All 12 TinyTorch modules now have consistent testing framework
- Fixed kernels module structure to match optimizers/training pattern
2025-07-14 14:15:23 -04:00

26 lines
698 B
YAML

# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "layers"
title: "Layers"
description: "Neural network layers (Linear, activation layers)"
# Dependencies - Used by CLI for module ordering and prerequisites
dependencies:
prerequisites: ["setup", "tensor", "activations"]
enables: ["networks", "training"]
# Package Export - What gets built into tinytorch package
exports_to: "tinytorch.core.layers"
# File Structure - What files exist in this module
files:
dev_file: "layers_dev.py"
test_file: "tests/test_layers.py"
readme: "README.md"
# Components - What's implemented in this module
components:
- "Dense"
- "Linear"
- "matmul"