Files
openvino/ngraph/core/src/pass/validate.cpp
Ilya Churaev 9eca6ba9d5 Move pass pattern to ov (#7255)
* 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
2021-09-02 10:03:04 +03:00

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;
}