Files
openvino/ngraph/test/backend/validate_call.in.cpp
Ilya Churaev faeaf045a9 Graph comparator to ngraph util (#7729)
* Moved FrameworkNode to nGraph

* Moved graph comparator to ngraph test util

* Fixed build

* Try to fix centos

* Fix export target

* Moved engine utils to separate library

* Removed ONNX util from common library

* Fixed build

* Fixed code style
2021-10-01 07:24:28 +03:00

118 lines
4.3 KiB
C++

// Copyright (C) 2018-2021 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "engines_util/execute_tools.hpp"
#include "gtest/gtest.h"
#include "ngraph/ngraph.hpp"
#include "ngraph/runtime/tensor.hpp"
#include "runtime/backend.hpp"
#include "util/all_close.hpp"
#include "util/all_close_f.hpp"
#include "util/ndarray.hpp"
#include "util/test_control.hpp"
NGRAPH_SUPPRESS_DEPRECATED_START
using namespace std;
using namespace ngraph;
static string s_manifest = "${MANIFEST}";
NGRAPH_TEST(${BACKEND_NAME}, validate_call_input_count) {
auto backend = runtime::Backend::create("${BACKEND_NAME}");
Shape shape{2, 2};
auto A = make_shared<op::Parameter>(element::f32, shape);
auto B = make_shared<op::Parameter>(element::f32, shape);
auto f = make_shared<Function>(make_shared<op::v1::Add>(A, B), ParameterVector{A, B});
auto a = backend->create_tensor(element::f32, shape);
auto b = backend->create_tensor(element::f32, shape);
auto c = backend->create_tensor(element::f32, shape);
EXPECT_ANY_THROW(auto handle = backend->compile(f); handle->call_with_validate({c}, {a}));
}
NGRAPH_TEST(${BACKEND_NAME}, validate_call_input_type) {
auto backend = runtime::Backend::create("${BACKEND_NAME}");
Shape shape{2, 2};
auto A = make_shared<op::Parameter>(element::f32, shape);
auto B = make_shared<op::Parameter>(element::f32, shape);
auto f = make_shared<Function>(make_shared<op::v1::Add>(A, B), ParameterVector{A, B});
auto a = backend->create_tensor(element::i32, shape);
auto b = backend->create_tensor(element::f32, shape);
auto c = backend->create_tensor(element::f32, shape);
EXPECT_ANY_THROW(auto handle = backend->compile(f); handle->call_with_validate({c}, {a, b}));
}
NGRAPH_TEST(${BACKEND_NAME}, validate_call_input_shape) {
auto backend = runtime::Backend::create("${BACKEND_NAME}");
Shape shape{2, 2};
auto A = make_shared<op::Parameter>(element::f32, shape);
auto B = make_shared<op::Parameter>(element::f32, shape);
auto f = make_shared<Function>(make_shared<op::v1::Add>(A, B), ParameterVector{A, B});
auto a = backend->create_tensor(element::f32, {2, 3});
auto b = backend->create_tensor(element::f32, shape);
auto c = backend->create_tensor(element::f32, shape);
EXPECT_ANY_THROW(auto handle = backend->compile(f); handle->call_with_validate({c}, {a, b}));
}
NGRAPH_TEST(${BACKEND_NAME}, validate_call_output_count) {
auto backend = runtime::Backend::create("${BACKEND_NAME}");
Shape shape{2, 2};
auto A = make_shared<op::Parameter>(element::f32, shape);
auto B = make_shared<op::Parameter>(element::f32, shape);
auto f = make_shared<Function>(make_shared<op::v1::Add>(A, B), ParameterVector{A, B});
auto a = backend->create_tensor(element::f32, shape);
auto b = backend->create_tensor(element::f32, shape);
auto c = backend->create_tensor(element::f32, shape);
auto d = backend->create_tensor(element::f32, shape);
EXPECT_ANY_THROW(auto handle = backend->compile(f); handle->call_with_validate({c, d}, {a, b}));
}
NGRAPH_TEST(${BACKEND_NAME}, validate_call_output_type) {
auto backend = runtime::Backend::create("${BACKEND_NAME}");
Shape shape{2, 2};
auto A = make_shared<op::Parameter>(element::f32, shape);
auto B = make_shared<op::Parameter>(element::f32, shape);
auto f = make_shared<Function>(make_shared<op::v1::Add>(A, B), ParameterVector{A, B});
auto a = backend->create_tensor(element::i32, shape);
auto b = backend->create_tensor(element::f32, shape);
auto c = backend->create_tensor(element::f32, shape);
EXPECT_ANY_THROW(auto handle = backend->compile(f); handle->call_with_validate({a}, {b, c}));
}
NGRAPH_TEST(${BACKEND_NAME}, validate_call_output_shape) {
auto backend = runtime::Backend::create("${BACKEND_NAME}");
Shape shape{2, 2};
auto A = make_shared<op::Parameter>(element::f32, shape);
auto B = make_shared<op::Parameter>(element::f32, shape);
auto f = make_shared<Function>(make_shared<op::v1::Add>(A, B), ParameterVector{A, B});
auto a = backend->create_tensor(element::f32, {2, 3});
auto b = backend->create_tensor(element::f32, shape);
auto c = backend->create_tensor(element::f32, shape);
EXPECT_ANY_THROW(auto handle = backend->compile(f); handle->call_with_validate({a}, {c, b}));
}