mxnet
c_api.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
19 
25 #ifndef MXNET_C_API_H_
26 #define MXNET_C_API_H_
27 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif // __cplusplus
32 
34 #ifdef __cplusplus
35 #define DEFAULT(x) = x
36 #else
37 #define DEFAULT(x)
38 #endif // __cplusplus
39 
40 #include <stdint.h>
41 
42 #include <stdint.h>
43 #include <stddef.h>
44 #include <stdbool.h>
45 
47 #ifdef _WIN32
48 #ifdef MXNET_EXPORTS
49 #define MXNET_DLL __declspec(dllexport)
50 #else
51 #define MXNET_DLL __declspec(dllimport)
52 #endif
53 #else
54 #define MXNET_DLL
55 #endif
56 
58 typedef unsigned int mx_uint;
60 typedef float mx_float;
61 // all the handles are simply void *
62 // will be casted internally to specific pointers types
63 // these typedefs are mainly used for readablity reasons
65 typedef void *NDArrayHandle;
67 typedef const void *FunctionHandle;
69 typedef void *AtomicSymbolCreator;
71 typedef void *CachedOpHandle;
73 typedef void *SymbolHandle;
75 typedef void *AtomicSymbolHandle;
77 typedef void *ExecutorHandle;
79 typedef void *DataIterCreator;
81 typedef void *DataIterHandle;
83 typedef void *KVStoreHandle;
85 typedef void *RecordIOHandle;
87 typedef void *RtcHandle;
89 typedef void *CudaModuleHandle;
91 typedef void *CudaKernelHandle;
92 
93 typedef void (*ExecutorMonitorCallback)(const char*,
95  void *);
96 
97 struct NativeOpInfo {
98  void (*forward)(int, float**, int*, unsigned**, int*, void*);
99  void (*backward)(int, float**, int*, unsigned**, int*, void*);
100  void (*infer_shape)(int, int*, unsigned**, void*);
101  void (*list_outputs)(char***, void*);
102  void (*list_arguments)(char***, void*);
103  // all functions also pass a payload void* pointer
104  void* p_forward;
105  void* p_backward;
109 };
110 
112  bool (*forward)(int, void**, int*, void*);
113  bool (*backward)(int, void**, int*, void*);
114  bool (*infer_shape)(int, int*, unsigned**, void*);
115  bool (*list_outputs)(char***, void*);
116  bool (*list_arguments)(char***, void*);
117  bool (*declare_backward_dependency)(const int*, const int*, const int*,
118  int*, int**, void*);
119  // all functions also pass a payload void* pointer
120  void* p_forward;
121  void* p_backward;
126 };
127 
128 typedef int (*MXGenericCallback)(void);
129 
132  int (**callbacks)(void);
133  void **contexts;
134 };
135 
140 };
141 
151 };
152 
153 
154 typedef int (*CustomOpFBFunc)(int /*size*/, void** /*ptrs*/, int* /*tags*/,
155  const int* /*reqs*/, const int /*is_train*/,
156  void* /*state*/);
157 typedef int (*CustomOpDelFunc)(void* /*state*/);
158 typedef int (*CustomOpListFunc)(char*** /*args*/, void* /*state*/);
159 typedef int (*CustomOpInferShapeFunc)(int /*num_input*/, int* /*ndims*/,
160  unsigned** /*shapes*/, void* /*state*/);
161 typedef int (*CustomOpInferTypeFunc)(int /*num_input*/, int* /*types*/, void* /*state*/);
162 typedef int (*CustomOpBwdDepFunc)(const int* /*out_grad*/, const int* /*in_data*/,
163  const int* /*out_data*/, int* /*num_deps*/,
164  int** /*rdeps*/, void* /*state*/);
165 typedef int (*CustomOpCreateFunc)(const char* /*ctx*/, int /*num_inputs*/,
166  unsigned** /*shapes*/, const int* /*ndims*/,
167  const int* /*dtypes*/, struct MXCallbackList* /*ret*/,
168  void* /*state*/);
169 typedef int (*CustomOpPropCreator)(const char* /*op_type*/, const int /*num_kwargs*/,
170  const char** /*keys*/, const char** /*values*/,
171  struct MXCallbackList* /*ret*/);
172 
173 
177 };
178 
179 typedef int (*CustomFunctionBwdFunc)(int /*num_ograds*/, int /*num_igrads*/, void** /*ptrs*/,
180  const int* /*reqs*/, const int /*is_train*/,
181  void* /*state*/);
182 typedef int (*CustomFunctionDelFunc)(void* /*state*/);
183 
193 MXNET_DLL const char *MXGetLastError();
194 
195 //-------------------------------------
196 // Part 0: Global State setups
197 //-------------------------------------
203 MXNET_DLL int MXRandomSeed(int seed);
220 MXNET_DLL int MXSetProfilerConfig(int mode, const char* filename);
228 MXNET_DLL int MXSetProfilerState(int state);
229 
232 
234 MXNET_DLL int MXSetNumOMPThreads(int thread_num);
235 
241 MXNET_DLL int MXEngineSetBulkSize(int bulk_size, int* prev_bulk_size);
242 
248 MXNET_DLL int MXGetVersion(int *out);
249 
250 //-------------------------------------
251 // Part 1: NDArray creation and deletion
252 //-------------------------------------
260 MXNET_DLL int MXNDArrayCreateNone(NDArrayHandle *out);
272 MXNET_DLL int MXNDArrayCreate(const mx_uint *shape,
273  mx_uint ndim,
274  int dev_type,
275  int dev_id,
276  int delay_alloc,
277  NDArrayHandle *out);
278 
291 MXNET_DLL int MXNDArrayCreateEx(const mx_uint *shape,
292  mx_uint ndim,
293  int dev_type,
294  int dev_id,
295  int delay_alloc,
296  int dtype,
297  NDArrayHandle *out);
298 
299 
317 MXNET_DLL int MXNDArrayCreateSparseEx(int storage_type,
318  const mx_uint *shape,
319  mx_uint ndim,
320  int dev_type,
321  int dev_id,
322  int delay_alloc,
323  int dtype,
324  mx_uint num_aux,
325  int *aux_type,
326  mx_uint *aux_ndims,
327  const mx_uint *aux_shape,
328  NDArrayHandle *out);
329 
337 MXNET_DLL int MXNDArrayLoadFromRawBytes(const void *buf,
338  size_t size,
339  NDArrayHandle *out);
347 MXNET_DLL int MXNDArraySaveRawBytes(NDArrayHandle handle,
348  size_t *out_size,
349  const char **out_buf);
358 MXNET_DLL int MXNDArraySave(const char* fname,
359  mx_uint num_args,
360  NDArrayHandle* args,
361  const char** keys);
371 MXNET_DLL int MXNDArrayLoad(const char* fname,
372  mx_uint *out_size,
373  NDArrayHandle** out_arr,
374  mx_uint *out_name_size,
375  const char*** out_names);
387 MXNET_DLL int MXNDArraySyncCopyFromCPU(NDArrayHandle handle,
388  const void *data,
389  size_t size);
401 MXNET_DLL int MXNDArraySyncCopyToCPU(NDArrayHandle handle,
402  void *data,
403  size_t size);
411 MXNET_DLL int MXNDArraySyncCopyFromNDArray(NDArrayHandle handle_dst,
412  const NDArrayHandle handle_src,
413  const int i);
414 
420 MXNET_DLL int MXNDArraySyncCheckFormat(NDArrayHandle handle, const bool full_check);
427 MXNET_DLL int MXNDArrayWaitToRead(NDArrayHandle handle);
434 MXNET_DLL int MXNDArrayWaitToWrite(NDArrayHandle handle);
446 MXNET_DLL int MXNDArrayFree(NDArrayHandle handle);
455 MXNET_DLL int MXNDArraySlice(NDArrayHandle handle,
456  mx_uint slice_begin,
457  mx_uint slice_end,
458  NDArrayHandle *out);
459 
467 MXNET_DLL int MXNDArrayAt(NDArrayHandle handle,
468  mx_uint idx,
469  NDArrayHandle *out);
470 
474 MXNET_DLL int MXNDArrayGetStorageType(NDArrayHandle handle,
475  int *out_storage_type);
476 
485 MXNET_DLL int MXNDArrayReshape(NDArrayHandle handle,
486  int ndim,
487  int *dims,
488  NDArrayHandle *out);
496 MXNET_DLL int MXNDArrayGetShape(NDArrayHandle handle,
497  mx_uint *out_dim,
498  const mx_uint **out_pdata);
505 MXNET_DLL int MXNDArrayGetData(NDArrayHandle handle,
506  void **out_pdata);
513 MXNET_DLL int MXNDArrayGetDType(NDArrayHandle handle,
514  int *out_dtype);
515 
523 MXNET_DLL int MXNDArrayGetAuxType(NDArrayHandle handle,
524  mx_uint i,
525  int *out_type);
526 
532 MXNET_DLL int MXNDArrayGetAuxNDArray(NDArrayHandle handle,
533  mx_uint i,
534  NDArrayHandle *out);
535 
541 MXNET_DLL int MXNDArrayGetDataNDArray(NDArrayHandle handle,
542  NDArrayHandle *out);
550 MXNET_DLL int MXNDArrayGetContext(NDArrayHandle handle,
551  int *out_dev_type,
552  int *out_dev_id);
558 MXNET_DLL int MXNDArrayGetGrad(NDArrayHandle handle, NDArrayHandle *out);
564 MXNET_DLL int MXNDArrayDetach(NDArrayHandle handle, NDArrayHandle *out);
571 MXNET_DLL int MXNDArraySetGradState(NDArrayHandle handle, int state);
578 MXNET_DLL int MXNDArrayGetGradState(NDArrayHandle handle, int *out);
579 //--------------------------------
580 // Part 2: functions on NDArray
581 //--------------------------------
589 MXNET_DLL int MXListFunctions(mx_uint *out_size,
590  FunctionHandle **out_array);
597 MXNET_DLL int MXGetFunction(const char *name,
598  FunctionHandle *out);
611 MXNET_DLL int MXFuncGetInfo(FunctionHandle fun,
612  const char **name,
613  const char **description,
614  mx_uint *num_args,
615  const char ***arg_names,
616  const char ***arg_type_infos,
617  const char ***arg_descriptions,
618  const char **return_type DEFAULT(NULL));
629 MXNET_DLL int MXFuncDescribe(FunctionHandle fun,
630  mx_uint *num_use_vars,
631  mx_uint *num_scalars,
632  mx_uint *num_mutate_vars,
633  int *type_mask);
644 MXNET_DLL int MXFuncInvoke(FunctionHandle fun,
645  NDArrayHandle *use_vars,
646  mx_float *scalar_args,
647  NDArrayHandle *mutate_vars);
661 MXNET_DLL int MXFuncInvokeEx(FunctionHandle fun,
662  NDArrayHandle *use_vars,
663  mx_float *scalar_args,
664  NDArrayHandle *mutate_vars,
665  int num_params,
666  char **param_keys,
667  char **param_vals);
680 MXNET_DLL int MXImperativeInvoke(AtomicSymbolCreator creator,
681  int num_inputs,
682  NDArrayHandle *inputs,
683  int *num_outputs,
684  NDArrayHandle **outputs,
685  int num_params,
686  const char **param_keys,
687  const char **param_vals);
701 MXNET_DLL int MXImperativeInvokeEx(AtomicSymbolCreator creator,
702  int num_inputs,
703  NDArrayHandle *inputs,
704  int *num_outputs,
705  NDArrayHandle **outputs,
706  int num_params,
707  const char **param_keys,
708  const char **param_vals,
709  const int **out_stypes);
716 MXNET_DLL int MXAutogradSetIsRecording(int is_recording, int* prev);
723 MXNET_DLL int MXAutogradSetIsTraining(int is_training, int* prev);
729 MXNET_DLL int MXAutogradIsRecording(bool* curr);
735 MXNET_DLL int MXAutogradIsTraining(bool* curr);
742 MXNET_DLL int MXAutogradMarkVariables(mx_uint num_var,
743  NDArrayHandle *var_handles,
744  mx_uint *reqs_array,
745  NDArrayHandle *grad_handles);
752 MXNET_DLL int MXAutogradComputeGradient(mx_uint num_output,
753  NDArrayHandle* output_handles);
762 MXNET_DLL int MXAutogradBackward(mx_uint num_output,
763  NDArrayHandle* output_handles,
764  NDArrayHandle* ograd_handles,
765  int retain_graph);
777 MXNET_DLL int MXAutogradBackwardEx(mx_uint num_output,
778  NDArrayHandle *output_handles,
779  NDArrayHandle *ograd_handles,
780  mx_uint num_variables,
781  NDArrayHandle *var_handles,
782  int retain_graph,
783  int create_graph,
784  int is_train,
785  NDArrayHandle **grad_handles,
786  int **grad_stypes);
787 /*
788  * \brief get the graph constructed by autograd.
789  * \param handle ndarray handle
790  * \param out output symbol handle
791  */
792 MXNET_DLL int MXAutogradGetSymbol(NDArrayHandle handle, SymbolHandle *out);
796 MXNET_DLL int MXCreateCachedOp(SymbolHandle handle, CachedOpHandle *out);
800 MXNET_DLL int MXCreateCachedOpEx(SymbolHandle handle,
801  int num_params,
802  const char** keys,
803  const char** vals,
804  CachedOpHandle *out);
808 MXNET_DLL int MXFreeCachedOp(CachedOpHandle handle);
812 MXNET_DLL int MXInvokeCachedOp(CachedOpHandle handle,
813  int num_inputs,
814  NDArrayHandle *inputs,
815  int *num_outputs,
816  NDArrayHandle **outputs);
827 MXNET_DLL int MXInvokeCachedOpEx(CachedOpHandle handle,
828  int num_inputs,
829  NDArrayHandle *inputs,
830  int *num_outputs,
831  NDArrayHandle **outputs,
832  const int** out_stypes);
836 MXNET_DLL int MXInvokeCachedOp(CachedOpHandle handle,
837  int num_inputs,
838  NDArrayHandle *inputs,
839  int *num_outputs,
840  NDArrayHandle **outputs);
841 //--------------------------------------------
842 // Part 3: symbolic configuration generation
843 //--------------------------------------------
850 MXNET_DLL int MXListAllOpNames(mx_uint *out_size,
851  const char ***out_array);
858 MXNET_DLL int MXSymbolListAtomicSymbolCreators(mx_uint *out_size,
859  AtomicSymbolCreator **out_array);
860 
866 MXNET_DLL int MXSymbolGetAtomicSymbolName(AtomicSymbolCreator creator,
867  const char **name);
885 MXNET_DLL int MXSymbolGetAtomicSymbolInfo(AtomicSymbolCreator creator,
886  const char **name,
887  const char **description,
888  mx_uint *num_args,
889  const char ***arg_names,
890  const char ***arg_type_infos,
891  const char ***arg_descriptions,
892  const char **key_var_num_args,
893  const char **return_type DEFAULT(NULL));
903 MXNET_DLL int MXSymbolCreateAtomicSymbol(AtomicSymbolCreator creator,
904  mx_uint num_param,
905  const char **keys,
906  const char **vals,
907  SymbolHandle *out);
914 MXNET_DLL int MXSymbolCreateVariable(const char *name, SymbolHandle *out);
922 MXNET_DLL int MXSymbolCreateGroup(mx_uint num_symbols,
923  SymbolHandle *symbols,
924  SymbolHandle *out);
931 MXNET_DLL int MXSymbolCreateFromFile(const char *fname, SymbolHandle *out);
938 MXNET_DLL int MXSymbolCreateFromJSON(const char *json, SymbolHandle *out);
945 MXNET_DLL int MXSymbolSaveToFile(SymbolHandle symbol, const char *fname);
952 MXNET_DLL int MXSymbolSaveToJSON(SymbolHandle symbol, const char **out_json);
958 MXNET_DLL int MXSymbolFree(SymbolHandle symbol);
965 MXNET_DLL int MXSymbolCopy(SymbolHandle symbol, SymbolHandle *out);
972 MXNET_DLL int MXSymbolPrint(SymbolHandle symbol, const char **out_str);
980 MXNET_DLL int MXSymbolGetName(SymbolHandle symbol,
981  const char** out,
982  int *success);
991 MXNET_DLL int MXSymbolGetAttr(SymbolHandle symbol,
992  const char* key,
993  const char** out,
994  int *success);
1011 MXNET_DLL int MXSymbolSetAttr(SymbolHandle symbol,
1012  const char* key,
1013  const char* value);
1021 MXNET_DLL int MXSymbolListAttr(SymbolHandle symbol,
1022  mx_uint *out_size,
1023  const char*** out);
1031 MXNET_DLL int MXSymbolListAttrShallow(SymbolHandle symbol,
1032  mx_uint *out_size,
1033  const char*** out);
1041 MXNET_DLL int MXSymbolListArguments(SymbolHandle symbol,
1042  mx_uint *out_size,
1043  const char ***out_str_array);
1051 MXNET_DLL int MXSymbolListOutputs(SymbolHandle symbol,
1052  mx_uint *out_size,
1053  const char ***out_str_array);
1054 
1061 MXNET_DLL int MXSymbolGetNumOutputs(SymbolHandle symbol,
1062  mx_uint *output_count);
1063 
1070 MXNET_DLL int MXSymbolGetInternals(SymbolHandle symbol,
1071  SymbolHandle *out);
1078 MXNET_DLL int MXSymbolGetChildren(SymbolHandle symbol,
1079  SymbolHandle *out);
1087 MXNET_DLL int MXSymbolGetOutput(SymbolHandle symbol,
1088  mx_uint index,
1089  SymbolHandle *out);
1090 
1098 MXNET_DLL int MXSymbolListAuxiliaryStates(SymbolHandle symbol,
1099  mx_uint *out_size,
1100  const char ***out_str_array);
1115 MXNET_DLL int MXSymbolCompose(SymbolHandle sym,
1116  const char *name,
1117  mx_uint num_args,
1118  const char** keys,
1119  SymbolHandle* args);
1129 MXNET_DLL int MXSymbolGrad(SymbolHandle sym,
1130  mx_uint num_wrt,
1131  const char** wrt,
1132  SymbolHandle* out);
1155 MXNET_DLL int MXSymbolInferShape(SymbolHandle sym,
1156  mx_uint num_args,
1157  const char** keys,
1158  const mx_uint *arg_ind_ptr,
1159  const mx_uint *arg_shape_data,
1160  mx_uint *in_shape_size,
1161  const mx_uint **in_shape_ndim,
1162  const mx_uint ***in_shape_data,
1163  mx_uint *out_shape_size,
1164  const mx_uint **out_shape_ndim,
1165  const mx_uint ***out_shape_data,
1166  mx_uint *aux_shape_size,
1167  const mx_uint **aux_shape_ndim,
1168  const mx_uint ***aux_shape_data,
1169  int *complete);
1194 MXNET_DLL int MXSymbolInferShapePartial(SymbolHandle sym,
1195  mx_uint num_args,
1196  const char** keys,
1197  const mx_uint *arg_ind_ptr,
1198  const mx_uint *arg_shape_data,
1199  mx_uint *in_shape_size,
1200  const mx_uint **in_shape_ndim,
1201  const mx_uint ***in_shape_data,
1202  mx_uint *out_shape_size,
1203  const mx_uint **out_shape_ndim,
1204  const mx_uint ***out_shape_data,
1205  mx_uint *aux_shape_size,
1206  const mx_uint **aux_shape_ndim,
1207  const mx_uint ***aux_shape_data,
1208  int *complete);
1209 
1228 MXNET_DLL int MXSymbolInferType(SymbolHandle sym,
1229  mx_uint num_args,
1230  const char** keys,
1231  const int *arg_type_data,
1232  mx_uint *in_type_size,
1233  const int **in_type_data,
1234  mx_uint *out_type_size,
1235  const int **out_type_data,
1236  mx_uint *aux_type_size,
1237  const int **aux_type_data,
1238  int *complete);
1239 
1240 
1241 
1242 
1243 //--------------------------------------------
1244 // Part 4: Executor interface
1245 //--------------------------------------------
1251 MXNET_DLL int MXExecutorFree(ExecutorHandle handle);
1258 MXNET_DLL int MXExecutorPrint(ExecutorHandle handle, const char **out_str);
1266 MXNET_DLL int MXExecutorForward(ExecutorHandle handle, int is_train);
1276 MXNET_DLL int MXExecutorBackward(ExecutorHandle handle,
1277  mx_uint len,
1278  NDArrayHandle *head_grads);
1289 MXNET_DLL int MXExecutorBackwardEx(ExecutorHandle handle,
1290  mx_uint len,
1291  NDArrayHandle *head_grads,
1292  int is_train);
1301 MXNET_DLL int MXExecutorOutputs(ExecutorHandle handle,
1302  mx_uint *out_size,
1303  NDArrayHandle **out);
1304 
1320 MXNET_DLL int MXExecutorBind(SymbolHandle symbol_handle,
1321  int dev_type,
1322  int dev_id,
1323  mx_uint len,
1324  NDArrayHandle *in_args,
1325  NDArrayHandle *arg_grad_store,
1326  mx_uint *grad_req_type,
1327  mx_uint aux_states_len,
1328  NDArrayHandle *aux_states,
1329  ExecutorHandle *out);
1351 MXNET_DLL int MXExecutorBindX(SymbolHandle symbol_handle,
1352  int dev_type,
1353  int dev_id,
1354  mx_uint num_map_keys,
1355  const char** map_keys,
1356  const int* map_dev_types,
1357  const int* map_dev_ids,
1358  mx_uint len,
1359  NDArrayHandle *in_args,
1360  NDArrayHandle *arg_grad_store,
1361  mx_uint *grad_req_type,
1362  mx_uint aux_states_len,
1363  NDArrayHandle *aux_states,
1364  ExecutorHandle *out);
1387 MXNET_DLL int MXExecutorBindEX(SymbolHandle symbol_handle,
1388  int dev_type,
1389  int dev_id,
1390  mx_uint num_map_keys,
1391  const char** map_keys,
1392  const int* map_dev_types,
1393  const int* map_dev_ids,
1394  mx_uint len,
1395  NDArrayHandle *in_args,
1396  NDArrayHandle *arg_grad_store,
1397  mx_uint *grad_req_type,
1398  mx_uint aux_states_len,
1399  NDArrayHandle *aux_states,
1400  ExecutorHandle shared_exec,
1401  ExecutorHandle *out);
1402 
1403 MXNET_DLL int MXExecutorSimpleBind(SymbolHandle symbol_handle,
1404  int dev_type,
1405  int dev_id,
1406  const mx_uint num_g2c_keys,
1407  const char** g2c_keys,
1408  const int* g2c_dev_types,
1409  const int* g2c_dev_ids,
1410  const mx_uint provided_grad_req_list_len,
1411  const char** provided_grad_req_names,
1412  const char** provided_grad_req_types,
1413  const mx_uint num_provided_arg_shapes,
1414  const char** provided_arg_shape_names,
1415  const mx_uint* provided_arg_shape_data,
1416  const mx_uint* provided_arg_shape_idx,
1417  const mx_uint num_provided_arg_dtypes,
1418  const char** provided_arg_dtype_names,
1419  const int* provided_arg_dtypes,
1420  const mx_uint num_provided_arg_stypes,
1421  const char** provided_arg_stype_names,
1422  const int* provided_arg_stypes,
1423  const mx_uint num_shared_arg_names,
1424  const char** shared_arg_name_list,
1425  int* shared_buffer_len,
1426  const char** shared_buffer_name_list,
1427  NDArrayHandle* shared_buffer_handle_list,
1428  const char*** updated_shared_buffer_name_list,
1429  NDArrayHandle** updated_shared_buffer_handle_list,
1430  mx_uint* num_in_args,
1431  NDArrayHandle** in_args,
1432  NDArrayHandle** arg_grads,
1433  mx_uint* num_aux_states,
1434  NDArrayHandle** aux_states,
1435  ExecutorHandle shared_exec_handle,
1436  ExecutorHandle* out);
1440 MXNET_DLL int MXExecutorSetMonitorCallback(ExecutorHandle handle,
1441  ExecutorMonitorCallback callback,
1442  void* callback_handle);
1443 //--------------------------------------------
1444 // Part 5: IO Interface
1445 //--------------------------------------------
1452 MXNET_DLL int MXListDataIters(mx_uint *out_size,
1453  DataIterCreator **out_array);
1464 MXNET_DLL int MXDataIterCreateIter(DataIterCreator handle,
1465  mx_uint num_param,
1466  const char **keys,
1467  const char **vals,
1468  DataIterHandle *out);
1480 MXNET_DLL int MXDataIterGetIterInfo(DataIterCreator creator,
1481  const char **name,
1482  const char **description,
1483  mx_uint *num_args,
1484  const char ***arg_names,
1485  const char ***arg_type_infos,
1486  const char ***arg_descriptions);
1492 MXNET_DLL int MXDataIterFree(DataIterHandle handle);
1499 MXNET_DLL int MXDataIterNext(DataIterHandle handle,
1500  int *out);
1506 MXNET_DLL int MXDataIterBeforeFirst(DataIterHandle handle);
1507 
1514 MXNET_DLL int MXDataIterGetData(DataIterHandle handle,
1515  NDArrayHandle *out);
1523 MXNET_DLL int MXDataIterGetIndex(DataIterHandle handle,
1524  uint64_t **out_index,
1525  uint64_t *out_size);
1532 MXNET_DLL int MXDataIterGetPadNum(DataIterHandle handle,
1533  int *pad);
1534 
1541 MXNET_DLL int MXDataIterGetLabel(DataIterHandle handle,
1542  NDArrayHandle *out);
1543 //--------------------------------------------
1544 // Part 6: basic KVStore interface
1545 //--------------------------------------------
1552 MXNET_DLL int MXInitPSEnv(mx_uint num_vars,
1553  const char **keys,
1554  const char **vals);
1555 
1556 
1563 MXNET_DLL int MXKVStoreCreate(const char *type,
1564  KVStoreHandle *out);
1565 
1573 MXNET_DLL int MXKVStoreSetGradientCompression(KVStoreHandle handle,
1574  mx_uint num_params,
1575  const char** keys,
1576  const char** vals);
1577 
1583 MXNET_DLL int MXKVStoreFree(KVStoreHandle handle);
1592 MXNET_DLL int MXKVStoreInit(KVStoreHandle handle,
1593  mx_uint num,
1594  const int* keys,
1595  NDArrayHandle* vals);
1596 
1605 MXNET_DLL int MXKVStoreInitEx(KVStoreHandle handle,
1606  mx_uint num,
1607  const char** keys,
1608  NDArrayHandle* vals);
1609 
1619 MXNET_DLL int MXKVStorePush(KVStoreHandle handle,
1620  mx_uint num,
1621  const int* keys,
1622  NDArrayHandle* vals,
1623  int priority);
1633 MXNET_DLL int MXKVStorePushEx(KVStoreHandle handle,
1634  mx_uint num,
1635  const char** keys,
1636  NDArrayHandle* vals,
1637  int priority);
1647 MXNET_DLL int MXKVStorePull(KVStoreHandle handle,
1648  mx_uint num,
1649  const int* keys,
1650  NDArrayHandle* vals,
1651  int priority);
1661 MXNET_DLL int MXKVStorePullEx(KVStoreHandle handle,
1662  mx_uint num,
1663  const char** keys,
1664  NDArrayHandle* vals,
1665  int priority);
1666 
1679 MXNET_DLL int MXKVStorePullRowSparse(KVStoreHandle handle,
1680  mx_uint num,
1681  const int* keys,
1682  NDArrayHandle* vals,
1683  const NDArrayHandle* row_ids,
1684  int priority);
1697 MXNET_DLL int MXKVStorePullRowSparseEx(KVStoreHandle handle,
1698  mx_uint num,
1699  const char** keys,
1700  NDArrayHandle* vals,
1701  const NDArrayHandle* row_ids,
1702  int priority);
1703 
1712 typedef void (MXKVStoreUpdater)(int key,
1713  NDArrayHandle recv,
1714  NDArrayHandle local,
1715  void *handle);
1724 typedef void (MXKVStoreStrUpdater)(const char* key,
1725  NDArrayHandle recv,
1726  NDArrayHandle local,
1727  void *handle);
1735 MXNET_DLL int MXKVStoreSetUpdater(KVStoreHandle handle,
1736  MXKVStoreUpdater updater,
1737  void *updater_handle);
1746 MXNET_DLL int MXKVStoreSetUpdaterEx(KVStoreHandle handle,
1747  MXKVStoreUpdater updater,
1748  MXKVStoreStrUpdater str_updater,
1749  void *updater_handle);
1756 MXNET_DLL int MXKVStoreGetType(KVStoreHandle handle,
1757  const char** type);
1758 //--------------------------------------------
1759 // Part 6: advanced KVStore for multi-machines
1760 //--------------------------------------------
1761 
1769 MXNET_DLL int MXKVStoreGetRank(KVStoreHandle handle,
1770  int *ret);
1771 
1781 MXNET_DLL int MXKVStoreGetGroupSize(KVStoreHandle handle,
1782  int *ret);
1783 
1789 MXNET_DLL int MXKVStoreIsWorkerNode(int *ret);
1790 
1791 
1797 MXNET_DLL int MXKVStoreIsServerNode(int *ret);
1798 
1799 
1805 MXNET_DLL int MXKVStoreIsSchedulerNode(int *ret);
1806 
1813 MXNET_DLL int MXKVStoreBarrier(KVStoreHandle handle);
1814 
1822 MXNET_DLL int MXKVStoreSetBarrierBeforeExit(KVStoreHandle handle,
1823  const int barrier_before_exit);
1824 
1831 typedef void (MXKVStoreServerController)(int head,
1832  const char *body,
1833  void *controller_handle);
1834 
1843 MXNET_DLL int MXKVStoreRunServer(KVStoreHandle handle,
1844  MXKVStoreServerController controller,
1845  void *controller_handle);
1846 
1855 MXNET_DLL int MXKVStoreSendCommmandToServers(KVStoreHandle handle,
1856  int cmd_id,
1857  const char* cmd_body);
1858 
1869 MXNET_DLL int MXKVStoreGetNumDeadNode(KVStoreHandle handle,
1870  const int node_id,
1871  int *number,
1872  const int timeout_sec DEFAULT(60));
1873 
1880 MXNET_DLL int MXRecordIOWriterCreate(const char *uri, RecordIOHandle *out);
1881 
1887 MXNET_DLL int MXRecordIOWriterFree(RecordIOHandle handle);
1888 
1896 MXNET_DLL int MXRecordIOWriterWriteRecord(RecordIOHandle handle,
1897  const char *buf, size_t size);
1898 
1905 MXNET_DLL int MXRecordIOWriterTell(RecordIOHandle handle, size_t *pos);
1906 
1913 MXNET_DLL int MXRecordIOReaderCreate(const char *uri, RecordIOHandle *out);
1914 
1920 MXNET_DLL int MXRecordIOReaderFree(RecordIOHandle handle);
1921 
1929 MXNET_DLL int MXRecordIOReaderReadRecord(RecordIOHandle handle,
1930  char const **buf, size_t *size);
1931 
1938 MXNET_DLL int MXRecordIOReaderSeek(RecordIOHandle handle, size_t pos);
1939 
1946 MXNET_DLL int MXRecordIOReaderTell(RecordIOHandle handle, size_t *pos);
1947 
1951 MXNET_DLL int MXRtcCreate(char* name, mx_uint num_input, mx_uint num_output,
1952  char** input_names, char** output_names,
1953  NDArrayHandle* inputs, NDArrayHandle* outputs,
1954  char* kernel, RtcHandle *out);
1955 
1959 MXNET_DLL int MXRtcPush(RtcHandle handle, mx_uint num_input, mx_uint num_output,
1960  NDArrayHandle* inputs, NDArrayHandle* outputs,
1961  mx_uint gridDimX,
1962  mx_uint gridDimY,
1963  mx_uint gridDimZ,
1964  mx_uint blockDimX,
1965  mx_uint blockDimY,
1966  mx_uint blockDimZ);
1967 
1971 MXNET_DLL int MXRtcFree(RtcHandle handle);
1972 /*
1973  * \brief register custom operators from frontend.
1974  * \param op_type name of custom op
1975  * \param creator
1976  */
1977 MXNET_DLL int MXCustomOpRegister(const char* op_type, CustomOpPropCreator creator);
1978 /*
1979  * \brief record custom function for backward later.
1980  * \param num_inputs number of input NDArrays.
1981  * \param inputs handle to input NDArrays.
1982  * \param num_outputs number of output NDArrays.
1983  * \param outputs handle to output NDArrays.
1984  * \param callbacks callbacks for backward function.
1985  */
1986 MXNET_DLL int MXCustomFunctionRecord(int num_inputs, NDArrayHandle *inputs,
1987  int num_outputs, NDArrayHandle *outputs,
1988  struct MXCallbackList *callbacks);
1989 /*
1990  * \brief create cuda rtc module
1991  * \param source cuda source code
1992  * \param num_options number of compiler flags
1993  * \param options compiler flags
1994  * \param num_exports number of exported function names
1995  * \param exported function names
1996  * \param out handle to created module
1997  */
1998 MXNET_DLL int MXRtcCudaModuleCreate(const char* source, int num_options,
1999  const char** options, int num_exports,
2000  const char** exports, CudaModuleHandle *out);
2001 /*
2002  * \brief delete cuda rtc module
2003  * \param handle handle to cuda module
2004  */
2005 MXNET_DLL int MXRtcCudaModuleFree(CudaModuleHandle handle);
2006 /*
2007  * \brief get kernel from module
2008  * \param handle handle to cuda module
2009  * \param name name of kernel function
2010  * \param num_args number of arguments
2011  * \param is_ndarray whether argument is ndarray
2012  * \param is_const whether argument is constant
2013  * \param arg_types data type of arguments
2014  * \param out created kernel
2015  */
2016 MXNET_DLL int MXRtcCudaKernelCreate(CudaModuleHandle handle, const char* name,
2017  int num_args, int* is_ndarray, int* is_const,
2018  int* arg_types, CudaKernelHandle *out);
2019 /*
2020  * \brief delete kernel
2021  * \param handle handle to previously created kernel
2022  */
2023 MXNET_DLL int MXRtcCudaKernelFree(CudaKernelHandle handle);
2024 /*
2025  * \brief launch cuda kernel
2026  * \param handle handle to kernel
2027  * \param dev_id (GPU) device id
2028  * \param args pointer to arguments
2029  * \param grid_dim_x grid dimension x
2030  * \param grid_dim_y grid dimension y
2031  * \param grid_dim_z grid dimension z
2032  * \param block_dim_x block dimension x
2033  * \param block_dim_y block dimension y
2034  * \param block_dim_z block dimension z
2035  * \param shared_mem size of dynamically allocated shared memory
2036  */
2037 MXNET_DLL int MXRtcCudaKernelCall(CudaKernelHandle handle, int dev_id, void** args,
2038  mx_uint grid_dim_x, mx_uint grid_dim_y,
2039  mx_uint grid_dim_z, mx_uint block_dim_x,
2040  mx_uint block_dim_y, mx_uint block_dim_z,
2041  mx_uint shared_mem);
2048 MXNET_DLL int MXNDArrayGetSharedMemHandle(NDArrayHandle handle, int* shared_pid,
2049  int* shared_id);
2059 MXNET_DLL int MXNDArrayCreateFromSharedMem(int shared_pid, int shared_id, const mx_uint *shape,
2060  mx_uint ndim, int dtype, NDArrayHandle *out);
2061 
2062 
2063 #ifdef __cplusplus
2064 }
2065 #endif // __cplusplus
2066 
2067 #endif // MXNET_C_API_H_
MXNET_DLL int MXKVStoreSendCommmandToServers(KVStoreHandle handle, int cmd_id, const char *cmd_body)
int(* CustomFunctionDelFunc)(void *)
Definition: c_api.h:182
MXNET_DLL int MXNDArrayDetach(NDArrayHandle handle, NDArrayHandle *out)
detach and ndarray from computation graph by clearing entry_
MXNET_DLL int MXListAllOpNames(mx_uint *out_size, const char ***out_array)
list all the available operator names, include entries.
MXNET_DLL int MXNDArrayCreateFromSharedMem(int shared_pid, int shared_id, const mx_uint *shape, mx_uint ndim, int dtype, NDArrayHandle *out)
Reconstruct NDArray from shared memory handle.
MXNET_DLL int MXNDArrayGetAuxType(NDArrayHandle handle, mx_uint i, int *out_type)
get the type of the ith aux data in NDArray
MXNET_DLL int MXKVStoreSetUpdater(KVStoreHandle handle, MXKVStoreUpdater updater, void *updater_handle)
register a push updater
MXNET_DLL int MXKVStoreBarrier(KVStoreHandle handle)
global barrier among all worker machines
MXNET_DLL int MXSymbolGetNumOutputs(SymbolHandle symbol, mx_uint *output_count)
Get number of outputs of the symbol.
void * DataIterHandle
handle to a DataIterator
Definition: c_api.h:81
MXNET_DLL int MXSymbolListAtomicSymbolCreators(mx_uint *out_size, AtomicSymbolCreator **out_array)
list all the available AtomicSymbolEntry
Definition: c_api.h:137
MXNET_DLL int MXDataIterCreateIter(DataIterCreator handle, mx_uint num_param, const char **keys, const char **vals, DataIterHandle *out)
Init an iterator, init with parameters the array size of passed in arguments.
MXNET_DLL int MXDataIterNext(DataIterHandle handle, int *out)
Move iterator to next position.
MXNET_DLL int MXNDArrayReshape(NDArrayHandle handle, int ndim, int *dims, NDArrayHandle *out)
Reshape the NDArray.
void * p_infer_shape
Definition: c_api.h:122
MXNET_DLL int MXAutogradMarkVariables(mx_uint num_var, NDArrayHandle *var_handles, mx_uint *reqs_array, NDArrayHandle *grad_handles)
mark NDArrays as variables to compute gradient for autograd
Definition: c_api.h:147
MXNET_DLL int MXExecutorPrint(ExecutorHandle handle, const char **out_str)
Print the content of execution plan, used for debug.
MXNET_DLL int MXKVStoreRunServer(KVStoreHandle handle, MXKVStoreServerController controller, void *controller_handle)
void(* list_arguments)(char ***, void *)
Definition: c_api.h:102
MXNET_DLL int MXSymbolSaveToJSON(SymbolHandle symbol, const char **out_json)
Save a symbol into a json string.
MXNET_DLL int MXSymbolInferShape(SymbolHandle sym, mx_uint num_args, const char **keys, const mx_uint *arg_ind_ptr, const mx_uint *arg_shape_data, mx_uint *in_shape_size, const mx_uint **in_shape_ndim, const mx_uint ***in_shape_data, mx_uint *out_shape_size, const mx_uint **out_shape_ndim, const mx_uint ***out_shape_data, mx_uint *aux_shape_size, const mx_uint **aux_shape_ndim, const mx_uint ***aux_shape_data, int *complete)
infer shape of unknown input shapes given the known one. The shapes are packed into a CSR matrix repr...
MXNET_DLL int MXSymbolGetAttr(SymbolHandle symbol, const char *key, const char **out, int *success)
Get string attribute from symbol.
MXNET_DLL int MXRtcCreate(char *name, mx_uint num_input, mx_uint num_output, char **input_names, char **output_names, NDArrayHandle *inputs, NDArrayHandle *outputs, char *kernel, RtcHandle *out)
Create a MXRtc object.
MXNET_DLL int MXSymbolGetAtomicSymbolName(AtomicSymbolCreator creator, const char **name)
Get the name of an atomic symbol.
MXNET_DLL int MXKVStorePull(KVStoreHandle handle, mx_uint num, const int *keys, NDArrayHandle *vals, int priority)
pull a list of (key, value) pairs from the kvstore
MXNET_DLL int MXNDArrayWaitToRead(NDArrayHandle handle)
Wait until all the pending writes with respect NDArray are finished. Always call this before read dat...
MXNET_DLL int MXExecutorBind(SymbolHandle symbol_handle, int dev_type, int dev_id, mx_uint len, NDArrayHandle *in_args, NDArrayHandle *arg_grad_store, mx_uint *grad_req_type, mx_uint aux_states_len, NDArrayHandle *aux_states, ExecutorHandle *out)
Generate Executor from symbol.
void * p_forward
Definition: c_api.h:120
MXNET_DLL int MXKVStorePullRowSparse(KVStoreHandle handle, mx_uint num, const int *keys, NDArrayHandle *vals, const NDArrayHandle *row_ids, int priority)
pull a list of (key, value) pairs from the kvstore, where each key is an integer. The NDArray pulled ...
MXNET_DLL int MXDataIterFree(DataIterHandle handle)
Free the handle to the IO module.
MXNET_DLL int MXKVStoreSetUpdaterEx(KVStoreHandle handle, MXKVStoreUpdater updater, MXKVStoreStrUpdater str_updater, void *updater_handle)
register a push updater with int keys and one with string keys
MXNET_DLL int MXInvokeCachedOp(CachedOpHandle handle, int num_inputs, NDArrayHandle *inputs, int *num_outputs, NDArrayHandle **outputs)
invoke cached operator
MXNET_DLL int MXFreeCachedOp(CachedOpHandle handle)
free cached operator
void * RecordIOHandle
handle to RecordIO
Definition: c_api.h:85
CustomOpCallbacks
Definition: c_api.h:136
MXNET_DLL int MXSymbolGetChildren(SymbolHandle symbol, SymbolHandle *out)
Get a symbol that contains only direct children.
MXNET_DLL int MXRecordIOReaderFree(RecordIOHandle handle)
Delete a RecordIO reader object.
MXNET_DLL int MXExecutorOutputs(ExecutorHandle handle, mx_uint *out_size, NDArrayHandle **out)
Get executor&#39;s head NDArray.
MXNET_DLL int MXNDArrayGetContext(NDArrayHandle handle, int *out_dev_type, int *out_dev_id)
get the context of the NDArray
MXNET_DLL int MXFuncDescribe(FunctionHandle fun, mx_uint *num_use_vars, mx_uint *num_scalars, mx_uint *num_mutate_vars, int *type_mask)
get the argument requirements of the function
MXNET_DLL int MXKVStoreIsServerNode(int *ret)
return whether or not this process is a server node.
MXNET_DLL int MXNDArraySlice(NDArrayHandle handle, mx_uint slice_begin, mx_uint slice_end, NDArrayHandle *out)
Slice the NDArray along axis 0.
void * ExecutorHandle
handle to an Executor
Definition: c_api.h:77
CustomFunctionCallbacks
Definition: c_api.h:174
MXNET_DLL int MXSymbolSaveToFile(SymbolHandle symbol, const char *fname)
Save a symbol into a json file.
void * AtomicSymbolHandle
handle to a AtomicSymbol
Definition: c_api.h:75
void * p_backward
Definition: c_api.h:105
MXNET_DLL int MXFuncGetInfo(FunctionHandle fun, const char **name, const char **description, mx_uint *num_args, const char ***arg_names, const char ***arg_type_infos, const char ***arg_descriptions, const char **return_type DEFAULT(NULL))
Get the information of the function handle.
MXNET_DLL int MXAutogradSetIsTraining(int is_training, int *prev)
set whether to record operator for autograd
MXNET_DLL int MXNDArrayFree(NDArrayHandle handle)
free the narray handle
MXNET_DLL int MXSymbolCreateFromJSON(const char *json, SymbolHandle *out)
Load a symbol from a json string.
CustomOpPropCallbacks
Definition: c_api.h:142
int(* CustomOpInferTypeFunc)(int, int *, void *)
Definition: c_api.h:161
MXNET_DLL int MXKVStoreIsSchedulerNode(int *ret)
return whether or not this process is a scheduler node.
MXNET_DLL int MXInvokeCachedOpEx(CachedOpHandle handle, int num_inputs, NDArrayHandle *inputs, int *num_outputs, NDArrayHandle **outputs, const int **out_stypes)
invoke a cached op
MXNET_DLL int MXSymbolGetAtomicSymbolInfo(AtomicSymbolCreator creator, const char **name, const char **description, mx_uint *num_args, const char ***arg_names, const char ***arg_type_infos, const char ***arg_descriptions, const char **key_var_num_args, const char **return_type DEFAULT(NULL))
Get the detailed information about atomic symbol.
#define DEFAULT(x)
Inhibit C++ name-mangling for MXNet functions.
Definition: c_api.h:37
MXNET_DLL int MXSetProfilerState(int state)
Set up state of profiler.
MXNET_DLL int MXImperativeInvoke(AtomicSymbolCreator creator, int num_inputs, NDArrayHandle *inputs, int *num_outputs, NDArrayHandle **outputs, int num_params, const char **param_keys, const char **param_vals)
invoke a nnvm op and imperative function
MXNET_DLL int MXSymbolListAttr(SymbolHandle symbol, mx_uint *out_size, const char ***out)
Get all attributes from symbol, including all descendents.
MXNET_DLL int MXCreateCachedOpEx(SymbolHandle handle, int num_params, const char **keys, const char **vals, CachedOpHandle *out)
create cached operator
MXNET_DLL int MXRtcCudaKernelFree(CudaKernelHandle handle)
MXNET_DLL int MXNDArrayAt(NDArrayHandle handle, mx_uint idx, NDArrayHandle *out)
Index the NDArray along axis 0.
MXNET_DLL int MXNDArrayGetAuxNDArray(NDArrayHandle handle, mx_uint i, NDArrayHandle *out)
Get a deep copy of the ith aux data blob in the form of an NDArray of default storage type...
MXNET_DLL int MXNDArrayLoad(const char *fname, mx_uint *out_size, NDArrayHandle **out_arr, mx_uint *out_name_size, const char ***out_names)
Load list of narray from the file.
MXNET_DLL int MXRtcCudaKernelCreate(CudaModuleHandle handle, const char *name, int num_args, int *is_ndarray, int *is_const, int *arg_types, CudaKernelHandle *out)
MXNET_DLL int MXNDArraySyncCopyFromCPU(NDArrayHandle handle, const void *data, size_t size)
Perform a synchronize copy from a continugous CPU memory region.
MXNET_DLL int MXSymbolCreateFromFile(const char *fname, SymbolHandle *out)
Load a symbol from a json file.
MXNET_DLL int MXKVStorePushEx(KVStoreHandle handle, mx_uint num, const char **keys, NDArrayHandle *vals, int priority)
Push a list of (key,value) pairs to kvstore, where each key is a string.
void( MXKVStoreStrUpdater)(const char *key, NDArrayHandle recv, NDArrayHandle local, void *handle)
user-defined updater for the kvstore with string keys It&#39;s this updater&#39;s responsibility to delete re...
Definition: c_api.h:1724
Definition: c_api.h:111
MXNET_DLL int MXNDArrayCreateSparseEx(int storage_type, const mx_uint *shape, mx_uint ndim, int dev_type, int dev_id, int delay_alloc, int dtype, mx_uint num_aux, int *aux_type, mx_uint *aux_ndims, const mx_uint *aux_shape, NDArrayHandle *out)
create an empty sparse NDArray with specified shape and data type
MXNET_DLL int MXExecutorSimpleBind(SymbolHandle symbol_handle, int dev_type, int dev_id, const mx_uint num_g2c_keys, const char **g2c_keys, const int *g2c_dev_types, const int *g2c_dev_ids, const mx_uint provided_grad_req_list_len, const char **provided_grad_req_names, const char **provided_grad_req_types, const mx_uint num_provided_arg_shapes, const char **provided_arg_shape_names, const mx_uint *provided_arg_shape_data, const mx_uint *provided_arg_shape_idx, const mx_uint num_provided_arg_dtypes, const char **provided_arg_dtype_names, const int *provided_arg_dtypes, const mx_uint num_provided_arg_stypes, const char **provided_arg_stype_names, const int *provided_arg_stypes, const mx_uint num_shared_arg_names, const char **shared_arg_name_list, int *shared_buffer_len, const char **shared_buffer_name_list, NDArrayHandle *shared_buffer_handle_list, const char ***updated_shared_buffer_name_list, NDArrayHandle **updated_shared_buffer_handle_list, mx_uint *num_in_args, NDArrayHandle **in_args, NDArrayHandle **arg_grads, mx_uint *num_aux_states, NDArrayHandle **aux_states, ExecutorHandle shared_exec_handle, ExecutorHandle *out)
void(* ExecutorMonitorCallback)(const char *, NDArrayHandle, void *)
Definition: c_api.h:93
void * p_forward
Definition: c_api.h:104
MXNET_DLL int MXNDArrayCreateEx(const mx_uint *shape, mx_uint ndim, int dev_type, int dev_id, int delay_alloc, int dtype, NDArrayHandle *out)
create a NDArray with specified shape and data type
MXNET_DLL int MXEngineSetBulkSize(int bulk_size, int *prev_bulk_size)
set bulk execution limit
void * p_list_arguments
Definition: c_api.h:108
MXNET_DLL int MXKVStoreCreate(const char *type, KVStoreHandle *out)
Create a kvstore.
int(* CustomOpDelFunc)(void *)
Definition: c_api.h:157
void * p_declare_backward_dependency
Definition: c_api.h:125
MXNET_DLL int MXNDArrayCreateNone(NDArrayHandle *out)
create a NDArray handle that is not initialized can be used to pass in as mutate variables to hold th...
MXNET_DLL int MXKVStoreFree(KVStoreHandle handle)
Delete a KVStore handle.
void * p_list_arguments
Definition: c_api.h:124
MXNET_DLL int MXCustomOpRegister(const char *op_type, CustomOpPropCreator creator)
MXNET_DLL int MXExecutorBackwardEx(ExecutorHandle handle, mx_uint len, NDArrayHandle *head_grads, int is_train)
Excecutor run backward.
void * SymbolHandle
handle to a symbol that can be bind as operator
Definition: c_api.h:73
void * CudaModuleHandle
handle to rtc cuda module
Definition: c_api.h:89
MXNET_DLL int MXSymbolCopy(SymbolHandle symbol, SymbolHandle *out)
Copy the symbol to another handle.
MXNET_DLL int MXGetVersion(int *out)
get the MXNet library version as an integer
int(** callbacks)(void)
Definition: c_api.h:132
void * CachedOpHandle
handle to cached operator
Definition: c_api.h:71
MXNET_DLL int MXSymbolSetAttr(SymbolHandle symbol, const char *key, const char *value)
Set string attribute from symbol. NOTE: Setting attribute to a symbol can affect the semantics(mutabl...
MXNET_DLL int MXSetNumOMPThreads(int thread_num)
Set the number of OMP threads to use.
MXNET_DLL int MXDataIterBeforeFirst(DataIterHandle handle)
Call iterator.Reset.
MXNET_DLL int MXSymbolInferShapePartial(SymbolHandle sym, mx_uint num_args, const char **keys, const mx_uint *arg_ind_ptr, const mx_uint *arg_shape_data, mx_uint *in_shape_size, const mx_uint **in_shape_ndim, const mx_uint ***in_shape_data, mx_uint *out_shape_size, const mx_uint **out_shape_ndim, const mx_uint ***out_shape_data, mx_uint *aux_shape_size, const mx_uint **aux_shape_ndim, const mx_uint ***aux_shape_data, int *complete)
partially infer shape of unknown input shapes given the known one.
MXNET_DLL int MXSymbolListOutputs(SymbolHandle symbol, mx_uint *out_size, const char ***out_str_array)
List returns in the symbol.
MXNET_DLL int MXListDataIters(mx_uint *out_size, DataIterCreator **out_array)
List all the available iterator entries.
MXNET_DLL int MXNDArrayGetShape(NDArrayHandle handle, mx_uint *out_dim, const mx_uint **out_pdata)
get the shape of the array
MXNET_DLL int MXDataIterGetPadNum(DataIterHandle handle, int *pad)
Get the padding number in current data batch.
MXNET_DLL int MXAutogradComputeGradient(mx_uint num_output, NDArrayHandle *output_handles)
compute the gradient of outputs w.r.t variabels
MXNET_DLL int MXNDArrayGetSharedMemHandle(NDArrayHandle handle, int *shared_pid, int *shared_id)
Get shared memory handle from NDArray.
MXNET_DLL int MXFuncInvokeEx(FunctionHandle fun, NDArrayHandle *use_vars, mx_float *scalar_args, NDArrayHandle *mutate_vars, int num_params, char **param_keys, char **param_vals)
invoke a function, the array size of passed in arguments must match the values in the ...
MXNET_DLL int MXRtcCudaModuleCreate(const char *source, int num_options, const char **options, int num_exports, const char **exports, CudaModuleHandle *out)
int num_callbacks
Definition: c_api.h:131
MXNET_DLL int MXRandomSeed(int seed)
Seed the global random number generators in mxnet.
MXNET_DLL int MXSymbolGetOutput(SymbolHandle symbol, mx_uint index, SymbolHandle *out)
Get index-th outputs of the symbol.
MXNET_DLL int MXNDArrayGetDType(NDArrayHandle handle, int *out_dtype)
get the type of the data in NDArray
MXNET_DLL int MXAutogradIsTraining(bool *curr)
get whether training mode is on
MXNET_DLL int MXAutogradBackwardEx(mx_uint num_output, NDArrayHandle *output_handles, NDArrayHandle *ograd_handles, mx_uint num_variables, NDArrayHandle *var_handles, int retain_graph, int create_graph, int is_train, NDArrayHandle **grad_handles, int **grad_stypes)
compute the gradient of outputs w.r.t variabels
void(* forward)(int, float **, int *, unsigned **, int *, void *)
Definition: c_api.h:98
int(* MXGenericCallback)(void)
Definition: c_api.h:128
Definition: c_api.h:175
MXNET_DLL int MXSymbolGetInternals(SymbolHandle symbol, SymbolHandle *out)
Get a symbol that contains all the internals.
MXNET_DLL int MXNDArrayGetDataNDArray(NDArrayHandle handle, NDArrayHandle *out)
Get a deep copy of the data blob in the form of an NDArray of default storage type. This function blocks. Do not use it in performance critical code.
MXNET_DLL int MXInitPSEnv(mx_uint num_vars, const char **keys, const char **vals)
Initialized ps-lite environment variables.
MXNET_DLL int MXDataIterGetData(DataIterHandle handle, NDArrayHandle *out)
Get the handle to the NDArray of underlying data.
MXNET_DLL int MXRtcFree(RtcHandle handle)
Delete a MXRtc object.
MXNET_DLL int MXNDArraySyncCopyToCPU(NDArrayHandle handle, void *data, size_t size)
Perform a synchronize copyto a continugous CPU memory region.
MXNET_DLL int MXAutogradSetIsRecording(int is_recording, int *prev)
set whether to record operator for autograd
void( MXKVStoreServerController)(int head, const char *body, void *controller_handle)
the prototype of a server controller
Definition: c_api.h:1831
Definition: c_api.h:138
void * KVStoreHandle
handle to KVStore
Definition: c_api.h:83
MXNET_DLL int MXSetProfilerConfig(int mode, const char *filename)
Set up configuration of profiler.
void * NDArrayHandle
handle to NDArray
Definition: c_api.h:65
MXNET_DLL int MXNotifyShutdown()
Notify the engine about a shutdown, This can help engine to print less messages into display...
void * p_list_outputs
Definition: c_api.h:123
MXNET_DLL int MXDataIterGetIndex(DataIterHandle handle, uint64_t **out_index, uint64_t *out_size)
Get the image index by array.
MXNET_DLL int MXDataIterGetLabel(DataIterHandle handle, NDArrayHandle *out)
Get the handle to the NDArray of underlying label.
Definition: c_api.h:144
int(* CustomOpCreateFunc)(const char *, int, unsigned **, const int *, const int *, struct MXCallbackList *, void *)
Definition: c_api.h:165
int(* CustomOpFBFunc)(int, void **, int *, const int *, const int, void *)
Definition: c_api.h:154
MXNET_DLL int MXNDArraySyncCopyFromNDArray(NDArrayHandle handle_dst, const NDArrayHandle handle_src, const int i)
Copy src.data() to dst.data() if i = -1, else dst.aux_data(i) if i >= 0 This function blocks...
MXNET_DLL int MXSymbolCreateGroup(mx_uint num_symbols, SymbolHandle *symbols, SymbolHandle *out)
Create a Symbol by grouping list of symbols together.
MXNET_DLL int MXNDArrayCreate(const mx_uint *shape, mx_uint ndim, int dev_type, int dev_id, int delay_alloc, NDArrayHandle *out)
create a NDArray with specified shape
MXNET_DLL int MXKVStoreSetBarrierBeforeExit(KVStoreHandle handle, const int barrier_before_exit)
whether to do barrier when finalize
MXNET_DLL int MXFuncInvoke(FunctionHandle fun, NDArrayHandle *use_vars, mx_float *scalar_args, NDArrayHandle *mutate_vars)
invoke a function, the array size of passed in arguments must match the values in the ...
MXNET_DLL int MXSymbolListArguments(SymbolHandle symbol, mx_uint *out_size, const char ***out_str_array)
List arguments in the symbol.
MXNET_DLL int MXNDArrayGetStorageType(NDArrayHandle handle, int *out_storage_type)
get the storage type of the array
MXNET_DLL int MXRecordIOWriterCreate(const char *uri, RecordIOHandle *out)
Create a RecordIO writer object.
void * p_infer_shape
Definition: c_api.h:106
MXNET_DLL int MXKVStorePullRowSparseEx(KVStoreHandle handle, mx_uint num, const char **keys, NDArrayHandle *vals, const NDArrayHandle *row_ids, int priority)
pull a list of (key, value) pairs from the kvstore, where each key is a string. The NDArray pulled ba...
MXNET_DLL int MXNDArrayWaitAll()
wait until all delayed operations in the system is completed
MXNET_DLL int MXKVStorePullEx(KVStoreHandle handle, mx_uint num, const char **keys, NDArrayHandle *vals, int priority)
pull a list of (key, value) pairs from the kvstore, where each key is a string
MXNET_DLL int MXRecordIOReaderCreate(const char *uri, RecordIOHandle *out)
Create a RecordIO reader object.
MXNET_DLL int MXKVStoreGetNumDeadNode(KVStoreHandle handle, const int node_id, int *number, const int timeout_sec DEFAULT(60))
Get the number of ps dead node(s) specified by {node_id}.
unsigned int mx_uint
manually define unsigned int
Definition: c_api.h:58
Definition: c_api.h:139
MXNET_DLL int MXRecordIOWriterTell(RecordIOHandle handle, size_t *pos)
Get the current writer pointer position.
Definition: c_api.h:150
MXNET_DLL int MXRecordIOReaderTell(RecordIOHandle handle, size_t *pos)
Get the current writer pointer position.
MXNET_DLL int MXNDArraySaveRawBytes(NDArrayHandle handle, size_t *out_size, const char **out_buf)
save the NDArray into raw bytes.
MXNET_DLL int MXSymbolGetName(SymbolHandle symbol, const char **out, int *success)
Get string name from symbol.
MXNET_DLL int MXKVStoreSetGradientCompression(KVStoreHandle handle, mx_uint num_params, const char **keys, const char **vals)
Set parameters to use low-bit compressed gradients.
void * p_backward
Definition: c_api.h:121
Definition: c_api.h:143
MXNET_DLL int MXExecutorBindEX(SymbolHandle symbol_handle, int dev_type, int dev_id, mx_uint num_map_keys, const char **map_keys, const int *map_dev_types, const int *map_dev_ids, mx_uint len, NDArrayHandle *in_args, NDArrayHandle *arg_grad_store, mx_uint *grad_req_type, mx_uint aux_states_len, NDArrayHandle *aux_states, ExecutorHandle shared_exec, ExecutorHandle *out)
Generate Executor from symbol, This is advanced function, allow specify group2ctx map...
MXNET_DLL int MXAutogradIsRecording(bool *curr)
get whether autograd recording is on
Definition: c_api.h:176
MXNET_DLL int MXRecordIOWriterFree(RecordIOHandle handle)
Delete a RecordIO writer object.
MXNET_DLL int MXExecutorBackward(ExecutorHandle handle, mx_uint len, NDArrayHandle *head_grads)
Excecutor run backward.
MXNET_DLL int MXKVStoreGetRank(KVStoreHandle handle, int *ret)
return The rank of this node in its group, which is in [0, GroupSize).
MXNET_DLL int MXCustomFunctionRecord(int num_inputs, NDArrayHandle *inputs, int num_outputs, NDArrayHandle *outputs, struct MXCallbackList *callbacks)
MXNET_DLL int MXKVStoreGetGroupSize(KVStoreHandle handle, int *ret)
return The number of nodes in this group, which is
MXNET_DLL int MXRecordIOWriterWriteRecord(RecordIOHandle handle, const char *buf, size_t size)
Write a record to a RecordIO object.
int(* CustomOpPropCreator)(const char *, const int, const char **, const char **, struct MXCallbackList *)
Definition: c_api.h:169
MXNET_DLL int MXSymbolCreateVariable(const char *name, SymbolHandle *out)
Create a Variable Symbol.
MXNET_DLL int MXExecutorSetMonitorCallback(ExecutorHandle handle, ExecutorMonitorCallback callback, void *callback_handle)
set a call back to notify the completion of operation
int(* CustomFunctionBwdFunc)(int, int, void **, const int *, const int, void *)
Definition: c_api.h:179
MXNET_DLL int MXAutogradBackward(mx_uint num_output, NDArrayHandle *output_handles, NDArrayHandle *ograd_handles, int retain_graph)
compute the gradient of outputs w.r.t variabels
void * CudaKernelHandle
handle to rtc cuda kernel
Definition: c_api.h:91
MXNET_DLL int MXKVStoreIsWorkerNode(int *ret)
return whether or not this process is a worker node.
MXNET_DLL int MXSymbolPrint(SymbolHandle symbol, const char **out_str)
Print the content of symbol, used for debug.
MXNET_DLL int MXSymbolCompose(SymbolHandle sym, const char *name, mx_uint num_args, const char **keys, SymbolHandle *args)
Compose the symbol on other symbols.
MXNET_DLL int MXSymbolGrad(SymbolHandle sym, mx_uint num_wrt, const char **wrt, SymbolHandle *out)
Get the gradient graph of the symbol.
float mx_float
manually define float
Definition: c_api.h:60
MXNET_DLL int MXCreateCachedOp(SymbolHandle handle, CachedOpHandle *out)
create cached operator
MXNET_DLL int MXRecordIOReaderSeek(RecordIOHandle handle, size_t pos)
Set the current reader pointer position.
#define MXNET_DLL
MXNET_DLL prefix for windows.
Definition: c_api.h:54
MXNET_DLL int MXSymbolCreateAtomicSymbol(AtomicSymbolCreator creator, mx_uint num_param, const char **keys, const char **vals, SymbolHandle *out)
Create an AtomicSymbol.
MXNET_DLL int MXNDArraySetGradState(NDArrayHandle handle, int state)
set the flag for gradient array state.
MXNET_DLL int MXNDArraySyncCheckFormat(NDArrayHandle handle, const bool full_check)
check whether the NDArray format is valid
MXNET_DLL const char * MXGetLastError()
return str message of the last error all function in this file will return 0 when success and -1 when...
MXNET_DLL int MXNDArrayGetGradState(NDArrayHandle handle, int *out)
set the flag for gradient array state.
void ** contexts
Definition: c_api.h:133
void * AtomicSymbolCreator
handle to a function that takes param and creates symbol
Definition: c_api.h:69
MXNET_DLL int MXKVStoreInitEx(KVStoreHandle handle, mx_uint num, const char **keys, NDArrayHandle *vals)
Init a list of (key,value) pairs in kvstore, where each key is a string.
MXNET_DLL int MXAutogradGetSymbol(NDArrayHandle handle, SymbolHandle *out)
MXNET_DLL int MXExecutorBindX(SymbolHandle symbol_handle, int dev_type, int dev_id, mx_uint num_map_keys, const char **map_keys, const int *map_dev_types, const int *map_dev_ids, mx_uint len, NDArrayHandle *in_args, NDArrayHandle *arg_grad_store, mx_uint *grad_req_type, mx_uint aux_states_len, NDArrayHandle *aux_states, ExecutorHandle *out)
Generate Executor from symbol, This is advanced function, allow specify group2ctx map...
void(* infer_shape)(int, int *, unsigned **, void *)
Definition: c_api.h:100
void * p_list_outputs
Definition: c_api.h:107
MXNET_DLL int MXNDArraySave(const char *fname, mx_uint num_args, NDArrayHandle *args, const char **keys)
Save list of narray into the file.
MXNET_DLL int MXNDArrayLoadFromRawBytes(const void *buf, size_t size, NDArrayHandle *out)
create a NDArray handle that is loaded from raw bytes.
MXNET_DLL int MXRtcPush(RtcHandle handle, mx_uint num_input, mx_uint num_output, NDArrayHandle *inputs, NDArrayHandle *outputs, mx_uint gridDimX, mx_uint gridDimY, mx_uint gridDimZ, mx_uint blockDimX, mx_uint blockDimY, mx_uint blockDimZ)
Run cuda kernel.
void( MXKVStoreUpdater)(int key, NDArrayHandle recv, NDArrayHandle local, void *handle)
user-defined updater for the kvstore It&#39;s this updater&#39;s responsibility to delete recv and local ...
Definition: c_api.h:1712
MXNET_DLL int MXSymbolListAuxiliaryStates(SymbolHandle symbol, mx_uint *out_size, const char ***out_str_array)
List auxiliary states in the symbol.
MXNET_DLL int MXGetFunction(const char *name, FunctionHandle *out)
get the function handle by name
MXNET_DLL int MXSymbolListAttrShallow(SymbolHandle symbol, mx_uint *out_size, const char ***out)
Get all attributes from symbol, excluding descendents.
void * DataIterCreator
handle a dataiter creator
Definition: c_api.h:79
MXNET_DLL int MXDataIterGetIterInfo(DataIterCreator creator, const char **name, const char **description, mx_uint *num_args, const char ***arg_names, const char ***arg_type_infos, const char ***arg_descriptions)
Get the detailed information about data iterator.
MXNET_DLL int MXKVStoreGetType(KVStoreHandle handle, const char **type)
get the type of the kvstore
void * RtcHandle
handle to MXRtc
Definition: c_api.h:87
MXNET_DLL int MXNDArrayGetGrad(NDArrayHandle handle, NDArrayHandle *out)
return gradient buffer attached to this NDArray
int(* CustomOpBwdDepFunc)(const int *, const int *, const int *, int *, int **, void *)
Definition: c_api.h:162
MXNET_DLL int MXSymbolInferType(SymbolHandle sym, mx_uint num_args, const char **keys, const int *arg_type_data, mx_uint *in_type_size, const int **in_type_data, mx_uint *out_type_size, const int **out_type_data, mx_uint *aux_type_size, const int **aux_type_data, int *complete)
infer type of unknown input types given the known one. The types are packed into a CSR matrix represe...
Definition: c_api.h:145
MXNET_DLL int MXKVStoreInit(KVStoreHandle handle, mx_uint num, const int *keys, NDArrayHandle *vals)
Init a list of (key,value) pairs in kvstore.
void(* backward)(int, float **, int *, unsigned **, int *, void *)
Definition: c_api.h:99
MXNET_DLL int MXDumpProfile()
Save profile and stop profiler.
Definition: c_api.h:130
MXNET_DLL int MXImperativeInvokeEx(AtomicSymbolCreator creator, int num_inputs, NDArrayHandle *inputs, int *num_outputs, NDArrayHandle **outputs, int num_params, const char **param_keys, const char **param_vals, const int **out_stypes)
invoke a nnvm op and imperative function
MXNET_DLL int MXRtcCudaModuleFree(CudaModuleHandle handle)
const void * FunctionHandle
handle to a mxnet narray function that changes NDArray
Definition: c_api.h:67
Definition: c_api.h:97
MXNET_DLL int MXRecordIOReaderReadRecord(RecordIOHandle handle, char const **buf, size_t *size)
Write a record to a RecordIO object.
MXNET_DLL int MXKVStorePush(KVStoreHandle handle, mx_uint num, const int *keys, NDArrayHandle *vals, int priority)
Push a list of (key,value) pairs to kvstore.
MXNET_DLL int MXListFunctions(mx_uint *out_size, FunctionHandle **out_array)
list all the available functions handles most user can use it to list all the needed functions ...
void(* list_outputs)(char ***, void *)
Definition: c_api.h:101
Definition: c_api.h:146
Definition: c_api.h:149
MXNET_DLL int MXRtcCudaKernelCall(CudaKernelHandle handle, int dev_id, void **args, mx_uint grid_dim_x, mx_uint grid_dim_y, mx_uint grid_dim_z, mx_uint block_dim_x, mx_uint block_dim_y, mx_uint block_dim_z, mx_uint shared_mem)
int(* CustomOpInferShapeFunc)(int, int *, unsigned **, void *)
Definition: c_api.h:159
MXNET_DLL int MXSymbolFree(SymbolHandle symbol)
Free the symbol handle.
MXNET_DLL int MXExecutorFree(ExecutorHandle handle)
Delete the executor.
MXNET_DLL int MXNDArrayWaitToWrite(NDArrayHandle handle)
Wait until all the pending read/write with respect NDArray are finished. Always call this before writ...
int(* CustomOpListFunc)(char ***, void *)
Definition: c_api.h:158
MXNET_DLL int MXExecutorForward(ExecutorHandle handle, int is_train)
Executor forward method.
MXNET_DLL int MXNDArrayGetData(NDArrayHandle handle, void **out_pdata)
get the content of the data in NDArray