PaddleCAPI.h 3.3 KB
Newer Older
Y
Yu Yang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* 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 PADDLECAPI_H_
#define PADDLECAPI_H_
Y
Yu Yang 已提交
17 18 19 20 21 22 23
#include <stdbool.h>
#include <stdint.h>
#include "config.h"
#ifdef __cplusplus
extern "C" {
#endif

Y
Yu Yang 已提交
24 25 26 27 28 29 30 31 32 33
/**
 * Paddle C API. It will replace SWIG as Multiple Language API for model
 * training & inference. Currently it is only used in model infernece.
 *
 * NOTE: This is an experimental API, it could be changed.
 */

/**
 * Error Type for Paddle API.
 */
Y
Yu Yang 已提交
34
typedef enum {
Y
Yu Yang 已提交
35 36 37 38 39
  kPD_NO_ERROR = 0,
  kPD_NULLPTR = 1,
  kPD_OUT_OF_RANGE = 2,
  kPD_PROTOBUF_ERROR = 3,
  kPD_UNDEFINED_ERROR = -1,
Y
Yu Yang 已提交
40
} PD_Error;
Y
Yu Yang 已提交
41

Y
Yu Yang 已提交
42 43 44
/**
 * Int Vector Functions. Return will be a PD_Error type.
 */
Y
Yu Yang 已提交
45
typedef void* PD_IVector;
Y
Yu Yang 已提交
46

Y
Yu Yang 已提交
47
int PDIVecCreateNone(PD_IVector* ivec);
Y
Yu Yang 已提交
48

Y
Yu Yang 已提交
49
int PDIVecDestroy(PD_IVector ivec);
Y
Yu Yang 已提交
50

Y
Yu Yang 已提交
51
int PDIVectorGet(PD_IVector ivec, int** buffer);
Y
Yu Yang 已提交
52

Y
Yu Yang 已提交
53 54 55
/**
 * Matrix functions. Return will be a PD_Error type.
 */
Y
Yu Yang 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69
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);

Y
Yu Yang 已提交
70 71 72 73
/**
 * Arguments functions. Each argument means layer output. Arguments means a
 * array of arguemnt.
 */
Y
Yu Yang 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87
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 已提交
88 89
int PDArgsGetIds(PD_Arguments args, uint64_t ID, PD_IVector ids);

Y
Yu Yang 已提交
90 91 92
/**
 * @brief GradientMachine means a neural network.
 */
Y
Yu Yang 已提交
93
typedef void* PD_GradientMachine;
Y
Yu Yang 已提交
94

Y
Yu Yang 已提交
95
int PDGradientMachineCreateForPredict(PD_GradientMachine* machine,
Y
Yu Yang 已提交
96 97 98
                                      void* modelConfigProtobuf,
                                      int size);

Y
Yu Yang 已提交
99
int PDGradientMachineLoadParameterFromDisk(PD_GradientMachine machine,
Y
Yu Yang 已提交
100 101
                                           const char* path);

Y
Yu Yang 已提交
102
int PDGradientMachineForward(PD_GradientMachine machine,
Y
Yu Yang 已提交
103 104 105 106
                             PD_Arguments inArgs,
                             PD_Arguments outArgs,
                             bool isTrain);

Y
Yu Yang 已提交
107
int PDGradientMachineCreateSharedParam(PD_GradientMachine origin,
Y
Yu Yang 已提交
108 109
                                       void* modelConfigProtobuf,
                                       int size,
Y
Yu Yang 已提交
110
                                       PD_GradientMachine* slave);
Y
Yu Yang 已提交
111

Y
Yu Yang 已提交
112
int PDGradientMachineDestroy(PD_GradientMachine machine);
Y
Yu Yang 已提交
113

Y
Yu Yang 已提交
114 115 116
/**
 * Initialize Paddle.
 */
Y
Yu Yang 已提交
117 118
int PDInit(int argc, char** argv);

Y
Yu Yang 已提交
119 120 121
#ifdef __cplusplus
}
#endif
Y
Yu Yang 已提交
122 123

#endif  // PADDLECAPI_H_