warp.tile\_arange ================= .. function:: warp._src.lang.tile_arange(*args: Scalar, dtype: Scalar, storage: str) -> Tile[Scalar,tuple[int]] .. hlist:: :columns: 8 * Kernel Generate a tile of linearly spaced elements. - ``(stop,)``: Generates values from ``0`` to ``stop - 1`` - ``(start, stop)``: Generates values from ``start`` to ``stop - 1`` - ``(start, stop, step)``: Generates values from ``start`` to ``stop - 1`` with a step size :param args: Variable-length positional arguments, interpreted as: :param dtype: Data type of output tile's elements (optional, default: ``float``) :param storage: The storage location for the tile: ``"register"`` for registers (default) or ``"shared"`` for shared memory. :returns: A tile with ``shape=(n)`` with linearly spaced elements of specified data type.