dyn_reshape_opset_pass.cpp 2.56 KB
Newer Older
1
//*****************************************************************************
2
// Copyright 2017-2020 Intel Corporation
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
//
// 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"
22
#include "ngraph/pass/opset0_downgrade.hpp"
23 24 25 26 27 28
#include "ngraph/pass/opset1_upgrade.hpp"
#include "util/type_prop.hpp"

using namespace std;
using namespace ngraph;

29
TEST(opset_transform, opset1_dyn_reshape_upgrade_pass)
30 31 32 33 34 35 36 37 38 39 40 41
{
    const auto arg = make_shared<op::Parameter>(element::f32, Shape{1, 2, 3});
    const auto pattern = make_shared<op::Parameter>(element::i64, Shape{6});

    const auto dyn_reshape_v0 = make_shared<op::v0::DynReshape>(arg, pattern, true);
    const auto result = make_shared<op::Result>(dyn_reshape_v0);
    auto f = make_shared<Function>(ResultVector{result}, ParameterVector{arg, pattern});

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

Scott Cyphers's avatar
Scott Cyphers committed
42 43
    const auto pass_replacement_node = f->get_result()->input_value(0).get_node_shared_ptr();
    EXPECT_TRUE(is_type<op::v1::Reshape>(pass_replacement_node));
44
}
45 46 47 48 49 50 51 52 53 54 55 56 57 58

TEST(opset_transform, opset1_reshape_downgrade_pass)
{
    const auto arg = make_shared<op::Parameter>(element::f32, Shape{1, 2, 3});
    const auto pattern = make_shared<op::Parameter>(element::i64, Shape{6});

    const auto dyn_reshape_v0 = make_shared<op::v1::Reshape>(arg, pattern, true);
    const auto result = make_shared<op::Result>(dyn_reshape_v0);
    auto f = make_shared<Function>(ResultVector{result}, ParameterVector{arg, pattern});

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

Scott Cyphers's avatar
Scott Cyphers committed
59
    const auto pass_replacement_node = f->get_result()->input_value(0).get_node_shared_ptr();
60
    const auto reshape_v1 = as_type_ptr<op::v0::DynReshape>(pass_replacement_node);
Scott Cyphers's avatar
Scott Cyphers committed
61
    ASSERT_TRUE(reshape_v1);
62 63
    EXPECT_EQ(reshape_v1->get_zero_flag(), true);
}