/** * Copyright 2020 Huawei Technologies Co., Ltd * * 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 #include #include "common/common_test.h" #include "ops/sin.h" #include "ir/dtype/type.h" #include "abstract/dshape.h" #include "utils/tensor_construct_utils.h" namespace mindspore { namespace ops { class TestSin : public UT::Common { public: TestSin() {} void SetUp() {} void TearDown() {} }; TEST_F(TestSin, test_ops_sin) { auto sin = std::make_shared(); sin->Init(); auto tensor_x = TensorConstructUtils::CreateOnesTensor(kNumberTypeFloat32, std::vector{1, 4}); MS_EXCEPTION_IF_NULL(tensor_x); auto sin_abstract = sin->Infer({tensor_x->ToAbstract()}); MS_EXCEPTION_IF_NULL(sin_abstract); EXPECT_EQ(sin_abstract->isa(), true); auto shape_ptr = sin_abstract->BuildShape(); MS_EXCEPTION_IF_NULL(shape_ptr); EXPECT_EQ(shape_ptr->isa(), true); auto sin_shape = shape_ptr->cast(); MS_EXCEPTION_IF_NULL(sin_shape); auto shape_vec = sin_shape->shape(); auto type = sin_abstract->BuildType(); MS_EXCEPTION_IF_NULL(type); EXPECT_EQ(type->isa(), true); auto tensor_type = type->cast(); MS_EXCEPTION_IF_NULL(tensor_type); auto elem_type = tensor_type->element(); EXPECT_EQ(elem_type->type_id(), kNumberTypeFloat32); EXPECT_EQ(shape_vec.size(), 2); EXPECT_EQ(shape_vec[0], 1); EXPECT_EQ(shape_vec[1], 4); } } // namespace ops } // namespace mindspore