//***************************************************************************** // Copyright 2017-2020 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 "gtest/gtest.h" #include "ngraph/ngraph.hpp" #include "ngraph/pass/constant_folding.hpp" #include "ngraph/pass/dyn_elimination.hpp" #include "ngraph/pass/manager.hpp" #include "pass/opset0_downgrade.hpp" #include "util/all_close_f.hpp" #include "util/test_tools.hpp" using namespace ngraph; using namespace std; TEST(dyn_elimination, transpose) { Shape shape_in{2, 4, 6, 8}; auto param = make_shared(element::boolean, shape_in); auto constant_perm = make_shared(element::i64, Shape{4}, vector{2, 3, 1, 0}); auto transpose = make_shared(param, constant_perm); auto f = make_shared(transpose, ParameterVector{param}); pass::Manager pass_manager; pass_manager.register_pass(); pass_manager.run_passes(f); ASSERT_EQ(count_ops_of_type(f), 0); ASSERT_EQ(count_ops_of_type(f), 1); auto new_reshape = as_type_ptr(f->get_results().at(0)->input_value(0).get_node_shared_ptr()); ASSERT_TRUE(new_reshape); ASSERT_EQ(new_reshape->get_input_order(), (AxisVector{2, 3, 1, 0})); ASSERT_EQ(new_reshape->get_output_shape(0), (Shape{6, 8, 4, 2})); ASSERT_EQ(new_reshape->get_output_element_type(0), element::boolean); } // For now, we can't handle the case where the input has dynamic shapes, // because the classic Reshape op demands a Shape. Probably won't be able to // deal with this until/unless we make a "StaticTranspose". Just make sure // we don't crash or mangle the graph. TEST(dyn_elimination, transpose_dyn_shape) { PartialShape shape_in{2, 4, Dimension::dynamic(), 8}; auto param = make_shared(element::boolean, shape_in); auto constant_perm = make_shared(element::i64, Shape{4}, vector{2, 3, 1, 0}); auto transpose = make_shared(param, constant_perm); auto f = make_shared(transpose, ParameterVector{param}); pass::Manager pass_manager; pass_manager.register_pass(); pass_manager.run_passes(f); ASSERT_EQ(count_ops_of_type(f), 1); ASSERT_EQ(count_ops_of_type(f), 1); auto new_transpose = as_type_ptr(f->get_results().at(0)->input_value(0).get_node_shared_ptr()); ASSERT_TRUE(new_transpose); ASSERT_EQ(new_transpose->get_output_element_type(0), element::boolean); ASSERT_TRUE(new_transpose->get_output_partial_shape(0).relaxes( PartialShape{Dimension::dynamic(), 8, 4, 2})); } TEST(dyn_elimination, range) { auto constant_start = make_shared(element::i64, Shape{}, vector{0}); auto constant_stop = make_shared(element::i64, Shape{}, vector{5}); auto constant_step = make_shared(element::i64, Shape{}, vector{2}); auto range = make_shared(constant_start, constant_stop, constant_step); ASSERT_EQ(range->get_element_type(), element::i64); ASSERT_EQ(range->get_shape(), (Shape{3})); auto f = make_shared(range, ParameterVector{}); pass::Manager pass_manager; pass_manager.register_pass(); pass_manager.run_passes(f); ASSERT_EQ(count_ops_of_type(f), 0); ASSERT_EQ(count_ops_of_type(f), 1); auto replacement = as_type_ptr(f->get_results().at(0)->input_value(0).get_node_shared_ptr()); ASSERT_NE(replacement, nullptr); ASSERT_EQ(replacement->get_element_type(), element::i64); ASSERT_EQ(replacement->get_shape(), (Shape{3})); auto vals = replacement->get_vector(); ASSERT_EQ(vals, (vector{0, 2, 4})); } TEST(dyn_elimination, range_f64) { auto constant_start = make_shared(element::f64, Shape{}, vector{-0.5}); auto constant_stop = make_shared(element::f64, Shape{}, vector{2}); auto constant_step = make_shared(element::f64, Shape{}, vector{0.25}); auto range = make_shared(constant_start, constant_stop, constant_step); ASSERT_EQ(range->get_element_type(), element::f64); ASSERT_EQ(range->get_shape(), (Shape{10})); auto f = make_shared(range, ParameterVector{}); pass::Manager pass_manager; pass_manager.register_pass(); pass_manager.run_passes(f); ASSERT_EQ(count_ops_of_type(f), 0); ASSERT_EQ(count_ops_of_type(f), 1); auto replacement = as_type_ptr(f->get_results().at(0)->input_value(0).get_node_shared_ptr()); ASSERT_NE(replacement, nullptr); ASSERT_EQ(replacement->get_element_type(), element::f64); ASSERT_EQ(replacement->get_shape(), (Shape{10})); auto vals = replacement->get_vector(); ASSERT_TRUE(test::all_close_f( vals, vector{-0.5, -0.25, 0, 0.25, 0.5, 0.75, 1.0, 1.25, 1.5, 1.75})); }