Class ov::op::v1::ReduceSum#
-
class ReduceSum : public ov::op::util::ArithmeticReductionKeepDims#
Tensor sum operation.
Element-wise sums the input tensor, eliminating the specified reduction axes. For example:
Parameters
Description
reduction_axes
The axes to eliminate through summation.
keep_dims
If set to 1 it holds axes that are used for reduction.
Inputs
Type
Description
arg
An input tensor of any shape and numeric element type.
Type
Description
The tensor
, where is the input tensor with thereduction_axes
eliminated by summation.Public Functions
-
ReduceSum() = default#
Constructs a summation operation.
-
ReduceSum(const Output<Node> &arg, const Output<Node> &reduction_axes, bool keep_dims = false)#
Constructs a summation operation.
- Parameters:
arg – The tensor to be summed.
reduction_axes – The axis positions (0-based) to be eliminated.
keep_dims – If set to 1 it holds axes that are used for reduction.
-
virtual bool has_evaluate() const override#
Allows to get information about availability of evaluate method for the current operation.
-
ReduceSum() = default#