mirror of
https://github.com/MLSysBook/TinyTorch.git
synced 2026-05-02 02:29:20 -05:00
- Remove version field from all module.yaml files - Update template generator to exclude version field - Further simplify metadata to focus on system information only - Status remains dynamically determined by test results
26 lines
539 B
YAML
26 lines
539 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
|
|
dependencies:
|
|
prerequisites: ["setup"]
|
|
enables: ["activations", "layers", "autograd"]
|
|
|
|
# Package Export
|
|
exports_to: "tinytorch.core.tensor"
|
|
|
|
# File Structure
|
|
files:
|
|
dev_file: "tensor_dev.py"
|
|
test_file: "tests/test_tensor.py"
|
|
readme: "README.md"
|
|
|
|
# Components
|
|
components:
|
|
- "Tensor"
|
|
- "tensor_operations"
|
|
- "shape_manipulation" |