TensorPlay AI

Getting started

Run it first, then trace the implementation all the way to the kernel.

Quick installation

pip install tensorplay --upgrade

First computation

Create tensors, run a basic operation, and continue from the public API into the implementation.

import tensorplay as tp

x = tp.tensor([1, 2, 3])
y = tp.tensor([4, 5, 6])
z = x + y
print(z)

Next steps

Ask DeepWiki