reverse_opset_pass.cpp 2.03 KB
Newer Older
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 47 48 49 50 51 52
//*****************************************************************************
// Copyright 2017-2019 Intel Corporation
//
// 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.
//*****************************************************************************

#include "gmock/gmock.h"
#include "gtest/gtest.h"

#include "ngraph/ngraph.hpp"
#include "ngraph/pass/manager.hpp"
#include "ngraph/pass/opset1_upgrade.hpp"
#include "util/type_prop.hpp"

using namespace std;
using namespace ngraph;

TEST(serialize, opset1_reverse_upgrade)
{
    const auto data = make_shared<op::Parameter>(element::f32, Shape{2, 2, 2});
    const AxisSet reverse_axes{1, 2};

    const auto reverse_v0 = make_shared<op::Reverse>(data, reverse_axes);
    const auto result = make_shared<op::Result>(reverse_v0);
    auto f = make_shared<Function>(ResultVector{result}, ParameterVector{data});

    ngraph::pass::Manager pass_manager;
    pass_manager.register_pass<pass::Opset1Upgrade>();
    pass_manager.run_passes(f);

    const auto pass_replacement_node =
        f->get_result()->input(0).get_source_output().get_node_shared_ptr();
    const auto reverse_v1 = static_pointer_cast<op::v1::Reverse>(pass_replacement_node);

    EXPECT_EQ(reverse_v1->get_mode(), op::v1::Reverse::Mode::INDEX);
    EXPECT_EQ(reverse_v1->description(), "Reverse");
    EXPECT_EQ(reverse_v1->get_version(), 1);

    const auto& rev_axes_input_shape = reverse_v1->get_input_shape(1);
    // should match the number of elements of v0::Reverse reverse_axes attribute
    EXPECT_EQ(rev_axes_input_shape, Shape{2});
}