You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

test_ops_custom_predict.cc 2.7 kB

5 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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/custom_predict.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. namespace mindspore {
  25. namespace ops {
  26. class TestCustomPredict : public UT::Common {
  27. public:
  28. TestCustomPredict() {}
  29. void SetUp() {}
  30. void TearDown() {}
  31. };
  32. TEST_F(TestCustomPredict, test_ops_custom_predict1) {
  33. auto custom_predict = std::make_shared<CustomPredict>();
  34. custom_predict->Init(5, 0.1);
  35. EXPECT_EQ(custom_predict->get_output_num(), 5);
  36. EXPECT_EQ((int64_t)(custom_predict->get_weight_threshold() - 0.1), 0);
  37. auto inputs0 = TensorConstructUtils::CreateOnesTensor(kNumberTypeInt32, std::vector<int64_t>{1});
  38. MS_EXCEPTION_IF_NULL(inputs0);
  39. auto abstract = custom_predict->Infer({inputs0->ToAbstract()});
  40. MS_EXCEPTION_IF_NULL(abstract);
  41. EXPECT_EQ(abstract->isa<abstract::AbstractTuple>(), true);
  42. auto shape_ptr = abstract->BuildShape();
  43. MS_EXCEPTION_IF_NULL(shape_ptr);
  44. EXPECT_EQ(shape_ptr->isa<abstract::TupleShape>(), true);
  45. auto shape = shape_ptr->cast<abstract::TupleShapePtr>();
  46. MS_EXCEPTION_IF_NULL(shape);
  47. auto shape_vec = shape->shape();
  48. EXPECT_EQ(shape_vec.size(), 2);
  49. auto shape1 = shape_vec[0]->cast<abstract::ShapePtr>()->shape();
  50. EXPECT_EQ(shape1.size(), 1);
  51. EXPECT_EQ(shape1[0], 5);
  52. auto shape2 = shape_vec[1]->cast<abstract::ShapePtr>()->shape();
  53. EXPECT_EQ(shape2.size(), 1);
  54. EXPECT_EQ(shape2[0], 5);
  55. auto type_ptr = abstract->BuildType();
  56. MS_EXCEPTION_IF_NULL(type_ptr);
  57. auto type = type_ptr->cast<TuplePtr>();
  58. MS_EXCEPTION_IF_NULL(type);
  59. auto type_vec = type->elements();
  60. MS_EXCEPTION_IF_NULL(type_vec[0]);
  61. auto data0_type = type_vec[0]->cast<TensorTypePtr>()->element();
  62. MS_EXCEPTION_IF_NULL(data0_type);
  63. EXPECT_EQ(data0_type->type_id(), kNumberTypeInt32);
  64. MS_EXCEPTION_IF_NULL(type_vec[1]);
  65. auto data1_type = type_vec[1]->cast<TensorTypePtr>()->element();
  66. MS_EXCEPTION_IF_NULL(data1_type);
  67. EXPECT_EQ(data1_type->type_id(), kNumberTypeFloat32);
  68. }
  69. } // namespace ops
  70. } // namespace mindspore