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.

concatenate_op_test.cc 2.5 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 "common/common.h"
  17. #include "minddata/dataset/kernels/data/concatenate_op.h"
  18. #include "utils/log_adapter.h"
  19. using namespace mindspore::dataset;
  20. using mindspore::LogStream;
  21. using mindspore::ExceptionType::NoExceptionType;
  22. using mindspore::MsLogLevel::INFO;
  23. class MindDataTestConcatenateOp : public UT::Common {
  24. protected:
  25. MindDataTestConcatenateOp() {}
  26. };
  27. TEST_F(MindDataTestConcatenateOp, TestOp) {
  28. MS_LOG(INFO) << "Doing MindDataTestConcatenate-TestOp.";
  29. uint64_t labels[3] = {1, 1, 2};
  30. TensorShape shape({3});
  31. std::shared_ptr<Tensor> input =
  32. std::make_shared<Tensor>(shape, DataType(DataType::DE_UINT64), reinterpret_cast<unsigned char *>(labels));
  33. uint64_t append_labels[3] = {4, 4, 4};
  34. std::shared_ptr<Tensor> append =
  35. std::make_shared<Tensor>(shape, DataType(DataType::DE_UINT64), reinterpret_cast<unsigned char *>(append_labels));
  36. std::shared_ptr<Tensor> output;
  37. std::unique_ptr<ConcatenateOp> op(new ConcatenateOp(0, nullptr, append));
  38. TensorRow in;
  39. in.push_back(input);
  40. TensorRow out_row;
  41. Status s = op->Compute(in, &out_row);
  42. uint64_t out[6] = {1, 1, 2, 4, 4, 4};
  43. std::shared_ptr<Tensor> expected =
  44. std::make_shared<Tensor>(TensorShape{6}, DataType(DataType::DE_UINT64), reinterpret_cast<unsigned char *>(out));
  45. output = out_row[0];
  46. EXPECT_TRUE(s.IsOk());
  47. ASSERT_TRUE(output->shape() == expected->shape());
  48. ASSERT_TRUE(output->type() == expected->type());
  49. MS_LOG(DEBUG) << *output << std::endl;
  50. MS_LOG(DEBUG) << *expected << std::endl;
  51. ASSERT_TRUE(*output == *expected);
  52. // std::vector<TensorShape> inputs = {TensorShape({3})};
  53. // std::vector<TensorShape> outputs = {};
  54. // s = op->OutputShape(inputs, outputs);
  55. // EXPECT_TRUE(s.IsOk());
  56. // ASSERT_TRUE(outputs[0] == TensorShape{6});
  57. // MS_LOG(INFO) << "MindDataTestConcatenateOp-TestOp end.";
  58. }