New tensor lib

This commit is contained in:
2025-11-09 17:01:44 +04:00
parent bbafbf5574
commit d3ac52b8df
27 changed files with 497 additions and 1746 deletions

5
src/run.py Normal file
View File

@@ -0,0 +1,5 @@
from tensor.tensor import *
a = Matrix([2, 3], 2)
b = Matrix([3, 2], 3)
(a @ b).print()