parent
08113b2019
commit
b5288289e1
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,15 @@
|
||||
#ifndef __PADDLE_CAPI_ERROR_H__
|
||||
#define __PADDLE_CAPI_ERROR_H__
|
||||
|
||||
/**
|
||||
* Error Type for Paddle API.
|
||||
*/
|
||||
typedef enum {
|
||||
kPD_NO_ERROR = 0,
|
||||
kPD_NULLPTR = 1,
|
||||
kPD_OUT_OF_RANGE = 2,
|
||||
kPD_PROTOBUF_ERROR = 3,
|
||||
kPD_UNDEFINED_ERROR = -1,
|
||||
} paddle_error;
|
||||
|
||||
#endif
|
@ -0,0 +1,91 @@
|
||||
/* 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__
|
||||
|
||||
#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);
|
||||
|
||||
/**
|
||||
* @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,
|
||||
pd_real* rowArray);
|
||||
|
||||
/**
|
||||
* @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,
|
||||
pd_real** rawRowBuffer);
|
||||
|
||||
/**
|
||||
* @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);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
@ -0,0 +1,89 @@
|
||||
/* 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_VECTOR_H__
|
||||
#define __PADDLE_CAPI_VECTOR_H__
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include "config.h"
|
||||
#include "error.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Int Vector Functions. Return will be a paddle_error type.
|
||||
*/
|
||||
typedef void* paddle_ivector;
|
||||
|
||||
/**
|
||||
* @brief Create an none int vector. It just a handler and store nothing. Used
|
||||
* to get output from other api.
|
||||
* @return None int vector.
|
||||
*/
|
||||
PD_API paddle_ivector paddle_ivector_create_none();
|
||||
|
||||
/**
|
||||
* @brief paddle_ivector_create create a paddle int vector
|
||||
* @param array: input array.
|
||||
* @param size: input array size.
|
||||
* @param copy: memory copy or just use same memory. True if copy.
|
||||
* @param useGPU: True if use GPU
|
||||
* @return paddle_error
|
||||
*/
|
||||
PD_API paddle_ivector paddle_ivector_create(int* array,
|
||||
uint64_t size,
|
||||
bool copy,
|
||||
bool useGPU);
|
||||
|
||||
/**
|
||||
* @brief paddle_ivector_destroy destory an int vector.
|
||||
* @param ivec vector to be destoried.
|
||||
* @return paddle_error
|
||||
*/
|
||||
PD_API paddle_error paddle_ivector_destroy(paddle_ivector ivec);
|
||||
|
||||
/**
|
||||
* @brief paddle_ivector_get get raw buffer stored inside this int vector. It
|
||||
* could be GPU memory if this int vector is stored in GPU.
|
||||
* @param [in] ivec int vector
|
||||
* @param [out] buffer the return buffer pointer.
|
||||
* @return paddle_error
|
||||
*/
|
||||
PD_API paddle_error paddle_ivector_get(paddle_ivector ivec, int** buffer);
|
||||
|
||||
/**
|
||||
* @brief paddle_ivector_resize resize the int vector.
|
||||
* @param [in] ivec: int vector
|
||||
* @param [in] size: size to change
|
||||
* @return paddle_error
|
||||
*/
|
||||
PD_API paddle_error paddle_ivector_resize(paddle_ivector ivec, uint64_t size);
|
||||
|
||||
/**
|
||||
* @brief paddle_ivector_get_size get the size of int vector.
|
||||
* @param [in] ivec: int vector
|
||||
* @param [out] size: return size of this int vector.
|
||||
* @return paddle_error
|
||||
*/
|
||||
PD_API paddle_error paddle_ivector_get_size(paddle_ivector ivec,
|
||||
uint64_t* size);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Reference in new issue