PaddleCAPI.h 2.2 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9
#ifndef __PADDLE_PADDLE_CAPI_PADDLECAPI_H_INCLUDED__
#define __PADDLE_PADDLE_CAPI_PADDLECAPI_H_INCLUDED__
#include <stdbool.h>
#include <stdint.h>
#include "config.h"
#ifdef __cplusplus
extern "C" {
#endif

Y
Yu Yang 已提交
10
typedef enum {
Y
Yu Yang 已提交
11 12 13 14 15
  kPD_NO_ERROR = 0,
  kPD_NULLPTR = 1,
  kPD_OUT_OF_RANGE = 2,
  kPD_PROTOBUF_ERROR = 3,
  kPD_UNDEFINED_ERROR = -1,
Y
Yu Yang 已提交
16
} PD_Error;
Y
Yu Yang 已提交
17

Y
Yu Yang 已提交
18
typedef void* PD_IVector;
Y
Yu Yang 已提交
19

Y
Yu Yang 已提交
20
int PDIVecCreateNone(PD_IVector* ivec);
Y
Yu Yang 已提交
21

Y
Yu Yang 已提交
22
int PDIVecDestroy(PD_IVector ivec);
Y
Yu Yang 已提交
23

Y
Yu Yang 已提交
24
int PDIVectorGet(PD_IVector ivec, int** buffer);
Y
Yu Yang 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

typedef void* PD_Matrix;

int PDMatCreate(PD_Matrix* mat, uint64_t height, uint64_t width, bool useGpu);

int PDMatDestroy(PD_Matrix mat);

int PDMatCopyToRow(PD_Matrix mat, uint64_t rowID, pd_real* rowArray);

int PDMatGetRow(PD_Matrix mat, uint64_t rowID, pd_real** rawRowBuffer);

int PDMatCreateNone(PD_Matrix* mat);

int PDMatGetShape(PD_Matrix mat, uint64_t* height, uint64_t* width);

typedef void* PD_Arguments;

int PDArgsCreateNone(PD_Arguments* args);

int PDArgsDestroy(PD_Arguments args);

int PDArgsGetSize(PD_Arguments args, uint64_t* size);

int PDArgsResize(PD_Arguments args, uint64_t size);

int PDArgsSetValue(PD_Arguments args, uint64_t ID, PD_Matrix mat);

int PDArgsGetValue(PD_Arguments args, uint64_t ID, PD_Matrix mat);

Y
Yu Yang 已提交
54 55
int PDArgsGetIds(PD_Arguments args, uint64_t ID, PD_IVector ids);

Y
Yu Yang 已提交
56 57 58 59 60 61
typedef void* PD_GradiemtMachine;

int PDGradientMachineCreateForPredict(PD_GradiemtMachine* machine,
                                      void* modelConfigProtobuf,
                                      int size);

Y
Yu Yang 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74
int PDGradientMachineLoadParameterFromDisk(PD_GradiemtMachine machine,
                                           const char* path);

int PDGradientMachineForward(PD_GradiemtMachine machine,
                             PD_Arguments inArgs,
                             PD_Arguments outArgs,
                             bool isTrain);

int PDGradientMachineCreateSharedParam(PD_GradiemtMachine origin,
                                       void* modelConfigProtobuf,
                                       int size,
                                       PD_GradiemtMachine* slave);

Y
Yu Yang 已提交
75 76 77 78
int PDGradientMachineDestroy(PD_GradiemtMachine machine);

int PDInit(int argc, char** argv);

Y
Yu Yang 已提交
79 80 81 82
#ifdef __cplusplus
}
#endif
#endif