コード例 #1
0
ファイル: FileOperations.cs プロジェクト: shauheen/TorchSharp
 /// <summary>
 ///   Write floats to the file from the given float tensor.
 /// </summary>
 /// <param name="tensor">A tensor containing data to be written to the file.</param>
 /// <returns>The number of floats written.</returns>
 public long WriteTensor(TorchSharp.FloatTensor tensor)
 {
     return(THFile_writeFloatRaw(this.handle, tensor.Data, tensor.NumElements));
 }
コード例 #2
0
ファイル: FileOperations.cs プロジェクト: shauheen/TorchSharp
 /// <summary>
 ///   Read floats from the file into the given float tensor.
 /// </summary>
 /// <param name="tensor">A tensor to place the data in after reading it from the file.</param>
 /// <returns>The number of floats read.</returns>
 public long ReadTensor(TorchSharp.FloatTensor tensor)
 {
     return(THFile_readFloatRaw(this.handle, tensor.Data, tensor.NumElements));
 }