TensorBoolean.Create Method
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.
Create() |
Creates a boolean tensor object without allocating a buffer. |
Create(IIterable<Int64>) |
Creates a boolean tensor object and allocates a buffer of size shape. |
Creates a boolean tensor object without allocating a buffer.
public:
static TensorBoolean ^ Create();
/// [Windows.Foundation.Metadata.Overload("Create")]
static TensorBoolean Create();
[Windows.Foundation.Metadata.Overload("Create")]
public static TensorBoolean Create();
function create()
Public Shared Function Create () As TensorBoolean
Returns
A boolean 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
WinRT Build 26100 and other versions
Product | Versions |
---|---|
WinRT | Build 17763, Build 18362, Build 19041, Build 20348, Build 22000, Build 22621, Build 26100 |
Creates a boolean tensor object and allocates a buffer of size shape.
public:
static TensorBoolean ^ Create(IIterable<long long> ^ shape);
/// [Windows.Foundation.Metadata.Overload("Create2")]
static TensorBoolean Create(IIterable<long> const& shape);
[Windows.Foundation.Metadata.Overload("Create2")]
public static TensorBoolean Create(IEnumerable<long> shape);
function create(shape)
Public Shared Function Create (shape As IEnumerable(Of Long)) As TensorBoolean
Parameters
- shape
-
Windows.Foundation.Collections.IIterable<long long>
IIterable<long>
The size of the buffer.
Returns
A boolean 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.
Applies to
WinRT Build 26100 and other versions
Product | Versions |
---|---|
WinRT | Build 17763, Build 18362, Build 19041, Build 20348, Build 22000, Build 22621, Build 26100 |