40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
// Copyright (C) 2018-2025 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "openvino/op/op.hpp"
|
|
#include "openvino/op/util/binary_elementwise_bitwise.hpp"
|
|
|
|
namespace ov {
|
|
namespace op {
|
|
namespace v13 {
|
|
/// \brief Elementwise bitwise OR operation.
|
|
/// \ingroup ov_ops_cpp_api
|
|
class OPENVINO_API BitwiseOr : public util::BinaryElementwiseBitwise {
|
|
public:
|
|
OPENVINO_OP("BitwiseOr", "opset13", util::BinaryElementwiseBitwise);
|
|
/// \brief Constructs a bitwise OR operation.
|
|
BitwiseOr() = default;
|
|
/// \brief Constructs a bitwise OR operation.
|
|
///
|
|
/// \param arg0 Output that produces the first input tensor.<br>
|
|
/// `[d0, ...]`
|
|
/// \param arg1 Output that produces the second input tensor.<br>
|
|
/// `[d0, ...]`
|
|
/// \param auto_broadcast Auto broadcast specification. Default is Numpy-style
|
|
/// implicit broadcasting.
|
|
///
|
|
/// Output `[d0, ...]`
|
|
///
|
|
BitwiseOr(const Output<Node>& arg0,
|
|
const Output<Node>& arg1,
|
|
const AutoBroadcastSpec& auto_broadcast = AutoBroadcastSpec(AutoBroadcastType::NUMPY));
|
|
|
|
std::shared_ptr<Node> clone_with_new_inputs(const OutputVector& new_args) const override;
|
|
};
|
|
} // namespace v13
|
|
} // namespace op
|
|
} // namespace ov
|