Files
openvino/ngraph/test/backend/shape_of.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

191 lines
7.0 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"
using namespace std;
using namespace ngraph;
static string s_manifest = "${MANIFEST}";
NGRAPH_TEST(${BACKEND_NAME}, shape_of_scalar_v0) {
Shape input_shape{};
Shape output_shape{0};
auto A = std::make_shared<op::Parameter>(element::f32, input_shape);
auto f = std::make_shared<Function>(std::make_shared<op::v0::ShapeOf>(A), ParameterVector{A});
auto backend = runtime::Backend::create("${BACKEND_NAME}");
auto a = backend->create_tensor(element::f32, input_shape);
copy_data(a, vector<float>{0});
auto result = backend->create_tensor(element::i64, output_shape);
auto handle = backend->compile(f);
handle->call_with_validate({result}, {a});
vector<int64_t> expected{};
EXPECT_EQ(expected, read_vector<int64_t>(result));
}
NGRAPH_TEST(${BACKEND_NAME}, shape_of_scalar_v3) {
Shape input_shape{};
Shape output_shape{0};
auto A = std::make_shared<op::Parameter>(element::f32, input_shape);
auto f = std::make_shared<Function>(
OutputVector{std::make_shared<op::v3::ShapeOf>(A), std::make_shared<op::v3::ShapeOf>(A, element::i32)},
ParameterVector{A});
auto backend = runtime::Backend::create("${BACKEND_NAME}");
auto a = backend->create_tensor(element::f32, input_shape);
copy_data(a, vector<float>{0});
auto result64 = backend->create_tensor(element::i64, output_shape);
auto result32 = backend->create_tensor(element::i32, output_shape);
auto handle = backend->compile(f);
handle->call_with_validate({result64, result32}, {a});
vector<int64_t> expected64{};
vector<int32_t> expected32{};
EXPECT_EQ(expected64, read_vector<int64_t>(result64));
EXPECT_EQ(expected32, read_vector<int32_t>(result32));
}
NGRAPH_TEST(${BACKEND_NAME}, shape_of_vector_v0) {
Shape input_shape{2};
Shape output_shape{1};
auto A = std::make_shared<op::Parameter>(element::f32, input_shape);
auto f = std::make_shared<Function>(std::make_shared<op::v0::ShapeOf>(A), ParameterVector{A});
auto backend = runtime::Backend::create("${BACKEND_NAME}");
auto a = backend->create_tensor(element::f32, input_shape);
copy_data(a, vector<float>(2, 0));
auto result = backend->create_tensor(element::i64, output_shape);
auto handle = backend->compile(f);
handle->call_with_validate({result}, {a});
vector<int64_t> expected{2};
EXPECT_EQ(expected, read_vector<int64_t>(result));
}
NGRAPH_TEST(${BACKEND_NAME}, shape_of_vector_v3) {
Shape input_shape{2};
Shape output_shape{1};
auto A = std::make_shared<op::Parameter>(element::f32, input_shape);
auto f = std::make_shared<Function>(
OutputVector{std::make_shared<op::v3::ShapeOf>(A), std::make_shared<op::v3::ShapeOf>(A, element::i32)},
ParameterVector{A});
auto backend = runtime::Backend::create("${BACKEND_NAME}");
auto a = backend->create_tensor(element::f32, input_shape);
copy_data(a, vector<float>{2, 0});
auto result64 = backend->create_tensor(element::i64, output_shape);
auto result32 = backend->create_tensor(element::i32, output_shape);
auto handle = backend->compile(f);
handle->call_with_validate({result64, result32}, {a});
vector<int64_t> expected64{2};
vector<int32_t> expected32{2};
EXPECT_EQ(expected64, read_vector<int64_t>(result64));
EXPECT_EQ(expected32, read_vector<int32_t>(result32));
}
NGRAPH_TEST(${BACKEND_NAME}, shape_of_matrix_v0) {
Shape input_shape{2, 4};
Shape output_shape{2};
auto A = std::make_shared<op::Parameter>(element::f32, input_shape);
auto f = std::make_shared<Function>(std::make_shared<op::v0::ShapeOf>(A), ParameterVector{A});
auto backend = runtime::Backend::create("${BACKEND_NAME}");
auto a = backend->create_tensor(element::f32, input_shape);
copy_data(a, vector<float>(2 * 4, 0));
auto result = backend->create_tensor(element::i64, output_shape);
auto handle = backend->compile(f);
handle->call_with_validate({result}, {a});
vector<int64_t> expected{2, 4};
EXPECT_EQ(expected, read_vector<int64_t>(result));
}
NGRAPH_TEST(${BACKEND_NAME}, shape_of_matrix_v3) {
Shape input_shape{2, 4};
Shape output_shape{2};
auto A = std::make_shared<op::Parameter>(element::f32, input_shape);
auto f = std::make_shared<Function>(
OutputVector{std::make_shared<op::v3::ShapeOf>(A), std::make_shared<op::v3::ShapeOf>(A, element::i32)},
ParameterVector{A});
auto backend = runtime::Backend::create("${BACKEND_NAME}");
auto a = backend->create_tensor(element::f32, input_shape);
copy_data(a, vector<float>(2 * 4, 0));
auto result64 = backend->create_tensor(element::i64, output_shape);
auto result32 = backend->create_tensor(element::i32, output_shape);
auto handle = backend->compile(f);
handle->call_with_validate({result64, result32}, {a});
vector<int64_t> expected64{2, 4};
vector<int32_t> expected32{2, 4};
EXPECT_EQ(expected64, read_vector<int64_t>(result64));
EXPECT_EQ(expected32, read_vector<int32_t>(result32));
}
NGRAPH_TEST(${BACKEND_NAME}, shape_of_5d_v0) {
Shape input_shape{2, 4, 8, 16, 32};
Shape output_shape{5};
auto A = std::make_shared<op::Parameter>(element::f32, input_shape);
auto f = std::make_shared<Function>(std::make_shared<op::v0::ShapeOf>(A), ParameterVector{A});
auto backend = runtime::Backend::create("${BACKEND_NAME}");
auto a = backend->create_tensor(element::f32, input_shape);
copy_data(a, vector<float>(2 * 4 * 8 * 16 * 32, 0));
auto result = backend->create_tensor(element::i64, output_shape);
auto handle = backend->compile(f);
handle->call_with_validate({result}, {a});
vector<int64_t> expected{2, 4, 8, 16, 32};
EXPECT_EQ(expected, read_vector<int64_t>(result));
}
NGRAPH_TEST(${BACKEND_NAME}, shape_of_5d_v3) {
Shape input_shape{2, 4, 8, 16, 32};
Shape output_shape{5};
auto A = std::make_shared<op::Parameter>(element::f32, input_shape);
auto f = std::make_shared<Function>(
OutputVector{std::make_shared<op::v3::ShapeOf>(A), std::make_shared<op::v3::ShapeOf>(A, element::i32)},
ParameterVector{A});
auto backend = runtime::Backend::create("${BACKEND_NAME}");
auto a = backend->create_tensor(element::f32, input_shape);
copy_data(a, vector<float>(2 * 4 * 8 * 16 * 32, 0));
auto result64 = backend->create_tensor(element::i64, output_shape);
auto result32 = backend->create_tensor(element::i32, output_shape);
auto handle = backend->compile(f);
handle->call_with_validate({result64, result32}, {a});
vector<int64_t> expected64{2, 4, 8, 16, 32};
vector<int32_t> expected32{2, 4, 8, 16, 32};
EXPECT_EQ(expected64, read_vector<int64_t>(result64));
EXPECT_EQ(expected32, read_vector<int32_t>(result32));
}