Interface IConvertibleToBurstTensorData
An interface that provides methods for converting custom tensor data to BurstTensorData
.
Namespace: Unity.Sentis
Assembly: Unity.Sentis.dll
Syntax
public interface IConvertibleToBurstTensorData
Methods
ConvertToBurstTensorData(int)
Implement this method to convert to BurstTensorData
.
Declaration
BurstTensorData ConvertToBurstTensorData(int count)
Parameters
Type | Name | Description |
---|---|---|
int | count | The number of elements. |
Returns
Type | Description |
---|---|
BurstTensorData | Converted |