TensorceilTensor.ceil() Returns the ceiling of the input, element-wise. Usage from tinygrad.tensor import Tensor a1 = Tensor([[1.23423, 2, 3, 4]]) a1 = a1.ceil() print(a1.numpy()) Return value [[2. 2. 3. 4.]]catcelu