builder.cpp 5.49 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// ----------------------------------------------------------------------------
// Copyright 2017 Nervana Systems Inc.
// 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
// ----------------------------------------------------------------------------
#include "gtest/gtest.h"

#include "ngraph/ngraph.hpp"
#include "util/all_close.hpp"
18
#include "util/test_tools.hpp"
19 20 21 22

using namespace ngraph;
using namespace std;

23 24
shared_ptr<runtime::TensorView>
    make_reduce_result(function<shared_ptr<Node>(const shared_ptr<Node>&, const AxisSet&)> func)
25 26
{
    auto shape_a = Shape{3, 2};
27
    auto A = make_shared<op::Parameter>(element::f32, shape_a);
28
    auto shape_rt = Shape{2};
29
    auto f = make_shared<Function>(func(A, {0}), op::Parameters{A});
30
    auto manager = runtime::Manager::get("INTERPRETER");
31 32 33 34
    auto external = manager->compile(f);
    auto backend = manager->allocate_backend();
    auto cf = backend->make_call_frame(external);
    // Create some tensors for input/output
35
    auto a = backend->make_primary_tensor_view(element::f32, shape_a);
36
    copy_data(a, vector<float>{1, 2, 3, 4, 5, 6});
37
    auto result = backend->make_primary_tensor_view(element::f32, shape_rt);
38 39 40 41 42
    cf->call({a}, {result});

    return result;
}

43 44
shared_ptr<runtime::TensorView> make_reduce_result_true(
    function<shared_ptr<Node>(const shared_ptr<Node>&, const AxisSet&, bool)> func)
45 46
{
    auto shape_a = Shape{3, 2};
47
    auto A = make_shared<op::Parameter>(element::f32, shape_a);
48
    auto shape_rt = Shape{2};
49
    auto f = make_shared<Function>(func(A, {0}, true), op::Parameters{A});
50
    auto manager = runtime::Manager::get("INTERPRETER");
51 52 53 54
    auto external = manager->compile(f);
    auto backend = manager->allocate_backend();
    auto cf = backend->make_call_frame(external);
    // Create some tensors for input/output
55
    auto a = backend->make_primary_tensor_view(element::f32, shape_a);
56
    copy_data(a, vector<float>{1, 2, 3, 4, 5, 6});
57
    auto result = backend->make_primary_tensor_view(element::f32, shape_rt);
58 59 60 61 62
    cf->call({a}, {result});

    return result;
}

63 64
shared_ptr<runtime::TensorView> make_reduce_result_false(
    function<shared_ptr<Node>(const shared_ptr<Node>&, const AxisSet&, bool)> func)
65 66
{
    auto shape_a = Shape{3, 2};
67
    auto A = make_shared<op::Parameter>(element::f32, shape_a);
68
    auto shape_rt = Shape{2};
69
    auto f = make_shared<Function>(func(A, {0}, false), op::Parameters{A});
70
    auto manager = runtime::Manager::get("INTERPRETER");
71 72 73 74
    auto external = manager->compile(f);
    auto backend = manager->allocate_backend();
    auto cf = backend->make_call_frame(external);
    // Create some tensors for input/output
75
    auto a = backend->make_primary_tensor_view(element::f32, shape_a);
76
    copy_data(a, vector<float>{1, 2, 3, 4, 5, 6});
77
    auto result = backend->make_primary_tensor_view(element::f32, shape_rt);
78 79 80 81 82
    cf->call({a}, {result});

    return result;
}

83
TEST(builder, l2_norm)
84 85
{
    auto result = make_reduce_result(builder::l2_norm);
86 87
    ASSERT_TRUE(test::all_close((vector<float>{5.9160797831f, 7.48331477355f}),
                                read_vector<float>(result)));
88 89
}

90
TEST(builder, mean)
91 92
{
    auto result = make_reduce_result(builder::mean);
93
    ASSERT_TRUE(test::all_close((vector<float>{3, 4}), read_vector<float>(result)));
94 95
}

96
TEST(builder, std_dev)
97 98
{
    auto result = make_reduce_result_false(builder::std_dev);
99 100
    ASSERT_TRUE(test::all_close((vector<float>{1.63299316186f, 1.63299316186f}),
                                read_vector<float>(result)));
101
    result = make_reduce_result_true(builder::std_dev);
102
    ASSERT_TRUE(test::all_close((vector<float>{2, 2}), read_vector<float>(result)));
103 104
}

105
TEST(builder, variance)
106 107
{
    auto result = make_reduce_result_false(builder::variance);
108 109
    ASSERT_TRUE(test::all_close((vector<float>{2.66666666666f, 2.66666666666f}),
                                read_vector<float>(result)));
110
    result = make_reduce_result_true(builder::variance);
111
    ASSERT_TRUE(test::all_close((vector<float>{4, 4}), read_vector<float>(result)));
112
}
113 114 115 116 117

TEST(builder, numpy_transpose)
{
    // 2D Transpose
    Shape shape{2, 4};
118 119
    auto param = make_shared<op::Parameter>(element::f32, shape);
    auto transposed = dynamic_pointer_cast<op::Reshape>(builder::numpy_transpose(param));
120 121 122 123
    EXPECT_EQ(Shape({4, 2}), transposed->get_output_shape());

    // Multidimensional Transpose
    shape = Shape{2, 4, 8};
124 125
    param = make_shared<op::Parameter>(element::f32, shape);
    transposed = dynamic_pointer_cast<op::Reshape>(builder::numpy_transpose(param));
126 127 128 129
    EXPECT_EQ(Shape({8, 4, 2}), transposed->get_output_shape());

    // Dimshuffle
    shape = Shape{2, 4, 8};
130 131 132
    param = make_shared<op::Parameter>(element::f32, shape);
    transposed =
        dynamic_pointer_cast<op::Reshape>(builder::numpy_transpose(param, AxisVector{2, 0, 1}));
133 134 135 136
    EXPECT_EQ(Shape({8, 2, 4}), transposed->get_output_shape());

    // Bad Orders
    EXPECT_ANY_THROW(
137 138 139
        dynamic_pointer_cast<op::Reshape>(builder::numpy_transpose(param, AxisVector{2})));
    EXPECT_ANY_THROW(
        dynamic_pointer_cast<op::Reshape>(builder::numpy_transpose(param, AxisVector{2, 2, 1})));
140
}