mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-08 03:27:49 -05:00
- 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
27 lines
724 B
YAML
27 lines
724 B
YAML
# TinyTorch Module Metadata
|
|
# Essential system information for CLI tools and build systems
|
|
|
|
name: "tensor"
|
|
title: "Tensor"
|
|
description: "Core tensor data structure and operations"
|
|
|
|
# Dependencies - Used by CLI for module ordering and prerequisites
|
|
dependencies:
|
|
prerequisites: ["setup"]
|
|
enables: ["activations", "layers", "autograd"]
|
|
|
|
# Package Export - What gets built into tinytorch package
|
|
exports_to: "tinytorch.core.tensor"
|
|
|
|
# File Structure - What files exist in this module
|
|
files:
|
|
dev_file: "tensor_dev.py"
|
|
test_file: "tests/test_tensor.py"
|
|
readme: "README.md"
|
|
|
|
# Components - What's implemented in this module
|
|
components:
|
|
- "Tensor"
|
|
- "tensor_creation"
|
|
- "tensor_operations"
|
|
- "tensor_arithmetic" |