TensorFloat.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Create() |
Creates a 32-bit float tensor object without allocating a buffer. |
Create(IIterable<Int64>) |
Creates a 32-bit float tensor object and allocates a buffer of size shape. |
Create()
Creates a 32-bit float tensor object without allocating a buffer.
public:
static TensorFloat ^ Create();
/// [Windows.Foundation.Metadata.Overload("Create")]
static TensorFloat Create();
[Windows.Foundation.Metadata.Overload("Create")]
public static TensorFloat Create();
function create()
Public Shared Function Create () As TensorFloat
Returns
A 32-bit float tensor object.
- Attributes
Remarks
Windows Server
To use this API on Windows Server, you must use Windows Server 2019 with Desktop Experience.
Thread safety
This API is thread-safe.
Applies to
Create(IIterable<Int64>)
Creates a 32-bit float tensor object and allocates a buffer of size shape.
public:
static TensorFloat ^ Create(IIterable<long long> ^ shape);
/// [Windows.Foundation.Metadata.Overload("Create2")]
static TensorFloat Create(IIterable<long> const& shape);
[Windows.Foundation.Metadata.Overload("Create2")]
public static TensorFloat Create(IEnumerable<long> shape);
function create(shape)
Public Shared Function Create (shape As IEnumerable(Of Long)) As TensorFloat
Parameters
- shape
-
Windows.Foundation.Collections.IIterable<long long>
IIterable<long>
The size of the buffer.
Returns
A 32-bit float tensor object with a buffer of the given size.
- Attributes
Remarks
Windows Server
To use this API on Windows Server, you must use Windows Server 2019 with Desktop Experience.
Thread safety
This API is thread-safe.