Method Tile
Tile<T>(T, ReadOnlySpan<int>)
Calculates an output tensor by repeating the input layer a given number of times along each axis.
Declaration
public T Tile<T>(T X, ReadOnlySpan<int> repeats) where T : Tensor
Parameters
Type | Name | Description |
---|---|---|
T | X | The input tensor. |
ReadOnlySpan<int> | repeats | The number of times to tile the input tensor along each axis. |
Returns
Type | Description |
---|---|
T | The computed output tensor. |
Type Parameters
Name | Description |
---|---|
T | The tensor type of the input and output tensors. |