input_output_assign.cpp 1.91 KB
Newer Older
1
//*****************************************************************************
2
// Copyright 2017-2019 Intel Corporation
3 4 5 6 7 8 9 10 11 12 13 14 15
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//*****************************************************************************
16 17 18

#include "gtest/gtest.h"

19
#include "ngraph/ngraph.hpp"
20 21 22 23 24 25 26 27

#include <memory>
using namespace std;
using namespace ngraph;

TEST(input_output, param_tensor)
{
    // Params have no arguments, so we can check that the value becomes a tensor output
28 29 30
    auto& et = element::f32;
    Shape shape{2, 4};
    auto param = make_shared<op::Parameter>(et, shape);
31

32 33 34
    ASSERT_EQ(param->get_output_size(), 1);
    ASSERT_EQ(et, param->get_element_type());
    ASSERT_EQ(shape, param->get_shape());
35 36 37 38
}

TEST(input_output, simple_output)
{
39 40
    auto param_0 = make_shared<op::Parameter>(element::f32, Shape{2, 4});
    auto param_1 = make_shared<op::Parameter>(element::f32, Shape{2, 4});
41
    auto add = make_shared<op::Add>(param_0, param_1);
42 43 44 45 46 47 48

    // Sort the ops
    vector<shared_ptr<Node>> nodes;
    nodes.push_back(param_0);
    nodes.push_back(param_1);
    nodes.push_back(add);

49 50
    // At this point, the add should have each input associated with the output of the appropriate
    // parameter
51 52 53
    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++)
54
    {
55
        ASSERT_EQ(add->get_argument(i), nodes.at(i));
56 57
    }
}