matrix.h 4.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. */

#ifndef __PADDLE_CAPI_MATRIX_H__
#define __PADDLE_CAPI_MATRIX_H__

Y
Yu Yang 已提交
18
#include <stdbool.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 40 41 42
#include <stdint.h>
#include "config.h"
#include "error.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
 * Matrix functions. Return will be a paddle_error type.
 */
typedef void* paddle_matrix;

/**
 * @brief paddle_matrix_create Create a dense matrix
 * @param height matrix height.
 * @param width matrix width
 * @param useGpu use GPU of not
 * @return Matrix handler
 */
PD_API paddle_matrix paddle_matrix_create(uint64_t height,
                                          uint64_t width,
                                          bool useGpu);

Y
Yu Yang 已提交
43 44 45 46 47 48 49 50
/**
 * @brief paddle_matrix_create_sparse Create a sparse matrix.
 * @param height the matrix height.
 * @param width the matrix width.
 * @param nnz the number of non-zero elements.
 * @param isBinary is binary (either 1 or 0 in matrix) or not.
 * @param useGpu is using GPU or not.
 * @return paddle_matrix.
51
 * @note Mobile inference does not support this interface.
Y
Yu Yang 已提交
52 53 54 55
 */
PD_API paddle_matrix paddle_matrix_create_sparse(
    uint64_t height, uint64_t width, uint64_t nnz, bool isBinary, bool useGpu);

Y
Yu Yang 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
/**
 * @brief paddle_matrix_destroy Destroy a matrix.
 * @param mat
 * @return paddle_error
 */
PD_API paddle_error paddle_matrix_destroy(paddle_matrix mat);

/**
 * @brief paddle_matrix_set_row Set a row to matrix.
 * @param mat Target Matrix
 * @param rowID Index of row
 * @param rowArray Row data.
 * @return paddle_error
 */
PD_API paddle_error paddle_matrix_set_row(paddle_matrix mat,
                                          uint64_t rowID,
Y
Yu Yang 已提交
72
                                          paddle_real* rowArray);
Y
Yu Yang 已提交
73

74 75 76 77 78 79 80 81
/**
 * @brief paddle_matrix_set_value Set value to matrix.
 * @param mat Target Matrix
 * @param value Row data.
 * @return paddle_error
 * @note  value should contain enough element of data to init the mat
 */
PD_API paddle_error paddle_matrix_set_value(paddle_matrix mat,
82
                                            paddle_real* value);
83

Y
Yu Yang 已提交
84 85 86 87 88 89 90 91 92
/**
 * @brief PDMatGetRow Get raw row buffer from matrix
 * @param [in] mat Target matrix
 * @param [in] rowID Index of row.
 * @param [out] rawRowBuffer Row Buffer
 * @return paddle_error
 */
PD_API paddle_error paddle_matrix_get_row(paddle_matrix mat,
                                          uint64_t rowID,
Y
Yu Yang 已提交
93
                                          paddle_real** rawRowBuffer);
Y
Yu Yang 已提交
94

95
/**
96
 * @brief copy data from the matrix
97
 * @param [in] mat Target matrix
98
 * @param [out] result pointer to store the matrix data
99 100 101 102
 * @return paddle_error
 * @note the space of the result should allocated before invoke this API
 */
PD_API paddle_error paddle_matrix_get_value(paddle_matrix mat,
103
                                            paddle_real* result);
Y
Yu Yang 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
/**
 * @brief PDMatCreateNone Create None Matrix
 * @return
 */
PD_API paddle_matrix paddle_matrix_create_none();

/**
 * @brief PDMatGetShape get the shape of matrix
 * @param mat target matrix
 * @param height The height of matrix
 * @param width The width of matrix
 * @return paddle_error
 */
PD_API paddle_error paddle_matrix_get_shape(paddle_matrix mat,
                                            uint64_t* height,
                                            uint64_t* width);

Y
Yu Yang 已提交
121 122 123 124 125 126 127 128 129 130 131 132
/**
 * @brief paddle_matrix_sparse_copy_from Copy from a CSR format matrix
 * @param [out] mat output matrix
 * @param [in] rowArray row array. The array slices in column array.
 * @param [in] rowSize length of row array.
 * @param [in] colArray the column array. It means the non-zero element indices
 * in each row.
 * @param [in] colSize length of column array.
 * @param [in] valueArray the value array. It means the non-zero elemnt values.
 * NULL if the matrix is binary.
 * @param [in] valueSize length of value array. Zero if the matrix is binary.
 * @return paddle_error
133
 * @note Mobile inference does not support this interface.
Y
Yu Yang 已提交
134 135 136 137 138 139 140 141 142
 */
PD_API paddle_error paddle_matrix_sparse_copy_from(paddle_matrix mat,
                                                   int* rowArray,
                                                   uint64_t rowSize,
                                                   int* colArray,
                                                   uint64_t colSize,
                                                   float* valueArray,
                                                   uint64_t valueSize);

Y
Yu Yang 已提交
143 144 145 146
#ifdef __cplusplus
}
#endif
#endif