Initial project scaffold

This commit is contained in:
wjh
2026-04-10 13:15:06 +00:00
commit a4a6b1f1c8
94 changed files with 3964 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from __future__ import annotations
import torch
def torch_vector_add(x: torch.Tensor, y: torch.Tensor) -> torch.Tensor:
"""Reference vector add with explicit shape checks."""
if x.shape != y.shape:
raise ValueError(f"shape mismatch: {x.shape} vs {y.shape}")
return x + y