* Moved ngraph::Node to ov namespace * Fixed code style * Fixed VPU * Fixed GNA * Fixed tests * Added aliases for backward compatibility * Fix clDNN * Try to fix build * Fixed comment * Renamed RTTI macros * Add new headers * Fixed ngraph build * Fixed unit tests * Try to fix Serialize
18 lines
410 B
C++
18 lines
410 B
C++
// Copyright (C) 2018-2021 Intel Corporation
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
#include "openvino/pass/validate.hpp"
|
|
|
|
#include "itt.hpp"
|
|
#include "ngraph/graph_util.hpp"
|
|
|
|
using namespace ngraph;
|
|
|
|
OPENVINO_RTTI_DEFINITION(ov::pass::Validate, "ov::pass::Validate", 0);
|
|
|
|
bool ov::pass::Validate::run_on_function(std::shared_ptr<Function> f) {
|
|
f->validate_nodes_and_infer_types();
|
|
return false;
|
|
}
|