FunctionTest.cpp 5.1 KB
Newer Older
H
hedaoyuan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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 "Function.h"
#include <gtest/gtest.h>
17
#include "paddle/math/SparseMatrix.h"
H
hedaoyuan 已提交
18 19 20 21 22 23 24 25 26

namespace paddle {

template <DeviceType DType>
void FunctionApi(typename Tensor<real, DType>::Matrix& output,
                 const typename Tensor<real, DType>::Matrix& input);

template <>
void FunctionApi<DEVICE_TYPE_CPU>(CpuMatrix& output, const CpuMatrix& input) {
27 28
  EXPECT_EQ(output.getHeight(), 100U);
  EXPECT_EQ(output.getWidth(), 200U);
H
hedaoyuan 已提交
29 30 31 32
}

template <>
void FunctionApi<DEVICE_TYPE_GPU>(GpuMatrix& output, const GpuMatrix& input) {
33 34
  EXPECT_EQ(output.getHeight(), 10U);
  EXPECT_EQ(output.getWidth(), 20U);
H
hedaoyuan 已提交
35 36 37 38
}

template <DeviceType DType>
void Function(const BufferArgs& arguments) {
39
  const auto input = arguments[0].matrix<DType>();
H
hedaoyuan 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
  auto output = arguments[1].matrix<DType>();
  FunctionApi<DType>(output, input);
}

TEST(Function, BufferArgs) {
  CpuMatrix cpuInput = CpuMatrix(100, 200);
  CpuMatrix cpuOutput = CpuMatrix(100, 200);
  BufferArgs cpuArgments;
  cpuArgments.addArg(cpuInput);
  cpuArgments.addArg(cpuOutput);
  Function<DEVICE_TYPE_CPU>(cpuArgments);

  GpuMatrix gpuInput = GpuMatrix(10, 20);
  GpuMatrix gpuOutput = GpuMatrix(10, 20);
  BufferArgs gpuArgments;
  gpuArgments.addArg(gpuInput);
  gpuArgments.addArg(gpuOutput);
  Function<DEVICE_TYPE_GPU>(gpuArgments);
}

H
hedaoyuan 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
/**
 * Some tests case are used to check the consistency between the BufferArg type
 * argument received by Function and the original type argument.
 *
 * Use Case:
 *  TEST() {
 *    Matrix matrix(...);
 *    CheckBufferArg lambda = [=](const BufferArg& arg) {
 *      // check matrix and arg are equivalent
 *      EXPECT_EQ(matrix, arg);
 *    }
 *
 *   BufferArgs argments{matrix...};
 *   std::vector<CheckBufferArg> checkFunc{lambda...};
 *   testBufferArgs(argments, checkFunc);
 *  }
 */
typedef std::function<void(const BufferArg&)> CheckBufferArg;

void testBufferArgs(const BufferArgs& inputs,
                    const std::vector<CheckBufferArg>& check) {
  EXPECT_EQ(inputs.size(), check.size());
  for (size_t i = 0; i < inputs.size(); i++) {
    check[i](inputs[i]);
  }
}

87
void testBufferArgs(const BufferArgs& inputs, const CheckBufferArg& check) {
88
  EXPECT_EQ(inputs.size(), 1U);
89 90 91
  check(inputs[0]);
}

H
hedaoyuan 已提交
92
TEST(Arguments, Matrix) {
93
  MatrixPtr matrix = Matrix::create(100, 200);
H
hedaoyuan 已提交
94
  CheckBufferArg check = [=](const BufferArg& arg) {
95
    EXPECT_EQ(arg.shape().ndims(), 2U);
96 97
    EXPECT_EQ(arg.shape()[0], 100U);
    EXPECT_EQ(arg.shape()[1], 200U);
H
hedaoyuan 已提交
98 99 100 101 102 103
    EXPECT_EQ(arg.data(), matrix->getData());

    EXPECT_EQ(arg.matrix<DEVICE_TYPE_CPU>().getHeight(), matrix->getHeight());
    EXPECT_EQ(arg.matrix<DEVICE_TYPE_CPU>().getWidth(), matrix->getWidth());
    EXPECT_EQ(arg.matrix<DEVICE_TYPE_CPU>().getData(), matrix->getData());
  };
104 105 106

  BufferArgs argments;
  argments.addArg(*matrix);
H
hedaoyuan 已提交
107 108 109 110 111 112 113 114
  std::vector<CheckBufferArg> checkFunc;
  checkFunc.push_back(check);
  testBufferArgs(argments, checkFunc);
}

TEST(Arguments, Vector) {
  VectorPtr vector = Vector::create(100, false);
  CheckBufferArg check = [=](const BufferArg& arg) {
115 116
    EXPECT_EQ(arg.shape().ndims(), 1U);
    EXPECT_EQ(arg.shape()[0], 100U);
H
hedaoyuan 已提交
117
    EXPECT_EQ(arg.data(), vector->getData());
118

H
hedaoyuan 已提交
119
    CpuVector inVector = arg.vector<real, DEVICE_TYPE_CPU>();
120 121
    EXPECT_EQ(inVector.getSize(), vector->getSize());
    EXPECT_EQ(inVector.getData(), vector->getData());
H
hedaoyuan 已提交
122
  };
123

H
hedaoyuan 已提交
124 125 126 127 128 129 130 131 132 133
  BufferArgs argments;
  argments.addArg(*vector);
  std::vector<CheckBufferArg> checkFunc;
  checkFunc.push_back(check);
  testBufferArgs(argments, checkFunc);
}

TEST(Arguments, CpuSparseMatrix) {
  CpuSparseMatrix sparse(200, 300, 50);
  CheckBufferArg check = [=](const BufferArg& arg) {
134 135 136
    EXPECT_EQ(arg.shape().ndims(), 2U);
    EXPECT_EQ(arg.shape()[0], 200U);
    EXPECT_EQ(arg.shape()[1], 300U);
H
hedaoyuan 已提交
137 138 139 140 141 142
    EXPECT_EQ(arg.data(), sparse.getData());
    // CHECK_EQ(arg.sparse().nnz(), 50);
    // CHECK_EQ(arg.sparse().dataFormat(), SPARSE_CSR_FORMAT);
    // CHECK_EQ(arg.sparse().dataType(), SPARSE_FLOAT_VALUE);
    EXPECT_EQ(arg.sparse().getRowBuf(), sparse.getRows());
    EXPECT_EQ(arg.sparse().getColBuf(), sparse.getCols());
143 144
  };

H
hedaoyuan 已提交
145 146 147 148 149
  BufferArgs argments;
  argments.addArg(sparse);
  std::vector<CheckBufferArg> checkFunc;
  checkFunc.push_back(check);
  testBufferArgs(argments, checkFunc);
150 151
}

152 153 154
TEST(Arguments, BufferArg) {
  BufferArg arg(nullptr, VALUE_TYPE_FLOAT, {1, 2, 3});
  CheckBufferArg check = [=](const BufferArg& arg) {
155 156 157 158
    EXPECT_EQ(arg.shape().ndims(), 3U);
    EXPECT_EQ(arg.shape()[0], 1U);
    EXPECT_EQ(arg.shape()[1], 2U);
    EXPECT_EQ(arg.shape()[2], 3U);
159 160 161 162 163 164 165
  };

  BufferArgs argments;
  argments.addArg(arg);
  testBufferArgs(argments, check);
}

H
hedaoyuan 已提交
166
}  // namespace paddle