16 lines
319 B
C++
16 lines
319 B
C++
// Copyright (C) 2018-2025 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "openvino/op/ops.hpp"
|
|
|
|
namespace ov {
|
|
namespace opset3 {
|
|
#define _OPENVINO_OP_REG(a, b) using b::a;
|
|
#include "openvino/opsets/opset3_tbl.hpp"
|
|
#undef _OPENVINO_OP_REG
|
|
} // namespace opset3
|
|
} // namespace ov
|