matrix.h 4.2 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 82

/**
 * @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 已提交
83
                                          paddle_real** rawRowBuffer);
Y
Yu Yang 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

/**
 * @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 已提交
102 103 104 105 106 107 108 109 110 111 112 113
/**
 * @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
114
 * @note Mobile inference does not support this interface.
Y
Yu Yang 已提交
115 116 117 118 119 120 121 122 123
 */
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 已提交
124 125 126 127
#ifdef __cplusplus
}
#endif
#endif