TensorpowTensor.pow() Return the power of the input tensor element-wise. Usage from tinygrad.tensor import Tensor a1 = Tensor([1, 2, 3]) a2 = Tensor([1, 2, 3]) a1 = a1.pow(a2) print(a1.numpy()) Return value [ 1. 4. 27.000002]permutequick_gelu