Getting started
Run it first, then trace the implementation all the way to the kernel.
Quick installation
pip install tensorplay --upgradeFirst 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)