forked from openvinotoolkit/openvino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
input_output_assign.cpp
46 lines (37 loc) · 1.42 KB
/
input_output_assign.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright (C) 2018-2024 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include <gtest/gtest.h>
#include <memory>
#include "openvino/core/shape.hpp"
#include "openvino/core/type/element_type.hpp"
#include "openvino/op/add.hpp"
#include "openvino/op/parameter.hpp"
using namespace std;
using namespace ov;
TEST(input_output, param_tensor) {
// Params have no arguments, so we can check that the value becomes a tensor output
auto& et = ov::element::f32;
ov::Shape shape{2, 4};
auto param = make_shared<ov::op::v0::Parameter>(et, shape);
ASSERT_EQ(param->get_output_size(), 1);
ASSERT_EQ(et, param->get_element_type());
ASSERT_EQ(shape, param->get_shape());
}
TEST(input_output, simple_output) {
auto param_0 = make_shared<ov::op::v0::Parameter>(element::f32, Shape{2, 4});
auto param_1 = make_shared<ov::op::v0::Parameter>(element::f32, Shape{2, 4});
auto add = make_shared<op::v1::Add>(param_0, param_1);
// Sort the ops
vector<shared_ptr<Node>> nodes;
nodes.push_back(param_0);
nodes.push_back(param_1);
nodes.push_back(add);
// At this point, the add should have each input associated with the output of the appropriate
// parameter
ASSERT_EQ(1, add->get_output_size());
ASSERT_EQ(2, add->get_input_size());
for (size_t i = 0; i < add->get_input_size(); i++) {
ASSERT_EQ(add->input_value(i).get_node_shared_ptr(), nodes.at(i));
}
}