Files
TinyTorch/modules/setup/module.yaml
Vijay Janapa Reddi c62515a920 Simplify module metadata to focus on essential system information
- Reduce module.yaml files from 100+ lines to ~25 lines focused on system needs
- Remove pedagogical details (learning objectives, difficulty, time estimates)
- Keep only essential fields: name, title, description, status, dependencies, exports, files, components
- Update status command to work with simplified metadata format
- Update metadata generation script to create simplified templates
- Focus on system metadata for CLI tools and build systems, not educational content

Before: Verbose pedagogical metadata with 20+ fields
After: Concise system metadata with 8 core fields

This aligns with the principle that module.yaml should be for systems, not pedagogy.
2025-07-11 23:02:10 -04:00

28 lines
621 B
YAML

# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "setup"
title: "Setup"
description: "Development environment setup and project configuration"
status: "complete" # complete, in_progress, not_started
version: "1.0.0"
# Dependencies
dependencies:
prerequisites: []
enables: ["tensor", "activations", "layers"]
# Package Export
exports_to: "tinytorch.core.utils"
# File Structure
files:
dev_file: "setup_dev.py"
test_file: "tests/test_setup.py"
readme: "README.md"
# Components
components:
- "hello_tinytorch"
- "environment_check"
- "project_structure"