transform_test.cu 2.9 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.

   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/memory/memcpy.h"
#include "paddle/memory/memory.h"
18
#include "paddle/platform/hostdevice.h"
Y
Yu Yang 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
#include "paddle/platform/transform.h"

template <typename T>
class Scale {
 public:
  explicit Scale(const T& scale) : scale_(scale) {}

  HOSTDEVICE T operator()(const T& a) const { return a * scale_; }

 private:
  T scale_;
};

template <typename T>
class Multiply {
 public:
  HOSTDEVICE T operator()(const T& a, const T& b) const { return a * b; }
};

TEST(Transform, CPUUnary) {
  using namespace paddle::platform;
Y
Yu Yang 已提交
40
  CPUDeviceContext ctx;
Y
Yu Yang 已提交
41
  float buf[4] = {0.1, 0.2, 0.3, 0.4};
Q
QI JUN 已提交
42
  Transform<paddle::platform::CPUDeviceContext> trans;
43
  trans(ctx, buf, buf + 4, buf, Scale<float>(10));
Y
Yu Yang 已提交
44 45 46 47 48 49 50 51 52
  for (int i = 0; i < 4; ++i) {
    ASSERT_NEAR(buf[i], static_cast<float>(i + 1), 1e-5);
  }
}

TEST(Transform, GPUUnary) {
  using namespace paddle::platform;
  using namespace paddle::memory;
  GPUPlace gpu0(0);
Y
Yu Yang 已提交
53
  CUDADeviceContext ctx(gpu0);
Y
Yu Yang 已提交
54 55 56
  float cpu_buf[4] = {0.1, 0.2, 0.3, 0.4};
  float* gpu_buf = static_cast<float*>(Alloc(gpu0, sizeof(float) * 4));
  Copy(gpu0, gpu_buf, CPUPlace(), cpu_buf, sizeof(cpu_buf));
Q
QI JUN 已提交
57
  Transform<paddle::platform::CUDADeviceContext> trans;
58
  trans(ctx, gpu_buf, gpu_buf + 4, gpu_buf, Scale<float>(10));
Y
Yu Yang 已提交
59
  ctx.Wait();
Y
Yu Yang 已提交
60 61 62 63 64 65 66 67 68 69 70
  Copy(CPUPlace(), cpu_buf, gpu0, gpu_buf, sizeof(cpu_buf));
  Free(gpu0, gpu_buf);
  for (int i = 0; i < 4; ++i) {
    ASSERT_NEAR(cpu_buf[i], static_cast<float>(i + 1), 1e-5);
  }
}

TEST(Transform, CPUBinary) {
  using namespace paddle::platform;
  using namespace paddle::memory;
  int buf[4] = {1, 2, 3, 4};
Q
QI JUN 已提交
71
  Transform<paddle::platform::CPUDeviceContext> trans;
72 73
  CPUDeviceContext ctx;
  trans(ctx, buf, buf + 4, buf, buf, Multiply<int>());
Y
Yu Yang 已提交
74 75 76 77 78 79 80 81 82 83
  for (int i = 0; i < 4; ++i) {
    ASSERT_EQ((i + 1) * (i + 1), buf[i]);
  }
}

TEST(Transform, GPUBinary) {
  using namespace paddle::platform;
  using namespace paddle::memory;
  int buf[4] = {1, 2, 3, 4};
  GPUPlace gpu0(0);
Y
Yu Yang 已提交
84
  CUDADeviceContext ctx(gpu0);
Y
Yu Yang 已提交
85 86
  int* gpu_buf = static_cast<int*>(Alloc(gpu0, sizeof(buf)));
  Copy(gpu0, gpu_buf, CPUPlace(), buf, sizeof(buf));
Q
QI JUN 已提交
87
  Transform<paddle::platform::CUDADeviceContext> trans;
88
  trans(ctx, gpu_buf, gpu_buf + 4, gpu_buf, gpu_buf, Multiply<int>());
Y
Yu Yang 已提交
89
  ctx.Wait();
Y
Yu Yang 已提交
90 91 92 93 94
  Copy(CPUPlace(), buf, gpu0, gpu_buf, sizeof(buf));
  Free(gpu0, gpu_buf);
  for (int i = 0; i < 4; ++i) {
    ASSERT_EQ((i + 1) * (i + 1), buf[i]);
  }
95
}