Matrix.cpp 2.6 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* 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. */

Y
Yu Yang 已提交
15 16 17 18 19 20
#include "PaddleCAPI.h"
#include "PaddleCAPIPrivate.h"
#include "hl_cuda.h"

#define cast(v) paddle::capi::cast<paddle::capi::CMatrix>(v)
extern "C" {
Y
Yu Yang 已提交
21 22 23
paddle_matrix paddle_matrix_create(uint64_t height,
                                   uint64_t width,
                                   bool useGpu) {
Y
Yu Yang 已提交
24 25
  auto ptr = new paddle::capi::CMatrix();
  ptr->mat = paddle::Matrix::create(height, width, false, useGpu);
Y
Yu Yang 已提交
26
  return ptr;
Y
Yu Yang 已提交
27 28
}

Y
Yu Yang 已提交
29 30 31
paddle_matrix paddle_matrix_create_none() {
  return new paddle::capi::CMatrix();
}
Y
Yu Yang 已提交
32

Y
Yu Yang 已提交
33
paddle_error paddle_matrix_destroy(paddle_matrix mat) {
Y
Yu Yang 已提交
34
  if (mat == nullptr) return kPD_NULLPTR;
Y
Yu Yang 已提交
35 36
  auto ptr = cast(mat);
  delete ptr;
Y
Yu Yang 已提交
37
  return kPD_NO_ERROR;
Y
Yu Yang 已提交
38 39
}

Y
Yu Yang 已提交
40 41 42
paddle_error paddle_matrix_set_row(paddle_matrix mat,
                                   uint64_t rowID,
                                   pd_real* rowArray) {
Y
Yu Yang 已提交
43
  if (mat == nullptr) return kPD_NULLPTR;
Y
Yu Yang 已提交
44
  auto ptr = cast(mat);
Y
Yu Yang 已提交
45 46
  if (ptr->mat == nullptr) return kPD_NULLPTR;
  if (rowID >= ptr->mat->getHeight()) return kPD_OUT_OF_RANGE;
Y
Yu Yang 已提交
47 48 49 50 51 52 53
  paddle::real* buf = ptr->mat->getRowBuf(rowID);
  size_t width = ptr->mat->getWidth();
#ifndef PADDLE_ONLY_CPU
  hl_memcpy(buf, rowArray, sizeof(paddle::real) * width);
#else
  std::copy(rowArray, rowArray + width, buf);
#endif
Y
Yu Yang 已提交
54
  return kPD_NO_ERROR;
Y
Yu Yang 已提交
55 56
}

Y
Yu Yang 已提交
57 58 59
paddle_error paddle_matrix_get_row(paddle_matrix mat,
                                   uint64_t rowID,
                                   pd_real** rawRowBuffer) {
Y
Yu Yang 已提交
60
  if (mat == nullptr) return kPD_NULLPTR;
Y
Yu Yang 已提交
61
  auto ptr = cast(mat);
Y
Yu Yang 已提交
62 63
  if (ptr->mat == nullptr) return kPD_NULLPTR;
  if (rowID >= ptr->mat->getHeight()) return kPD_OUT_OF_RANGE;
Y
Yu Yang 已提交
64
  *rawRowBuffer = ptr->mat->getRowBuf(rowID);
Y
Yu Yang 已提交
65
  return kPD_NO_ERROR;
Y
Yu Yang 已提交
66 67
}

Y
Yu Yang 已提交
68 69 70
paddle_error paddle_matrix_get_shape(paddle_matrix mat,
                                     uint64_t* height,
                                     uint64_t* width) {
Y
Yu Yang 已提交
71
  if (mat == nullptr) return kPD_NULLPTR;
Y
Yu Yang 已提交
72 73 74 75 76 77
  if (height != nullptr) {
    *height = cast(mat)->mat->getHeight();
  }
  if (width != nullptr) {
    *width = cast(mat)->mat->getWidth();
  }
Y
Yu Yang 已提交
78
  return kPD_NO_ERROR;
Y
Yu Yang 已提交
79 80
}
}