// Copyright (C) 2018-2025 Intel Corporation // SPDX-License-Identifier: Apache-2.0 // #pragma once #include #include "openvino/op/util/unary_elementwise_arithmetic.hpp" namespace ov { namespace op { namespace v3 { /// \brief Elementwise inverse hyperbolic sin operation. /// class OPENVINO_API Asinh : public util::UnaryElementwiseArithmetic { public: OPENVINO_OP("Asinh", "opset4", util::UnaryElementwiseArithmetic); /// \brief Constructs an Asinh operation. Asinh() = default; /// \brief Constructs an Asinh operation. /// /// \param arg Output that produces the input tensor.
/// `[d1, ...]` /// /// Output `[d1, ...]` /// Asinh(const Output& arg); std::shared_ptr clone_with_new_inputs(const OutputVector& new_args) const override; bool visit_attributes(AttributeVisitor&) override { return true; } bool evaluate(TensorVector& outputs, const TensorVector& inputs) const override; bool has_evaluate() const override; }; } // namespace v3 } // namespace op } // namespace ov