TensorDouble.CreateFromArray(IIterable<Int64>, Double[]) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建 64 位浮点张量对象,分配大小 形状的缓冲区,并将 所有数据 复制到其中。
public:
static TensorDouble ^ CreateFromArray(IIterable<long long> ^ shape, Platform::Array <double> ^ data);
static TensorDouble CreateFromArray(IIterable<long> const& shape, winrt::array_view <double> const& data);
public static TensorDouble CreateFromArray(IEnumerable<long> shape, double[] data);
function createFromArray(shape, data)
Public Shared Function CreateFromArray (shape As IEnumerable(Of Long), data As Double()) As TensorDouble
参数
- shape
-
Windows.Foundation.Collections.IIterable<long long>
IIterable<long>
缓冲区的大小。
- data
-
Double[]
double[]
要复制到缓冲区中的数据。
返回
具有包含给定数据的缓冲区的 64 位浮点张量对象。
注解
Windows Server
若要在 Windows Server 上使用此 API,必须使用具有桌面体验的 Windows Server 2019。
线程安全
此 API 是线程安全的。