test_reshape_op.cc 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.

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 "paddle/fluid/inference/anakin/convert/op_converter.h"
#include "paddle/fluid/inference/anakin/convert/ut_helper.h"

namespace paddle {
namespace inference {
namespace anakin {

23 24
template <typename TargetT>
void test_reshape1_op(const platform::DeviceContext& context, bool use_gpu) {
25 26
  framework::Scope scope;
  std::unordered_set<std::string> parameters;
27 28
  AnakinConvertValidation<TargetT, ::anakin::Precision::FP32> validator(
      parameters, &scope, context, use_gpu);
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

  // validator.DeclInputVar("reshape-X", {2, 3, 3, 1});
  // validator.DeclOutputVar("reshape-Out", {3, 2, 1, 3});
  validator.DeclInputVar("reshape-X", {1, 2, 4, 1});
  validator.DeclOutputVar("reshape-Out", {1, 8, 1, 1});

  framework::OpDesc desc;
  desc.SetType("reshape");
  desc.SetInput("X", {"reshape-X"});
  desc.SetOutput("Out", {"reshape-Out"});
  // desc.SetAttr("shape", std::vector<int>({3, 2, 1, 3}));
  desc.SetAttr("shape", std::vector<int>({1, 8, 1, 1}));

  LOG(INFO) << "set OP";
  validator.SetOp(*desc.Proto());
  LOG(INFO) << "execute";
  validator.Execute(1);
}

48 49
template <typename TargetT>
void test_reshape2_op(const platform::DeviceContext& context, bool use_gpu) {
50 51
  framework::Scope scope;
  std::unordered_set<std::string> parameters;
52 53
  AnakinConvertValidation<TargetT, ::anakin::Precision::FP32> validator(
      parameters, &scope, context, use_gpu);
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

  validator.DeclInputVar("reshape-X", {1, 2, 4});
  validator.DeclOutputVar("reshape-Out", {1, 4, 2});

  framework::OpDesc desc;
  desc.SetType("reshape");
  desc.SetInput("X", {"reshape-X"});
  desc.SetOutput("Out", {"reshape-Out"});
  // desc.SetAttr("shape", std::vector<int>({3, 2, 1, 3}));
  desc.SetAttr("shape", std::vector<int>({0, -1, 2}));

  LOG(INFO) << "set OP";
  validator.SetOp(*desc.Proto());
  LOG(INFO) << "execute";
  validator.Execute(1);
}

71 72 73 74 75 76 77 78 79 80 81 82 83
#ifdef PADDLE_WITH_CUDA
TEST(reshape1_op, gpu) {
  platform::CUDAPlace gpu_place(0);
  platform::CUDADeviceContext ctx(gpu_place);
  test_reshape1_op<::anakin::saber::NV>(ctx, true);
}

TEST(reshape2_op, gpu) {
  platform::CUDAPlace gpu_place(0);
  platform::CUDADeviceContext ctx(gpu_place);
  test_reshape2_op<::anakin::saber::NV>(ctx, true);
}
#endif
84
#ifdef ANAKIN_X86_PLACE
85 86 87 88 89 90 91 92 93 94 95
TEST(reshape1_op, cpu) {
  platform::CPUPlace cpu_place;
  platform::CPUDeviceContext ctx(cpu_place);
  test_reshape2_op<::anakin::saber::X86>(ctx, false);
}

TEST(reshape2_op, cpu) {
  platform::CPUPlace cpu_place;
  platform::CPUDeviceContext ctx(cpu_place);
  test_reshape2_op<::anakin::saber::X86>(ctx, false);
}
96
#endif
97 98 99 100 101 102
}  // namespace anakin
}  // namespace inference
}  // namespace paddle

USE_OP(reshape);
USE_ANAKIN_CONVERTER(reshape);