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;
62 typedef int64_t dim_t;
63 // all the handles are simply void *
64 // will be casted internally to specific pointers types
65 // these typedefs are mainly used for readablity reasons
67 typedef void *NDArrayHandle;
69 typedef const void *FunctionHandle;
71 typedef void *AtomicSymbolCreator;
73 typedef void *CachedOpHandle;
75 typedef void *SymbolHandle;
77 typedef void *AtomicSymbolHandle;
79 typedef void *ExecutorHandle;
81 typedef void *DataIterCreator;
83 typedef void *DataIterHandle;
85 typedef void *KVStoreHandle;
87 typedef void *RecordIOHandle;
89 typedef void *RtcHandle;
91 typedef void *CudaModuleHandle;
93 typedef void *CudaKernelHandle;
95 typedef void *ProfileHandle;
96 
97 typedef void (*ExecutorMonitorCallback)(const char*,
99  void *);
100 
101 struct NativeOpInfo {
102  void (*forward)(int, float**, int*, unsigned**, int*, void*);
103  void (*backward)(int, float**, int*, unsigned**, int*, void*);
104  void (*infer_shape)(int, int*, unsigned**, void*);
105  void (*list_outputs)(char***, void*);
106  void (*list_arguments)(char***, void*);
107  // all functions also pass a payload void* pointer
108  void* p_forward;
109  void* p_backward;
113 };
114 
116  bool (*forward)(int, void**, int*, void*);
117  bool (*backward)(int, void**, int*, void*);
118  bool (*infer_shape)(int, int*, unsigned**, void*);
119  bool (*list_outputs)(char***, void*);
120  bool (*list_arguments)(char***, void*);
121  bool (*declare_backward_dependency)(const int*, const int*, const int*,
122  int*, int**, void*);
123  // all functions also pass a payload void* pointer
124  void* p_forward;
125  void* p_backward;
130 };
131 
132 typedef int (*MXGenericCallback)(void);
133 
136  int (**callbacks)(void);
137  void **contexts;
138 };
139 
144 };
145 
157 };
158 
159 
160 typedef int (*CustomOpFBFunc)(int /*size*/, void** /*ptrs*/, int* /*tags*/,
161  const int* /*reqs*/, const int /*is_train*/,
162  void* /*state*/);
163 typedef int (*CustomOpDelFunc)(void* /*state*/);
164 typedef int (*CustomOpListFunc)(char*** /*args*/, void* /*state*/);
165 typedef int (*CustomOpInferShapeFunc)(int /*num_input*/, int* /*ndims*/,
166  unsigned** /*shapes*/, void* /*state*/);
167 typedef int (*CustomOpInferStorageTypeFunc)(int /*num_input*/, int* /*stypes*/, void* /*state*/);
168 typedef int (*CustomOpBackwardInferStorageTypeFunc)(int /*num_input*/,
169  int * /*stypes*/,
170  int * /*tags*/,
171  void * /*state*/);
172 typedef int (*CustomOpInferTypeFunc)(int /*num_input*/, int* /*types*/, void* /*state*/);
173 typedef int (*CustomOpBwdDepFunc)(const int* /*out_grad*/, const int* /*in_data*/,
174  const int* /*out_data*/, int* /*num_deps*/,
175  int** /*rdeps*/, void* /*state*/);
176 typedef int (*CustomOpCreateFunc)(const char* /*ctx*/, int /*num_inputs*/,
177  unsigned** /*shapes*/, const int* /*ndims*/,
178  const int* /*dtypes*/, struct MXCallbackList* /*ret*/,
179  void* /*state*/);
180 typedef int (*CustomOpPropCreator)(const char* /*op_type*/, const int /*num_kwargs*/,
181  const char** /*keys*/, const char** /*values*/,
182  struct MXCallbackList* /*ret*/);
183 
184 
188 };
189 
190 typedef int (*CustomFunctionBwdFunc)(int /*num_ograds*/, int /*num_igrads*/, void** /*ptrs*/,
191  const int* /*reqs*/, const int /*is_train*/,
192  void* /*state*/);
193 typedef int (*CustomFunctionDelFunc)(void* /*state*/);
194 
204 MXNET_DLL const char *MXGetLastError();
205 
206 //-------------------------------------
207 // Part 0: Global State setups
208 //-------------------------------------
214 MXNET_DLL int MXRandomSeed(int seed);
215 
221 MXNET_DLL int MXRandomSeedContext(int seed, int dev_type, int dev_id);
222 
231 
240 MXNET_DLL int MXSetProcessProfilerConfig(int num_params, const char* const* keys,
241  const char* const* vals,
242  KVStoreHandle kvstoreHandle);
243 
251 MXNET_DLL int MXSetProfilerConfig(int num_params, const char* const* keys, const char* const* vals);
252 
264 MXNET_DLL int MXSetProcessProfilerState(int state, int profile_process,
265  KVStoreHandle kvStoreHandle);
266 
274 MXNET_DLL int MXSetProfilerState(int state);
275 
285 MXNET_DLL int MXDumpProcessProfile(int finished, int profile_process, KVStoreHandle kvStoreHandle);
286 
287 
293 MXNET_DLL int MXDumpProfile(int finished);
294 
302 MXNET_DLL int MXAggregateProfileStatsPrint(const char **out_str, int reset);
303 
312 MXNET_DLL int MXProcessProfilePause(int paused, int profile_process, KVStoreHandle kvStoreHandle);
313 
320 MXNET_DLL int MXProfilePause(int paused);
321 
328 MXNET_DLL int MXProfileCreateDomain(const char *domain, ProfileHandle *out);
329 
337 MXNET_DLL int MXProfileCreateTask(ProfileHandle domain,
338  const char *task_name,
339  ProfileHandle *out);
340 
348 MXNET_DLL int MXProfileCreateFrame(ProfileHandle domain,
349  const char *frame_name,
350  ProfileHandle *out);
351 
358 MXNET_DLL int MXProfileCreateEvent(const char *event_name, ProfileHandle *out);
359 
367 MXNET_DLL int MXProfileCreateCounter(ProfileHandle domain,
368  const char *counter_name,
369  ProfileHandle *out);
370 
376 MXNET_DLL int MXProfileDestroyHandle(ProfileHandle frame_handle);
377 
383 MXNET_DLL int MXProfileDurationStart(ProfileHandle duration_handle);
384 
390 MXNET_DLL int MXProfileDurationStop(ProfileHandle duration_handle);
391 
398 MXNET_DLL int MXProfileSetCounter(ProfileHandle counter_handle, uint64_t value);
399 
406 MXNET_DLL int MXProfileAdjustCounter(ProfileHandle counter_handle, int64_t value);
407 
415 MXNET_DLL int MXProfileSetMarker(ProfileHandle domain,
416  const char *instant_marker_name,
417  const char *scope);
418 
424 MXNET_DLL int MXSetNumOMPThreads(int thread_num);
425 
431 MXNET_DLL int MXEngineSetBulkSize(int bulk_size, int* prev_bulk_size);
432 
438 MXNET_DLL int MXGetGPUCount(int* out);
439 
448 MXNET_DLL int MXGetGPUMemoryInformation(int dev, int *free_mem, int *total_mem);
449 
457 MXNET_DLL int MXGetGPUMemoryInformation64(int dev, uint64_t *free_mem, uint64_t *total_mem);
458 
464 MXNET_DLL int MXGetVersion(int *out);
465 
466 //-------------------------------------
467 // Part 1: NDArray creation and deletion
468 //-------------------------------------
476 MXNET_DLL int MXNDArrayCreateNone(NDArrayHandle *out);
488 MXNET_DLL int MXNDArrayCreate(const mx_uint *shape,
489  mx_uint ndim,
490  int dev_type,
491  int dev_id,
492  int delay_alloc,
493  NDArrayHandle *out);
494 
507 MXNET_DLL int MXNDArrayCreateEx(const mx_uint *shape,
508  mx_uint ndim,
509  int dev_type,
510  int dev_id,
511  int delay_alloc,
512  int dtype,
513  NDArrayHandle *out);
514 
515 
533 MXNET_DLL int MXNDArrayCreateSparseEx(int storage_type,
534  const mx_uint *shape,
535  mx_uint ndim,
536  int dev_type,
537  int dev_id,
538  int delay_alloc,
539  int dtype,
540  mx_uint num_aux,
541  int *aux_type,
542  mx_uint *aux_ndims,
543  const mx_uint *aux_shape,
544  NDArrayHandle *out);
545 
553 MXNET_DLL int MXNDArrayLoadFromRawBytes(const void *buf,
554  size_t size,
555  NDArrayHandle *out);
563 MXNET_DLL int MXNDArraySaveRawBytes(NDArrayHandle handle,
564  size_t *out_size,
565  const char **out_buf);
574 MXNET_DLL int MXNDArraySave(const char* fname,
575  mx_uint num_args,
576  NDArrayHandle* args,
577  const char** keys);
587 MXNET_DLL int MXNDArrayLoad(const char* fname,
588  mx_uint *out_size,
589  NDArrayHandle** out_arr,
590  mx_uint *out_name_size,
591  const char*** out_names);
592 
607 MXNET_DLL int MXNDArrayLoadFromBuffer(const void *ndarray_buffer,
608  size_t size,
609  mx_uint *out_size,
610  NDArrayHandle** out_arr,
611  mx_uint *out_name_size,
612  const char*** out_names);
613 
625 MXNET_DLL int MXNDArraySyncCopyFromCPU(NDArrayHandle handle,
626  const void *data,
627  size_t size);
639 MXNET_DLL int MXNDArraySyncCopyToCPU(NDArrayHandle handle,
640  void *data,
641  size_t size);
649 MXNET_DLL int MXNDArraySyncCopyFromNDArray(NDArrayHandle handle_dst,
650  const NDArrayHandle handle_src,
651  const int i);
652 
658 MXNET_DLL int MXNDArraySyncCheckFormat(NDArrayHandle handle, const bool full_check);
665 MXNET_DLL int MXNDArrayWaitToRead(NDArrayHandle handle);
672 MXNET_DLL int MXNDArrayWaitToWrite(NDArrayHandle handle);
684 MXNET_DLL int MXNDArrayFree(NDArrayHandle handle);
693 MXNET_DLL int MXNDArraySlice(NDArrayHandle handle,
694  mx_uint slice_begin,
695  mx_uint slice_end,
696  NDArrayHandle *out);
697 
705 MXNET_DLL int MXNDArrayAt(NDArrayHandle handle,
706  mx_uint idx,
707  NDArrayHandle *out);
708 
712 MXNET_DLL int MXNDArrayGetStorageType(NDArrayHandle handle,
713  int *out_storage_type);
714 
723 MXNET_DLL int MXNDArrayReshape(NDArrayHandle handle,
724  int ndim,
725  int *dims,
726  NDArrayHandle *out);
727 
736 MXNET_DLL int MXNDArrayReshape64(NDArrayHandle handle,
737  int ndim,
738  dim_t *dims,
739  bool reverse,
740  NDArrayHandle *out);
748 MXNET_DLL int MXNDArrayGetShape(NDArrayHandle handle,
749  mx_uint *out_dim,
750  const mx_uint **out_pdata);
757 MXNET_DLL int MXNDArrayGetData(NDArrayHandle handle,
758  void **out_pdata);
765 MXNET_DLL int MXNDArrayGetDType(NDArrayHandle handle,
766  int *out_dtype);
767 
775 MXNET_DLL int MXNDArrayGetAuxType(NDArrayHandle handle,
776  mx_uint i,
777  int *out_type);
778 
784 MXNET_DLL int MXNDArrayGetAuxNDArray(NDArrayHandle handle,
785  mx_uint i,
786  NDArrayHandle *out);
787 
793 MXNET_DLL int MXNDArrayGetDataNDArray(NDArrayHandle handle,
794  NDArrayHandle *out);
802 MXNET_DLL int MXNDArrayGetContext(NDArrayHandle handle,
803  int *out_dev_type,
804  int *out_dev_id);
810 MXNET_DLL int MXNDArrayGetGrad(NDArrayHandle handle, NDArrayHandle *out);
816 MXNET_DLL int MXNDArrayDetach(NDArrayHandle handle, NDArrayHandle *out);
823 MXNET_DLL int MXNDArraySetGradState(NDArrayHandle handle, int state);
830 MXNET_DLL int MXNDArrayGetGradState(NDArrayHandle handle, int *out);
831 //--------------------------------
832 // Part 2: functions on NDArray
833 //--------------------------------
841 MXNET_DLL int MXListFunctions(mx_uint *out_size,
842  FunctionHandle **out_array);
849 MXNET_DLL int MXGetFunction(const char *name,
850  FunctionHandle *out);
863 MXNET_DLL int MXFuncGetInfo(FunctionHandle fun,
864  const char **name,
865  const char **description,
866  mx_uint *num_args,
867  const char ***arg_names,
868  const char ***arg_type_infos,
869  const char ***arg_descriptions,
870  const char **return_type DEFAULT(NULL));
881 MXNET_DLL int MXFuncDescribe(FunctionHandle fun,
882  mx_uint *num_use_vars,
883  mx_uint *num_scalars,
884  mx_uint *num_mutate_vars,
885  int *type_mask);
896 MXNET_DLL int MXFuncInvoke(FunctionHandle fun,
897  NDArrayHandle *use_vars,
898  mx_float *scalar_args,
899  NDArrayHandle *mutate_vars);
913 MXNET_DLL int MXFuncInvokeEx(FunctionHandle fun,
914  NDArrayHandle *use_vars,
915  mx_float *scalar_args,
916  NDArrayHandle *mutate_vars,
917  int num_params,
918  char **param_keys,
919  char **param_vals);
932 MXNET_DLL int MXImperativeInvoke(AtomicSymbolCreator creator,
933  int num_inputs,
934  NDArrayHandle *inputs,
935  int *num_outputs,
936  NDArrayHandle **outputs,
937  int num_params,
938  const char **param_keys,
939  const char **param_vals);
953 MXNET_DLL int MXImperativeInvokeEx(AtomicSymbolCreator creator,
954  int num_inputs,
955  NDArrayHandle *inputs,
956  int *num_outputs,
957  NDArrayHandle **outputs,
958  int num_params,
959  const char **param_keys,
960  const char **param_vals,
961  const int **out_stypes);
968 MXNET_DLL int MXAutogradSetIsRecording(int is_recording, int* prev);
975 MXNET_DLL int MXAutogradSetIsTraining(int is_training, int* prev);
981 MXNET_DLL int MXAutogradIsRecording(bool* curr);
987 MXNET_DLL int MXAutogradIsTraining(bool* curr);
994 MXNET_DLL int MXAutogradMarkVariables(mx_uint num_var,
995  NDArrayHandle *var_handles,
996  mx_uint *reqs_array,
997  NDArrayHandle *grad_handles);
1004 MXNET_DLL int MXAutogradComputeGradient(mx_uint num_output,
1005  NDArrayHandle* output_handles);
1014 MXNET_DLL int MXAutogradBackward(mx_uint num_output,
1015  NDArrayHandle* output_handles,
1016  NDArrayHandle* ograd_handles,
1017  int retain_graph);
1029 MXNET_DLL int MXAutogradBackwardEx(mx_uint num_output,
1030  NDArrayHandle *output_handles,
1031  NDArrayHandle *ograd_handles,
1032  mx_uint num_variables,
1033  NDArrayHandle *var_handles,
1034  int retain_graph,
1035  int create_graph,
1036  int is_train,
1037  NDArrayHandle **grad_handles,
1038  int **grad_stypes);
1039 /*
1040  * \brief get the graph constructed by autograd.
1041  * \param handle ndarray handle
1042  * \param out output symbol handle
1043  */
1044 MXNET_DLL int MXAutogradGetSymbol(NDArrayHandle handle, SymbolHandle *out);
1048 MXNET_DLL int MXCreateCachedOp(SymbolHandle handle, CachedOpHandle *out);
1052 MXNET_DLL int MXCreateCachedOpEx(SymbolHandle handle,
1053  int num_flags,
1054  const char** keys,
1055  const char** vals,
1056  CachedOpHandle *out);
1060 MXNET_DLL int MXFreeCachedOp(CachedOpHandle handle);
1064 MXNET_DLL int MXInvokeCachedOp(CachedOpHandle handle,
1065  int num_inputs,
1066  NDArrayHandle *inputs,
1067  int *num_outputs,
1068  NDArrayHandle **outputs);
1079 MXNET_DLL int MXInvokeCachedOpEx(CachedOpHandle handle,
1080  int num_inputs,
1081  NDArrayHandle *inputs,
1082  int *num_outputs,
1083  NDArrayHandle **outputs,
1084  const int** out_stypes);
1088 MXNET_DLL int MXInvokeCachedOp(CachedOpHandle handle,
1089  int num_inputs,
1090  NDArrayHandle *inputs,
1091  int *num_outputs,
1092  NDArrayHandle **outputs);
1093 //--------------------------------------------
1094 // Part 3: symbolic configuration generation
1095 //--------------------------------------------
1102 MXNET_DLL int MXListAllOpNames(mx_uint *out_size,
1103  const char ***out_array);
1110 MXNET_DLL int MXSymbolListAtomicSymbolCreators(mx_uint *out_size,
1111  AtomicSymbolCreator **out_array);
1112 
1118 MXNET_DLL int MXSymbolGetAtomicSymbolName(AtomicSymbolCreator creator,
1119  const char **name);
1120 
1127 MXNET_DLL int MXSymbolGetInputSymbols(SymbolHandle sym, SymbolHandle **inputs,
1128  int *input_size);
1129 
1139 MXNET_DLL int MXSymbolCutSubgraph(SymbolHandle sym, SymbolHandle **inputs,
1140  int *input_size);
1141 
1159 MXNET_DLL int MXSymbolGetAtomicSymbolInfo(AtomicSymbolCreator creator,
1160  const char **name,
1161  const char **description,
1162  mx_uint *num_args,
1163  const char ***arg_names,
1164  const char ***arg_type_infos,
1165  const char ***arg_descriptions,
1166  const char **key_var_num_args,
1167  const char **return_type DEFAULT(NULL));
1177 MXNET_DLL int MXSymbolCreateAtomicSymbol(AtomicSymbolCreator creator,
1178  mx_uint num_param,
1179  const char **keys,
1180  const char **vals,
1181  SymbolHandle *out);
1188 MXNET_DLL int MXSymbolCreateVariable(const char *name, SymbolHandle *out);
1196 MXNET_DLL int MXSymbolCreateGroup(mx_uint num_symbols,
1197  SymbolHandle *symbols,
1198  SymbolHandle *out);
1205 MXNET_DLL int MXSymbolCreateFromFile(const char *fname, SymbolHandle *out);
1212 MXNET_DLL int MXSymbolCreateFromJSON(const char *json, SymbolHandle *out);
1219 MXNET_DLL int MXSymbolSaveToFile(SymbolHandle symbol, const char *fname);
1226 MXNET_DLL int MXSymbolSaveToJSON(SymbolHandle symbol, const char **out_json);
1232 MXNET_DLL int MXSymbolFree(SymbolHandle symbol);
1239 MXNET_DLL int MXSymbolCopy(SymbolHandle symbol, SymbolHandle *out);
1246 MXNET_DLL int MXSymbolPrint(SymbolHandle symbol, const char **out_str);
1254 MXNET_DLL int MXSymbolGetName(SymbolHandle symbol,
1255  const char** out,
1256  int *success);
1265 MXNET_DLL int MXSymbolGetAttr(SymbolHandle symbol,
1266  const char* key,
1267  const char** out,
1268  int *success);
1285 MXNET_DLL int MXSymbolSetAttr(SymbolHandle symbol,
1286  const char* key,
1287  const char* value);
1295 MXNET_DLL int MXSymbolListAttr(SymbolHandle symbol,
1296  mx_uint *out_size,
1297  const char*** out);
1305 MXNET_DLL int MXSymbolListAttrShallow(SymbolHandle symbol,
1306  mx_uint *out_size,
1307  const char*** out);
1315 MXNET_DLL int MXSymbolListArguments(SymbolHandle symbol,
1316  mx_uint *out_size,
1317  const char ***out_str_array);
1325 MXNET_DLL int MXSymbolListOutputs(SymbolHandle symbol,
1326  mx_uint *out_size,
1327  const char ***out_str_array);
1328 
1335 MXNET_DLL int MXSymbolGetNumOutputs(SymbolHandle symbol,
1336  mx_uint *output_count);
1337 
1344 MXNET_DLL int MXSymbolGetInternals(SymbolHandle symbol,
1345  SymbolHandle *out);
1352 MXNET_DLL int MXSymbolGetChildren(SymbolHandle symbol,
1353  SymbolHandle *out);
1361 MXNET_DLL int MXSymbolGetOutput(SymbolHandle symbol,
1362  mx_uint index,
1363  SymbolHandle *out);
1364 
1372 MXNET_DLL int MXSymbolListAuxiliaryStates(SymbolHandle symbol,
1373  mx_uint *out_size,
1374  const char ***out_str_array);
1389 MXNET_DLL int MXSymbolCompose(SymbolHandle sym,
1390  const char *name,
1391  mx_uint num_args,
1392  const char** keys,
1393  SymbolHandle* args);
1403 MXNET_DLL int MXSymbolGrad(SymbolHandle sym,
1404  mx_uint num_wrt,
1405  const char** wrt,
1406  SymbolHandle* out);
1429 MXNET_DLL int MXSymbolInferShape(SymbolHandle sym,
1430  mx_uint num_args,
1431  const char** keys,
1432  const mx_uint *arg_ind_ptr,
1433  const mx_uint *arg_shape_data,
1434  mx_uint *in_shape_size,
1435  const mx_uint **in_shape_ndim,
1436  const mx_uint ***in_shape_data,
1437  mx_uint *out_shape_size,
1438  const mx_uint **out_shape_ndim,
1439  const mx_uint ***out_shape_data,
1440  mx_uint *aux_shape_size,
1441  const mx_uint **aux_shape_ndim,
1442  const mx_uint ***aux_shape_data,
1443  int *complete);
1468 MXNET_DLL int MXSymbolInferShapePartial(SymbolHandle sym,
1469  mx_uint num_args,
1470  const char** keys,
1471  const mx_uint *arg_ind_ptr,
1472  const mx_uint *arg_shape_data,
1473  mx_uint *in_shape_size,
1474  const mx_uint **in_shape_ndim,
1475  const mx_uint ***in_shape_data,
1476  mx_uint *out_shape_size,
1477  const mx_uint **out_shape_ndim,
1478  const mx_uint ***out_shape_data,
1479  mx_uint *aux_shape_size,
1480  const mx_uint **aux_shape_ndim,
1481  const mx_uint ***aux_shape_data,
1482  int *complete);
1483 
1502 MXNET_DLL int MXSymbolInferType(SymbolHandle sym,
1503  mx_uint num_args,
1504  const char** keys,
1505  const int *arg_type_data,
1506  mx_uint *in_type_size,
1507  const int **in_type_data,
1508  mx_uint *out_type_size,
1509  const int **out_type_data,
1510  mx_uint *aux_type_size,
1511  const int **aux_type_data,
1512  int *complete);
1513 
1524 MXNET_DLL int MXQuantizeSymbol(SymbolHandle sym_handle,
1525  SymbolHandle *ret_sym_handle,
1526  const mx_uint num_excluded_symbols,
1527  const SymbolHandle *excluded_symbols,
1528  const mx_uint num_offline,
1529  const char **offline_params,
1530  const char *quantized_dtype);
1531 
1541 MXNET_DLL int MXSetCalibTableToQuantizedSymbol(SymbolHandle qsym_handle,
1542  const mx_uint num_layers,
1543  const char** layer_names,
1544  const float* low_quantiles,
1545  const float* high_quantiles,
1546  SymbolHandle* ret_sym_handle);
1547 
1548 //--------------------------------------------
1549 // Part 4: Executor interface
1550 //--------------------------------------------
1556 MXNET_DLL int MXExecutorFree(ExecutorHandle handle);
1563 MXNET_DLL int MXExecutorPrint(ExecutorHandle handle, const char **out_str);
1571 MXNET_DLL int MXExecutorForward(ExecutorHandle handle, int is_train);
1581 MXNET_DLL int MXExecutorBackward(ExecutorHandle handle,
1582  mx_uint len,
1583  NDArrayHandle *head_grads);
1594 MXNET_DLL int MXExecutorBackwardEx(ExecutorHandle handle,
1595  mx_uint len,
1596  NDArrayHandle *head_grads,
1597  int is_train);
1606 MXNET_DLL int MXExecutorOutputs(ExecutorHandle handle,
1607  mx_uint *out_size,
1608  NDArrayHandle **out);
1609 
1625 MXNET_DLL int MXExecutorBind(SymbolHandle symbol_handle,
1626  int dev_type,
1627  int dev_id,
1628  mx_uint len,
1629  NDArrayHandle *in_args,
1630  NDArrayHandle *arg_grad_store,
1631  mx_uint *grad_req_type,
1632  mx_uint aux_states_len,
1633  NDArrayHandle *aux_states,
1634  ExecutorHandle *out);
1656 MXNET_DLL int MXExecutorBindX(SymbolHandle symbol_handle,
1657  int dev_type,
1658  int dev_id,
1659  mx_uint num_map_keys,
1660  const char** map_keys,
1661  const int* map_dev_types,
1662  const int* map_dev_ids,
1663  mx_uint len,
1664  NDArrayHandle *in_args,
1665  NDArrayHandle *arg_grad_store,
1666  mx_uint *grad_req_type,
1667  mx_uint aux_states_len,
1668  NDArrayHandle *aux_states,
1669  ExecutorHandle *out);
1692 MXNET_DLL int MXExecutorBindEX(SymbolHandle symbol_handle,
1693  int dev_type,
1694  int dev_id,
1695  mx_uint num_map_keys,
1696  const char** map_keys,
1697  const int* map_dev_types,
1698  const int* map_dev_ids,
1699  mx_uint len,
1700  NDArrayHandle *in_args,
1701  NDArrayHandle *arg_grad_store,
1702  mx_uint *grad_req_type,
1703  mx_uint aux_states_len,
1704  NDArrayHandle *aux_states,
1705  ExecutorHandle shared_exec,
1706  ExecutorHandle *out);
1707 
1708 MXNET_DLL int MXExecutorSimpleBind(SymbolHandle symbol_handle,
1709  int dev_type,
1710  int dev_id,
1711  const mx_uint num_g2c_keys,
1712  const char** g2c_keys,
1713  const int* g2c_dev_types,
1714  const int* g2c_dev_ids,
1715  const mx_uint provided_grad_req_list_len,
1716  const char** provided_grad_req_names,
1717  const char** provided_grad_req_types,
1718  const mx_uint num_provided_arg_shapes,
1719  const char** provided_arg_shape_names,
1720  const mx_uint* provided_arg_shape_data,
1721  const mx_uint* provided_arg_shape_idx,
1722  const mx_uint num_provided_arg_dtypes,
1723  const char** provided_arg_dtype_names,
1724  const int* provided_arg_dtypes,
1725  const mx_uint num_provided_arg_stypes,
1726  const char** provided_arg_stype_names,
1727  const int* provided_arg_stypes,
1728  const mx_uint num_shared_arg_names,
1729  const char** shared_arg_name_list,
1730  int* shared_buffer_len,
1731  const char** shared_buffer_name_list,
1732  NDArrayHandle* shared_buffer_handle_list,
1733  const char*** updated_shared_buffer_name_list,
1734  NDArrayHandle** updated_shared_buffer_handle_list,
1735  mx_uint* num_in_args,
1736  NDArrayHandle** in_args,
1737  NDArrayHandle** arg_grads,
1738  mx_uint* num_aux_states,
1739  NDArrayHandle** aux_states,
1740  ExecutorHandle shared_exec_handle,
1741  ExecutorHandle* out);
1742 
1764 MXNET_DLL int MXExecutorReshape(int partial_shaping,
1765  int allow_up_sizing,
1766  int dev_type,
1767  int dev_id,
1768  mx_uint num_map_keys,
1769  const char** map_keys,
1770  const int* map_dev_types,
1771  const int* map_dev_ids,
1772  const mx_uint num_provided_arg_shapes,
1773  const char** provided_arg_shape_names,
1774  const mx_uint* provided_arg_shape_data,
1775  const mx_uint* provided_arg_shape_idx,
1776  mx_uint* num_in_args,
1777  NDArrayHandle** in_args,
1778  NDArrayHandle** arg_grads,
1779  mx_uint* num_aux_states,
1780  NDArrayHandle** aux_states,
1781  ExecutorHandle shared_exec,
1782  ExecutorHandle *out);
1783 
1787 MXNET_DLL int MXExecutorGetOptimizedSymbol(ExecutorHandle handle,
1788  SymbolHandle *out);
1789 
1793 MXNET_DLL int MXExecutorSetMonitorCallback(ExecutorHandle handle,
1794  ExecutorMonitorCallback callback,
1795  void* callback_handle);
1796 //--------------------------------------------
1797 // Part 5: IO Interface
1798 //--------------------------------------------
1805 MXNET_DLL int MXListDataIters(mx_uint *out_size,
1806  DataIterCreator **out_array);
1817 MXNET_DLL int MXDataIterCreateIter(DataIterCreator handle,
1818  mx_uint num_param,
1819  const char **keys,
1820  const char **vals,
1821  DataIterHandle *out);
1833 MXNET_DLL int MXDataIterGetIterInfo(DataIterCreator creator,
1834  const char **name,
1835  const char **description,
1836  mx_uint *num_args,
1837  const char ***arg_names,
1838  const char ***arg_type_infos,
1839  const char ***arg_descriptions);
1845 MXNET_DLL int MXDataIterFree(DataIterHandle handle);
1852 MXNET_DLL int MXDataIterNext(DataIterHandle handle,
1853  int *out);
1859 MXNET_DLL int MXDataIterBeforeFirst(DataIterHandle handle);
1860 
1867 MXNET_DLL int MXDataIterGetData(DataIterHandle handle,
1868  NDArrayHandle *out);
1876 MXNET_DLL int MXDataIterGetIndex(DataIterHandle handle,
1877  uint64_t **out_index,
1878  uint64_t *out_size);
1885 MXNET_DLL int MXDataIterGetPadNum(DataIterHandle handle,
1886  int *pad);
1887 
1894 MXNET_DLL int MXDataIterGetLabel(DataIterHandle handle,
1895  NDArrayHandle *out);
1896 //--------------------------------------------
1897 // Part 6: basic KVStore interface
1898 //--------------------------------------------
1905 MXNET_DLL int MXInitPSEnv(mx_uint num_vars,
1906  const char **keys,
1907  const char **vals);
1908 
1909 
1916 MXNET_DLL int MXKVStoreCreate(const char *type,
1917  KVStoreHandle *out);
1918 
1926 MXNET_DLL int MXKVStoreSetGradientCompression(KVStoreHandle handle,
1927  mx_uint num_params,
1928  const char** keys,
1929  const char** vals);
1930 
1936 MXNET_DLL int MXKVStoreFree(KVStoreHandle handle);
1945 MXNET_DLL int MXKVStoreInit(KVStoreHandle handle,
1946  mx_uint num,
1947  const int* keys,
1948  NDArrayHandle* vals);
1949 
1958 MXNET_DLL int MXKVStoreInitEx(KVStoreHandle handle,
1959  mx_uint num,
1960  const char** keys,
1961  NDArrayHandle* vals);
1962 
1972 MXNET_DLL int MXKVStorePush(KVStoreHandle handle,
1973  mx_uint num,
1974  const int* keys,
1975  NDArrayHandle* vals,
1976  int priority);
1986 MXNET_DLL int MXKVStorePushEx(KVStoreHandle handle,
1987  mx_uint num,
1988  const char** keys,
1989  NDArrayHandle* vals,
1990  int priority);
2001 MXNET_DLL int MXKVStorePullWithSparse(KVStoreHandle handle,
2002  mx_uint num,
2003  const int* keys,
2004  NDArrayHandle* vals,
2005  int priority,
2006  bool ignore_sparse);
2017 MXNET_DLL int MXKVStorePullWithSparseEx(KVStoreHandle handle,
2018  mx_uint num,
2019  const char** keys,
2020  NDArrayHandle* vals,
2021  int priority,
2022  bool ignore_sparse);
2032 MXNET_DLL int MXKVStorePull(KVStoreHandle handle,
2033  mx_uint num,
2034  const int* keys,
2035  NDArrayHandle* vals,
2036  int priority);
2046 MXNET_DLL int MXKVStorePullEx(KVStoreHandle handle,
2047  mx_uint num,
2048  const char** keys,
2049  NDArrayHandle* vals,
2050  int priority);
2051 
2064 MXNET_DLL int MXKVStorePullRowSparse(KVStoreHandle handle,
2065  mx_uint num,
2066  const int* keys,
2067  NDArrayHandle* vals,
2068  const NDArrayHandle* row_ids,
2069  int priority);
2082 MXNET_DLL int MXKVStorePullRowSparseEx(KVStoreHandle handle,
2083  mx_uint num,
2084  const char** keys,
2085  NDArrayHandle* vals,
2086  const NDArrayHandle* row_ids,
2087  int priority);
2088 
2097 typedef void (MXKVStoreUpdater)(int key,
2098  NDArrayHandle recv,
2099  NDArrayHandle local,
2100  void *handle);
2109 typedef void (MXKVStoreStrUpdater)(const char* key,
2110  NDArrayHandle recv,
2111  NDArrayHandle local,
2112  void *handle);
2120 MXNET_DLL int MXKVStoreSetUpdater(KVStoreHandle handle,
2121  MXKVStoreUpdater updater,
2122  void *updater_handle);
2131 MXNET_DLL int MXKVStoreSetUpdaterEx(KVStoreHandle handle,
2132  MXKVStoreUpdater updater,
2133  MXKVStoreStrUpdater str_updater,
2134  void *updater_handle);
2141 MXNET_DLL int MXKVStoreGetType(KVStoreHandle handle,
2142  const char** type);
2143 //--------------------------------------------
2144 // Part 6: advanced KVStore for multi-machines
2145 //--------------------------------------------
2146 
2154 MXNET_DLL int MXKVStoreGetRank(KVStoreHandle handle,
2155  int *ret);
2156 
2166 MXNET_DLL int MXKVStoreGetGroupSize(KVStoreHandle handle,
2167  int *ret);
2168 
2174 MXNET_DLL int MXKVStoreIsWorkerNode(int *ret);
2175 
2176 
2182 MXNET_DLL int MXKVStoreIsServerNode(int *ret);
2183 
2184 
2190 MXNET_DLL int MXKVStoreIsSchedulerNode(int *ret);
2191 
2198 MXNET_DLL int MXKVStoreBarrier(KVStoreHandle handle);
2199 
2207 MXNET_DLL int MXKVStoreSetBarrierBeforeExit(KVStoreHandle handle,
2208  const int barrier_before_exit);
2209 
2216 typedef void (MXKVStoreServerController)(int head,
2217  const char *body,
2218  void *controller_handle);
2219 
2227 MXNET_DLL int MXKVStoreRunServer(KVStoreHandle handle,
2228  MXKVStoreServerController controller,
2229  void *controller_handle);
2230 
2238 MXNET_DLL int MXKVStoreSendCommmandToServers(KVStoreHandle handle,
2239  int cmd_id,
2240  const char* cmd_body);
2241 
2252 MXNET_DLL int MXKVStoreGetNumDeadNode(KVStoreHandle handle,
2253  const int node_id,
2254  int *number,
2255  const int timeout_sec DEFAULT(60));
2256 
2263 MXNET_DLL int MXRecordIOWriterCreate(const char *uri, RecordIOHandle *out);
2264 
2270 MXNET_DLL int MXRecordIOWriterFree(RecordIOHandle handle);
2271 
2279 MXNET_DLL int MXRecordIOWriterWriteRecord(RecordIOHandle handle,
2280  const char *buf, size_t size);
2281 
2288 MXNET_DLL int MXRecordIOWriterTell(RecordIOHandle handle, size_t *pos);
2289 
2296 MXNET_DLL int MXRecordIOReaderCreate(const char *uri, RecordIOHandle *out);
2297 
2303 MXNET_DLL int MXRecordIOReaderFree(RecordIOHandle handle);
2304 
2312 MXNET_DLL int MXRecordIOReaderReadRecord(RecordIOHandle handle,
2313  char const **buf, size_t *size);
2314 
2321 MXNET_DLL int MXRecordIOReaderSeek(RecordIOHandle handle, size_t pos);
2322 
2329 MXNET_DLL int MXRecordIOReaderTell(RecordIOHandle handle, size_t *pos);
2330 
2334 MXNET_DLL int MXRtcCreate(char* name, mx_uint num_input, mx_uint num_output,
2335  char** input_names, char** output_names,
2336  NDArrayHandle* inputs, NDArrayHandle* outputs,
2337  char* kernel, RtcHandle *out);
2338 
2342 MXNET_DLL int MXRtcPush(RtcHandle handle, mx_uint num_input, mx_uint num_output,
2343  NDArrayHandle* inputs, NDArrayHandle* outputs,
2344  mx_uint gridDimX,
2345  mx_uint gridDimY,
2346  mx_uint gridDimZ,
2347  mx_uint blockDimX,
2348  mx_uint blockDimY,
2349  mx_uint blockDimZ);
2350 
2354 MXNET_DLL int MXRtcFree(RtcHandle handle);
2355 /*
2356  * \brief register custom operators from frontend.
2357  * \param op_type name of custom op
2358  * \param creator
2359  */
2360 MXNET_DLL int MXCustomOpRegister(const char* op_type, CustomOpPropCreator creator);
2361 /*
2362  * \brief record custom function for backward later.
2363  * \param num_inputs number of input NDArrays.
2364  * \param inputs handle to input NDArrays.
2365  * \param num_outputs number of output NDArrays.
2366  * \param outputs handle to output NDArrays.
2367  * \param callbacks callbacks for backward function.
2368  */
2369 MXNET_DLL int MXCustomFunctionRecord(int num_inputs, NDArrayHandle *inputs,
2370  int num_outputs, NDArrayHandle *outputs,
2371  struct MXCallbackList *callbacks);
2372 /*
2373  * \brief create cuda rtc module
2374  * \param source cuda source code
2375  * \param num_options number of compiler flags
2376  * \param options compiler flags
2377  * \param num_exports number of exported function names
2378  * \param exported function names
2379  * \param out handle to created module
2380  */
2381 MXNET_DLL int MXRtcCudaModuleCreate(const char* source, int num_options,
2382  const char** options, int num_exports,
2383  const char** exports, CudaModuleHandle *out);
2384 /*
2385  * \brief delete cuda rtc module
2386  * \param handle handle to cuda module
2387  */
2388 MXNET_DLL int MXRtcCudaModuleFree(CudaModuleHandle handle);
2389 /*
2390  * \brief get kernel from module
2391  * \param handle handle to cuda module
2392  * \param name name of kernel function
2393  * \param num_args number of arguments
2394  * \param is_ndarray whether argument is ndarray
2395  * \param is_const whether argument is constant
2396  * \param arg_types data type of arguments
2397  * \param out created kernel
2398  */
2399 MXNET_DLL int MXRtcCudaKernelCreate(CudaModuleHandle handle, const char* name,
2400  int num_args, int* is_ndarray, int* is_const,
2401  int* arg_types, CudaKernelHandle *out);
2402 /*
2403  * \brief delete kernel
2404  * \param handle handle to previously created kernel
2405  */
2406 MXNET_DLL int MXRtcCudaKernelFree(CudaKernelHandle handle);
2407 /*
2408  * \brief launch cuda kernel
2409  * \param handle handle to kernel
2410  * \param dev_id (GPU) device id
2411  * \param args pointer to arguments
2412  * \param grid_dim_x grid dimension x
2413  * \param grid_dim_y grid dimension y
2414  * \param grid_dim_z grid dimension z
2415  * \param block_dim_x block dimension x
2416  * \param block_dim_y block dimension y
2417  * \param block_dim_z block dimension z
2418  * \param shared_mem size of dynamically allocated shared memory
2419  */
2420 MXNET_DLL int MXRtcCudaKernelCall(CudaKernelHandle handle, int dev_id, void** args,
2421  mx_uint grid_dim_x, mx_uint grid_dim_y,
2422  mx_uint grid_dim_z, mx_uint block_dim_x,
2423  mx_uint block_dim_y, mx_uint block_dim_z,
2424  mx_uint shared_mem);
2431 MXNET_DLL int MXNDArrayGetSharedMemHandle(NDArrayHandle handle, int* shared_pid,
2432  int* shared_id);
2442 MXNET_DLL int MXNDArrayCreateFromSharedMem(int shared_pid, int shared_id, const mx_uint *shape,
2443  mx_uint ndim, int dtype, NDArrayHandle *out);
2444 
2445 
2446 #ifdef __cplusplus
2447 }
2448 #endif // __cplusplus
2449 
2450 #endif // MXNET_C_API_H_
MXNET_DLL int MXKVStoreSendCommmandToServers(KVStoreHandle handle, int cmd_id, const char *cmd_body)
Send a command to all server nodes.
int(* CustomFunctionDelFunc)(void *)
Definition: c_api.h:193
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 MXGetGPUCount(int *out)
Get the number of GPUs.
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:83
MXNET_DLL int MXSymbolListAtomicSymbolCreators(mx_uint *out_size, AtomicSymbolCreator **out_array)
list all the available AtomicSymbolEntry
Definition: c_api.h:141
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 MXProfileSetCounter(ProfileHandle counter_handle, uint64_t value)
Set a counter, given its handle.
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:126
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:151
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)
Run as server (or scheduler)
MXNET_DLL int MXSetProfilerConfig(int num_params, const char *const *keys, const char *const *vals)
Set up configuration of profiler for worker/current process.
void(* list_arguments)(char ***, void *)
Definition: c_api.h:106
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 MXExecutorGetOptimizedSymbol(ExecutorHandle handle, SymbolHandle *out)
get optimized graph from graph executor
MXNET_DLL int MXProfileCreateEvent(const char *event_name, ProfileHandle *out)
Create profile event.
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:124
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 MXDumpProfile(int finished)
Save profile and stop profiler for worker/current process.
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:87
CustomOpCallbacks
Definition: c_api.h:140
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 MXProfileCreateTask(ProfileHandle domain, const char *task_name, ProfileHandle *out)
Create profile task.
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:79
CustomFunctionCallbacks
Definition: c_api.h:185
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:77
MXNET_DLL int MXGetGPUMemoryInformation64(int dev, uint64_t *free_mem, uint64_t *total_mem)
get the free and total available memory on a GPU
MXNET_DLL int MXProfilePause(int paused)
Pause profiler tuning collection for worker/current process.
void * p_backward
Definition: c_api.h:109
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:146
int(* CustomOpInferTypeFunc)(int, int *, void *)
Definition: c_api.h:172
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
Symbol reverse(const std::string &symbol_name, Symbol data, Shape axis)
Definition: op.h:778
MXNET_DLL int MXNDArrayLoadFromBuffer(const void *ndarray_buffer, size_t size, mx_uint *out_size, NDArrayHandle **out_arr, mx_uint *out_name_size, const char ***out_names)
Load list / dictionary of narrays from file content loaded into memory. This will load a list of ndar...
MXNET_DLL int MXSetProfilerState(int state)
Set up state of profiler for current process.
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 MXProfileDestroyHandle(ProfileHandle frame_handle)
Destroy a frame.
MXNET_DLL int MXNDArrayReshape64(NDArrayHandle handle, int ndim, dim_t *dims, bool reverse, NDArrayHandle *out)
Reshape the NDArray.
MXNET_DLL int MXSymbolListAttr(SymbolHandle symbol, mx_uint *out_size, const char ***out)
Get all attributes from symbol, including all descendents.
MXNET_DLL int MXRtcCudaKernelFree(CudaKernelHandle handle)
MXNET_DLL int MXExecutorReshape(int partial_shaping, int allow_up_sizing, 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, 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, mx_uint *num_in_args, NDArrayHandle **in_args, NDArrayHandle **arg_grads, mx_uint *num_aux_states, NDArrayHandle **aux_states, ExecutorHandle shared_exec, ExecutorHandle *out)
Return a new executor with the same symbol and shared memory, but different input/output shapes...
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 MXProfileCreateCounter(ProfileHandle domain, const char *counter_name, ProfileHandle *out)
Create profile counter.
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:2109
Definition: c_api.h:115
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:97
void * p_forward
Definition: c_api.h:108
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
int(* CustomOpBackwardInferStorageTypeFunc)(int, int *, int *, void *)
Definition: c_api.h:168
void * p_list_arguments
Definition: c_api.h:112
MXNET_DLL int MXKVStoreCreate(const char *type, KVStoreHandle *out)
Create a kvstore.
int(* CustomOpDelFunc)(void *)
Definition: c_api.h:163
void * p_declare_backward_dependency
Definition: c_api.h:129
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:128
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:75
MXNET_DLL int MXProfileCreateDomain(const char *domain, ProfileHandle *out)
Create profiling domain.
void * CudaModuleHandle
handle to rtc cuda module
Definition: c_api.h:91
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:136
void * CachedOpHandle
handle to cached operator
Definition: c_api.h:73
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 MXDumpProcessProfile(int finished, int profile_process, KVStoreHandle kvStoreHandle)
Save profile and stop profiler.
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 MXProfileSetMarker(ProfileHandle domain, const char *instant_marker_name, const char *scope)
Mark a single instant in time.
MXNET_DLL int MXNDArrayGetShape(NDArrayHandle handle, mx_uint *out_dim, const mx_uint **out_pdata)
get the shape of the array
MXNET_DLL int MXCreateCachedOpEx(SymbolHandle handle, int num_flags, const char **keys, const char **vals, CachedOpHandle *out)
create cached operator
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:135
MXNET_DLL int MXRandomSeed(int seed)
Seed all global random number generators in mxnet.
Definition: c_api.h:155
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:102
int(* MXGenericCallback)(void)
Definition: c_api.h:132
MXNET_DLL int MXSetCalibTableToQuantizedSymbol(SymbolHandle qsym_handle, const mx_uint num_layers, const char **layer_names, const float *low_quantiles, const float *high_quantiles, SymbolHandle *ret_sym_handle)
Set calibration table to node attributes in the sym.
MXNET_DLL int MXSymbolGetInputSymbols(SymbolHandle sym, SymbolHandle **inputs, int *input_size)
Get the input symbols of the graph.
Definition: c_api.h:186
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 MXRandomSeedContext(int seed, int dev_type, int dev_id)
Seed the global random number generator of the given device.
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:2216
Definition: c_api.h:142
void * KVStoreHandle
handle to KVStore
Definition: c_api.h:85
void * NDArrayHandle
handle to NDArray
Definition: c_api.h:67
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:127
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:148
int(* CustomOpCreateFunc)(const char *, int, unsigned **, const int *, const int *, struct MXCallbackList *, void *)
Definition: c_api.h:176
int(* CustomOpFBFunc)(int, void **, int *, const int *, const int, void *)
Definition: c_api.h:160
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:110
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 MXProfileDurationStop(ProfileHandle duration_handle)
Stop timing the duration of a profile duration object such as an event, task or frame.
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}.
MXNET_DLL int MXProfileAdjustCounter(ProfileHandle counter_handle, int64_t value)
Adjust a counter by the given amount, given its handle.
unsigned int mx_uint
manually define unsigned int
Definition: c_api.h:58
Definition: c_api.h:143
MXNET_DLL int MXAggregateProfileStatsPrint(const char **out_str, int reset)
Print aggregate stats to the a string.
MXNET_DLL int MXRecordIOWriterTell(RecordIOHandle handle, size_t *pos)
Get the current writer pointer position.
Definition: c_api.h:154
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:125
Definition: c_api.h:147
MXNET_DLL int MXSymbolCutSubgraph(SymbolHandle sym, SymbolHandle **inputs, int *input_size)
Cut a subgraph whose nodes are marked with a subgraph attribute. The input graph will be modified...
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 MXKVStorePullWithSparse(KVStoreHandle handle, mx_uint num, const int *keys, NDArrayHandle *vals, int priority, bool ignore_sparse)
pull a list of (key, value) pairs from the kvstore
MXNET_DLL int MXAutogradIsRecording(bool *curr)
get whether autograd recording is on
Definition: c_api.h:187
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)
int64_t dim_t
data type to store dim size
Definition: c_api.h:62
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:180
MXNET_DLL int MXSetProcessProfilerState(int state, int profile_process, KVStoreHandle kvStoreHandle)
Set up state of profiler for either worker or server process.
MXNET_DLL int MXSymbolCreateVariable(const char *name, SymbolHandle *out)
Create a Variable Symbol.
MXNET_DLL int MXProfileDurationStart(ProfileHandle duration_handle)
Start timing the duration of a profile duration object such as an event, task or frame.
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:190
MXNET_DLL int MXQuantizeSymbol(SymbolHandle sym_handle, SymbolHandle *ret_sym_handle, const mx_uint num_excluded_symbols, const SymbolHandle *excluded_symbols, const mx_uint num_offline, const char **offline_params, const char *quantized_dtype)
Convert a symbol into a quantized symbol where FP32 operators are replaced with INT8.
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:93
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 int MXProcessProfilePause(int paused, int profile_process, KVStoreHandle kvStoreHandle)
Pause profiler tuning collection.
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:137
void * AtomicSymbolCreator
handle to a function that takes param and creates symbol
Definition: c_api.h:71
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:104
void * ProfileHandle
handle to a Profile object (domain, duration, counter, etc.)
Definition: c_api.h:95
MXNET_DLL int MXKVStorePullWithSparseEx(KVStoreHandle handle, mx_uint num, const char **keys, NDArrayHandle *vals, int priority, bool ignore_sparse)
pull a list of (key, value) pairs from the kvstore, where each key is a string
void * p_list_outputs
Definition: c_api.h:111
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:2097
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:81
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:89
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:173
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:149
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:103
int(* CustomOpInferStorageTypeFunc)(int, int *, void *)
Definition: c_api.h:167
Definition: c_api.h:134
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:69
MXNET_DLL int MXSetProcessProfilerConfig(int num_params, const char *const *keys, const char *const *vals, KVStoreHandle kvstoreHandle)
Set up configuration of profiler for the process passed as profile_process in keys.
Definition: c_api.h:101
MXNET_DLL int MXRecordIOReaderReadRecord(RecordIOHandle handle, char const **buf, size_t *size)
Write a record to a RecordIO object.
MXNET_DLL int MXProfileCreateFrame(ProfileHandle domain, const char *frame_name, ProfileHandle *out)
Create profile frame.
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:105
Definition: c_api.h:150
Definition: c_api.h:153
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:165
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:164
MXNET_DLL int MXGetGPUMemoryInformation(int dev, int *free_mem, int *total_mem)
get the free and total available memory on a GPU Note: Deprecated, use MXGetGPUMemoryInformation64 in...
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