TensorBoolean.CreateFromIterable 方法

定义

创建一个布尔张量对象,分配大小 为形状的缓冲区,并将 所有数据 复制到其中。

public:
 static TensorBoolean ^ CreateFromIterable(IIterable<long long> ^ shape, IIterable<bool> ^ data);
 static TensorBoolean CreateFromIterable(IIterable<long> const& shape, IIterable<bool> const& data);
public static TensorBoolean CreateFromIterable(IEnumerable<long> shape, IEnumerable<bool> data);
function createFromIterable(shape, data)
Public Shared Function CreateFromIterable (shape As IEnumerable(Of Long), data As IEnumerable(Of Boolean)) As TensorBoolean

参数

shape

IIterable<Int64>

IEnumerable<Int64>

Windows.Foundation.Collections.IIterable<long long>

IIterable<long>

缓冲区的大小。

data

IIterable<Boolean>

IEnumerable<Boolean>

IIterable<bool>

要复制到缓冲区中的数据。

返回

具有包含给定数据的缓冲区的布尔张量对象。

注解

Windows Server

若要在 Windows Server 上使用此 API,必须使用带桌面体验的 Windows Server 2019。

线程安全

此 API 是线程安全的。

适用于