Files
TinyTorch/modules/tensor/module.yaml
Vijay Janapa Reddi 0307662fbc Remove version field from module metadata
- 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
2025-07-11 23:23:10 -04:00

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"