39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
// Copyright (C) 2018-2025 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "openvino/op/op.hpp"
|
|
|
|
namespace ov {
|
|
namespace op {
|
|
namespace v0 {
|
|
/// \brief Dynamic Tiling operation which repeats a tensor multiple times
|
|
/// along each dimension
|
|
/// \ingroup ov_ops_cpp_api
|
|
class OPENVINO_API Tile : public Op {
|
|
public:
|
|
OPENVINO_OP("Tile", "opset1");
|
|
|
|
Tile() = default;
|
|
/// \brief Perform dynamic padding of a tensor
|
|
///
|
|
/// \param data The node producing input tensor to be padded.
|
|
/// \param repeats The node producing the per-dimension replication factor
|
|
Tile(const Output<Node>& data, const Output<Node>& repeats);
|
|
|
|
void validate_and_infer_types() override;
|
|
|
|
std::shared_ptr<Node> clone_with_new_inputs(const OutputVector& new_args) const override;
|
|
|
|
bool evaluate_lower(TensorVector& outputs) const override;
|
|
bool evaluate_upper(TensorVector& outputs) const override;
|
|
bool has_evaluate() const override;
|
|
bool evaluate(ov::TensorVector& outputs, const ov::TensorVector& inputs) const override;
|
|
bool evaluate_symbol(TensorSymbolVector& output_symbols) const override;
|
|
};
|
|
} // namespace v0
|
|
} // namespace op
|
|
} // namespace ov
|