PaddleCAPI.h 3.9 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
#include <stdbool.h>
#include <stdint.h>
#include "config.h"
Y
Yu Yang 已提交
20 21 22 23 24

// Since we only support linux and macos in compile, always use clang or
// gcc 4.8+. DLL_IMPORT/DLL_EXPORT is as simple as below.
#define PD_API __attribute__((visibility("default")))

Y
Yu Yang 已提交
25 26 27 28
#ifdef __cplusplus
extern "C" {
#endif

Y
Yu Yang 已提交
29 30 31 32 33 34 35 36 37 38
/**
 * 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 已提交
39
typedef enum {
Y
Yu Yang 已提交
40 41 42 43 44
  kPD_NO_ERROR = 0,
  kPD_NULLPTR = 1,
  kPD_OUT_OF_RANGE = 2,
  kPD_PROTOBUF_ERROR = 3,
  kPD_UNDEFINED_ERROR = -1,
Y
Yu Yang 已提交
45
} PD_Error;
Y
Yu Yang 已提交
46

Y
Yu Yang 已提交
47 48 49
/**
 * Int Vector Functions. Return will be a PD_Error type.
 */
Y
Yu Yang 已提交
50
typedef void* PD_IVector;
Y
Yu Yang 已提交
51

Y
Yu Yang 已提交
52
PD_API int PDIVecCreateNone(PD_IVector* ivec);
Y
Yu Yang 已提交
53

Y
Yu Yang 已提交
54
PD_API int PDIVecDestroy(PD_IVector ivec);
Y
Yu Yang 已提交
55

Y
Yu Yang 已提交
56
PD_API int PDIVectorGet(PD_IVector ivec, int** buffer);
Y
Yu Yang 已提交
57

Y
Yu Yang 已提交
58 59 60 61
PD_API int PDIVectorResize(PD_IVector ivec, uint64_t size);

PD_API int PDIVectorGetSize(PD_IVector ivec, uint64_t* size);

Y
Yu Yang 已提交
62 63 64
/**
 * Matrix functions. Return will be a PD_Error type.
 */
Y
Yu Yang 已提交
65 66
typedef void* PD_Matrix;

Y
Yu Yang 已提交
67 68 69 70
PD_API int PDMatCreate(PD_Matrix* mat,
                       uint64_t height,
                       uint64_t width,
                       bool useGpu);
Y
Yu Yang 已提交
71

Y
Yu Yang 已提交
72
PD_API int PDMatDestroy(PD_Matrix mat);
Y
Yu Yang 已提交
73

Y
Yu Yang 已提交
74
PD_API int PDMatCopyToRow(PD_Matrix mat, uint64_t rowID, pd_real* rowArray);
Y
Yu Yang 已提交
75

Y
Yu Yang 已提交
76
PD_API int PDMatGetRow(PD_Matrix mat, uint64_t rowID, pd_real** rawRowBuffer);
Y
Yu Yang 已提交
77

Y
Yu Yang 已提交
78
PD_API int PDMatCreateNone(PD_Matrix* mat);
Y
Yu Yang 已提交
79

Y
Yu Yang 已提交
80
PD_API int PDMatGetShape(PD_Matrix mat, uint64_t* height, uint64_t* width);
Y
Yu Yang 已提交
81

Y
Yu Yang 已提交
82 83 84 85
/**
 * Arguments functions. Each argument means layer output. Arguments means a
 * array of arguemnt.
 */
Y
Yu Yang 已提交
86 87
typedef void* PD_Arguments;

Y
Yu Yang 已提交
88
PD_API int PDArgsCreateNone(PD_Arguments* args);
Y
Yu Yang 已提交
89

Y
Yu Yang 已提交
90
PD_API int PDArgsDestroy(PD_Arguments args);
Y
Yu Yang 已提交
91

Y
Yu Yang 已提交
92
PD_API int PDArgsGetSize(PD_Arguments args, uint64_t* size);
Y
Yu Yang 已提交
93

Y
Yu Yang 已提交
94
PD_API int PDArgsResize(PD_Arguments args, uint64_t size);
Y
Yu Yang 已提交
95

Y
Yu Yang 已提交
96
PD_API int PDArgsSetValue(PD_Arguments args, uint64_t ID, PD_Matrix mat);
Y
Yu Yang 已提交
97

Y
Yu Yang 已提交
98
PD_API int PDArgsGetValue(PD_Arguments args, uint64_t ID, PD_Matrix mat);
Y
Yu Yang 已提交
99

Y
Yu Yang 已提交
100
PD_API int PDArgsGetIds(PD_Arguments args, uint64_t ID, PD_IVector ids);
Y
Yu Yang 已提交
101

Y
Yu Yang 已提交
102 103 104
/**
 * @brief GradientMachine means a neural network.
 */
Y
Yu Yang 已提交
105
typedef void* PD_GradientMachine;
Y
Yu Yang 已提交
106

Y
Yu Yang 已提交
107 108 109
PD_API int PDGradientMachineCreateForPredict(PD_GradientMachine* machine,
                                             void* modelConfigProtobuf,
                                             int size);
Y
Yu Yang 已提交
110

Y
Yu Yang 已提交
111 112
PD_API int PDGradientMachineLoadParameterFromDisk(PD_GradientMachine machine,
                                                  const char* path);
Y
Yu Yang 已提交
113

Y
Yu Yang 已提交
114 115 116 117
PD_API int PDGradientMachineForward(PD_GradientMachine machine,
                                    PD_Arguments inArgs,
                                    PD_Arguments outArgs,
                                    bool isTrain);
Y
Yu Yang 已提交
118

Y
Yu Yang 已提交
119 120 121 122
PD_API int PDGradientMachineCreateSharedParam(PD_GradientMachine origin,
                                              void* modelConfigProtobuf,
                                              int size,
                                              PD_GradientMachine* slave);
Y
Yu Yang 已提交
123

Y
Yu Yang 已提交
124
PD_API int PDGradientMachineDestroy(PD_GradientMachine machine);
Y
Yu Yang 已提交
125

Y
Yu Yang 已提交
126 127 128
/**
 * Initialize Paddle.
 */
Y
Yu Yang 已提交
129
PD_API int PDInit(int argc, char** argv);
Y
Yu Yang 已提交
130

Y
Yu Yang 已提交
131 132 133
#ifdef __cplusplus
}
#endif
Y
Yu Yang 已提交
134 135

#endif  // PADDLECAPI_H_