// Copyright (C) 2018-2025 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #pragma once #include "openvino/op/util/arithmetic_reductions_keep_dims.hpp" namespace ov { namespace op { namespace v1 { /// \brief ReduceMean operation. /// /// \ingroup ov_ops_cpp_api class OPENVINO_API ReduceMean : public util::ArithmeticReductionKeepDims { public: OPENVINO_OP("ReduceMean", "opset1", util::ArithmeticReductionKeepDims); ReduceMean() = default; /// \param arg The tensor to be summed. /// \param reduction_axes The axis positions (0-based) to be eliminated. /// \param keep_dims If set to 1 it holds axes that are used for reduction. ReduceMean(const Output& arg, const Output& reduction_axes, bool keep_dims = false); std::shared_ptr clone_with_new_inputs(const OutputVector& new_args) const override; bool evaluate(TensorVector& outputs, const TensorVector& inputs) const override; bool has_evaluate() const override; }; } // namespace v1 } // namespace op } // namespace ov