• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /**
2  * Copyright 2020 Huawei Technologies Co., Ltd
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #include <vector>
17 #include <memory>
18 #include "common/common_test.h"
19 #include "ops/reshape.h"
20 #include "ir/dtype/type.h"
21 #include "ir/value.h"
22 #include "abstract/dshape.h"
23 #include "utils/tensor_construct_utils.h"
24 
25 namespace mindspore {
26 namespace ops {
27 class TestReshape : public UT::Common {
28  public:
TestReshape()29   TestReshape() {}
SetUp()30   void SetUp() {}
TearDown()31   void TearDown() {}
32 };
33 
TEST_F(TestReshape,test_ops_reshape1)34 TEST_F(TestReshape, test_ops_reshape1) {
35   auto reshape = std::make_shared<Reshape>();
36   auto tensor_x = TensorConstructUtils::CreateOnesTensor(kNumberTypeFloat32, std::vector<int64_t>{2, 3, 4, 5});
37   auto input_shape = MakeValue(std::vector<int64_t>{6, 2, 10});
38   MS_EXCEPTION_IF_NULL(tensor_x);
39   auto abstract = reshape->Infer({tensor_x->ToAbstract(), input_shape->ToAbstract()});
40   MS_EXCEPTION_IF_NULL(abstract);
41   EXPECT_EQ(abstract->isa<abstract::AbstractTensor>(), true);
42   auto shape_ptr = abstract->BuildShape();
43   MS_EXCEPTION_IF_NULL(shape_ptr);
44   EXPECT_EQ(shape_ptr->isa<abstract::Shape>(), true);
45   auto shape = shape_ptr->cast<abstract::ShapePtr>();
46   MS_EXCEPTION_IF_NULL(shape);
47   auto shape_vec = shape->shape();
48   auto type = abstract->BuildType();
49   MS_EXCEPTION_IF_NULL(type);
50   EXPECT_EQ(type->isa<TensorType>(), true);
51   auto tensor_type = type->cast<TensorTypePtr>();
52   MS_EXCEPTION_IF_NULL(tensor_type);
53   auto data_type = tensor_type->element();
54   MS_EXCEPTION_IF_NULL(data_type);
55   EXPECT_EQ(data_type->type_id(), kNumberTypeFloat32);
56   EXPECT_EQ(shape_vec.size(), 3);
57   EXPECT_EQ(shape_vec[0], 6);
58   EXPECT_EQ(shape_vec[1], 2);
59   EXPECT_EQ(shape_vec[2], 10);
60 }
61 
TEST_F(TestReshape,test_ops_reshape2)62 TEST_F(TestReshape, test_ops_reshape2) {
63   auto reshape = std::make_shared<Reshape>();
64   auto tensor_x = TensorConstructUtils::CreateOnesTensor(kNumberTypeFloat16, std::vector<int64_t>{2, 3, 4, 5});
65   auto input_shape = MakeValue(std::vector<int64_t>{6, 2, -1});
66   MS_EXCEPTION_IF_NULL(tensor_x);
67   auto abstract = reshape->Infer({tensor_x->ToAbstract(), input_shape->ToAbstract()});
68   MS_EXCEPTION_IF_NULL(abstract);
69   EXPECT_EQ(abstract->isa<abstract::AbstractTensor>(), true);
70   auto shape_ptr = abstract->BuildShape();
71   MS_EXCEPTION_IF_NULL(shape_ptr);
72   EXPECT_EQ(shape_ptr->isa<abstract::Shape>(), true);
73   auto shape = shape_ptr->cast<abstract::ShapePtr>();
74   MS_EXCEPTION_IF_NULL(shape);
75   auto shape_vec = shape->shape();
76   auto type = abstract->BuildType();
77   MS_EXCEPTION_IF_NULL(type);
78   EXPECT_EQ(type->isa<TensorType>(), true);
79   auto tensor_type = type->cast<TensorTypePtr>();
80   MS_EXCEPTION_IF_NULL(tensor_type);
81   auto data_type = tensor_type->element();
82   MS_EXCEPTION_IF_NULL(data_type);
83   EXPECT_EQ(data_type->type_id(), kNumberTypeFloat16);
84   EXPECT_EQ(shape_vec.size(), 3);
85   EXPECT_EQ(shape_vec[0], 6);
86   EXPECT_EQ(shape_vec[1], 2);
87   EXPECT_EQ(shape_vec[2], 10);
88 }
89 }  // namespace ops
90 }  // namespace mindspore
91