Method sum
static member sum: Tensor<'T> -> 'T
Sums all elements.
Declaration
static member sum: src:Tensor<'T> -> 'T
Parameters
Type | Name | Description |
---|---|---|
Tensor<'T> | src | The tensor containing the source values. |
Returns
Type | Description |
---|---|
'T | A scalar containing the result of this operation. |
Remarks
All elements are summed. An empty sum equals zero.
Examples
let a = HostTensor.ofList2D [[1.0; 2.0; 3.0; 4.0]
[5.0; 6.0; 7.0; 8.0]]
let b = Tensor.sum a // b = 36.0