Files
TinyTorch/modules/source/00_setup/module.yaml
Vijay Janapa Reddi 8c5dd7c600 Rename integration tests to comprehensive tests in _dev files
- Updated all _dev.py files to use 'comprehensive test' instead of 'integration test'
- Changed function names: test_*_integration() → test_*_comprehensive()
- Updated markdown headers, print statements, success/error messages
- Clarifies that these are comprehensive tests of single modules, not cross-module integration
- Real cross-module integration tests remain in tests/ directory
- Updated modules: 00_setup, 01_tensor, 02_activations, 03_layers, 04_networks, 05_cnn, 06_dataloader, 07_autograd
2025-07-14 00:32:16 -04:00

27 lines
726 B
YAML

# TinyTorch Module Metadata
# Essential system information for CLI tools and build systems
name: "setup"
title: "Setup & Environment"
description: "Development environment setup and basic TinyTorch functionality"
# Dependencies - Used by CLI for module ordering and prerequisites
dependencies:
prerequisites: []
enables: ["tensor", "activations", "layers"]
# Package Export - What gets built into tinytorch package
exports_to: "tinytorch.core.setup"
# File Structure - What files exist in this module
files:
dev_file: "setup_dev.py"
readme: "README.md"
tests: "inline"
# Components - What's implemented in this module
components:
- "personal_info"
- "system_info"
- "setup_health"
- "DeveloperProfile"