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 
24 #ifndef MXNET_C_API_H_
25 #define MXNET_C_API_H_
26 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif // __cplusplus
31 
33 #ifdef __cplusplus
34 #define DEFAULT(x) = x
35 #else
36 #define DEFAULT(x)
37 #endif // __cplusplus
38 
39 #include <stdint.h>
40 
41 #include <stdint.h>
42 #include <stddef.h>
43 #include <stdbool.h>
44 
46 #ifdef _WIN32
47 #ifdef MXNET_EXPORTS
48 #define MXNET_DLL __declspec(dllexport)
49 #else
50 #define MXNET_DLL __declspec(dllimport)
51 #endif
52 #else
53 #define MXNET_DLL
54 #endif
55 
57 typedef uint32_t mx_uint;
59 typedef float mx_float;
61 typedef int64_t dim_t;
62 // all the handles are simply void *
63 // will be casted internally to specific pointers types
64 // these typedefs are mainly used for readablity reasons
66 typedef void *NDArrayHandle;
68 typedef const void *FunctionHandle;
70 typedef void *AtomicSymbolCreator;
72 typedef void *CachedOpHandle;
74 typedef void *SymbolHandle;
76 typedef void *AtomicSymbolHandle;
78 typedef void *ExecutorHandle;
80 typedef void *DataIterCreator;
82 typedef void *DataIterHandle;
84 typedef void *KVStoreHandle;
86 typedef void *RecordIOHandle;
88 typedef void *RtcHandle;
90 typedef void *CudaModuleHandle;
92 typedef void *CudaKernelHandle;
94 typedef void *ProfileHandle;
96 typedef void *DLManagedTensorHandle;
98 typedef const void *ContextHandle;
100 typedef const void *EngineFnPropertyHandle;
102 typedef void *EngineVarHandle;
103 
105 typedef void (*EngineAsyncFunc)(void*, void*, void*);
107 typedef void (*EngineSyncFunc)(void*, void*);
109 typedef void (*EngineFuncParamDeleter)(void*);
110 typedef void (*ExecutorMonitorCallback)(const char*,
112  void*);
114 typedef void (*CachedOpMonitorCallback)(const char*,
115  const char*,
116  NDArrayHandle);
117 
118 
119 struct NativeOpInfo {
120  void (*forward)(int, float**, int*, unsigned**, int*, void*);
121  void (*backward)(int, float**, int*, unsigned**, int*, void*);
122  void (*infer_shape)(int, int*, unsigned**, void*);
123  void (*list_outputs)(char***, void*);
124  void (*list_arguments)(char***, void*);
125  // all functions also pass a payload void* pointer
126  void* p_forward;
127  void* p_backward;
131 };
132 
134  bool (*forward)(int, void**, int*, void*);
135  bool (*backward)(int, void**, int*, void*);
136  bool (*infer_shape)(int, int*, unsigned**, void*);
137  bool (*list_outputs)(char***, void*);
138  bool (*list_arguments)(char***, void*);
139  bool (*declare_backward_dependency)(const int*, const int*, const int*,
140  int*, int**, void*);
141  // all functions also pass a payload void* pointer
142  void* p_forward;
143  void* p_backward;
148 };
149 
150 typedef int (*MXGenericCallback)(void);
151 
154  int (**callbacks)(void);
155  void **contexts;
156 };
157 
158 struct LibFeature {
159  const char* name;
160  bool enabled;
161 };
162 
167 };
168 
180 };
181 
182 
183 typedef int (*CustomOpFBFunc)(int /*size*/, void** /*ptrs*/, int* /*tags*/,
184  const int* /*reqs*/, const int /*is_train*/,
185  void* /*state*/);
186 typedef int (*CustomOpDelFunc)(void* /*state*/);
187 typedef int (*CustomOpListFunc)(char*** /*args*/, void* /*state*/);
188 typedef int (*CustomOpInferShapeFunc)(int /*num_input*/, int* /*ndims*/,
189  int** /*shapes*/, void* /*state*/);
190 typedef int (*CustomOpInferStorageTypeFunc)(int /*num_input*/, int* /*stypes*/, void* /*state*/);
191 typedef int (*CustomOpBackwardInferStorageTypeFunc)(int /*num_input*/,
192  int * /*stypes*/,
193  int * /*tags*/,
194  void * /*state*/);
195 typedef int (*CustomOpInferTypeFunc)(int /*num_input*/, int* /*types*/, void* /*state*/);
196 typedef int (*CustomOpBwdDepFunc)(const int* /*out_grad*/, const int* /*in_data*/,
197  const int* /*out_data*/, int* /*num_deps*/,
198  int** /*rdeps*/, void* /*state*/);
199 typedef int (*CustomOpCreateFunc)(const char* /*ctx*/, int /*num_inputs*/,
200  unsigned** /*shapes*/, const int* /*ndims*/,
201  const int* /*dtypes*/, struct MXCallbackList* /*ret*/,
202  void* /*state*/);
203 typedef int (*CustomOpPropCreator)(const char* /*op_type*/, const int /*num_kwargs*/,
204  const char** /*keys*/, const char** /*values*/,
205  struct MXCallbackList* /*ret*/);
206 
207 
211 };
212 
213 typedef int (*CustomFunctionBwdFunc)(int /*num_ograds*/, int /*num_igrads*/, void** /*ptrs*/,
214  const int* /*reqs*/, const int /*is_train*/,
215  void* /*state*/);
216 typedef int (*CustomFunctionDelFunc)(void* /*state*/);
217 
227 MXNET_DLL const char *MXGetLastError();
228 
229 //-------------------------------------
230 // Part 0: Global State setups
231 //-------------------------------------
232 
239 MXNET_DLL int MXLoadLib(const char *path, unsigned verbose);
240 
247 MXNET_DLL int MXLibInfoFeatures(const struct LibFeature **libFeature, size_t *size);
248 
254 MXNET_DLL int MXRandomSeed(int seed);
255 
261 MXNET_DLL int MXRandomSeedContext(int seed, int dev_type, int dev_id);
262 
271 
280 MXNET_DLL int MXSetProcessProfilerConfig(int num_params, const char* const* keys,
281  const char* const* vals,
282  KVStoreHandle kvstoreHandle);
283 
291 MXNET_DLL int MXSetProfilerConfig(int num_params, const char* const* keys, const char* const* vals);
292 
304 MXNET_DLL int MXSetProcessProfilerState(int state, int profile_process,
305  KVStoreHandle kvStoreHandle);
306 
314 MXNET_DLL int MXSetProfilerState(int state);
315 
325 MXNET_DLL int MXDumpProcessProfile(int finished, int profile_process, KVStoreHandle kvStoreHandle);
326 
327 
333 MXNET_DLL int MXDumpProfile(int finished);
334 
335 
343 MXNET_DLL int MXAggregateProfileStatsPrint(const char **out_str, int reset);
344 
356 MXNET_DLL int MXAggregateProfileStatsPrintEx(const char **out_str, int reset, int format,
357  int sort_by, int ascending);
358 
367 MXNET_DLL int MXProcessProfilePause(int paused, int profile_process, KVStoreHandle kvStoreHandle);
368 
375 MXNET_DLL int MXProfilePause(int paused);
376 
383 MXNET_DLL int MXProfileCreateDomain(const char *domain, ProfileHandle *out);
384 
392 MXNET_DLL int MXProfileCreateTask(ProfileHandle domain,
393  const char *task_name,
394  ProfileHandle *out);
395 
403 MXNET_DLL int MXProfileCreateFrame(ProfileHandle domain,
404  const char *frame_name,
405  ProfileHandle *out);
406 
413 MXNET_DLL int MXProfileCreateEvent(const char *event_name, ProfileHandle *out);
414 
422 MXNET_DLL int MXProfileCreateCounter(ProfileHandle domain,
423  const char *counter_name,
424  ProfileHandle *out);
425 
431 MXNET_DLL int MXProfileDestroyHandle(ProfileHandle frame_handle);
432 
438 MXNET_DLL int MXProfileDurationStart(ProfileHandle duration_handle);
439 
445 MXNET_DLL int MXProfileDurationStop(ProfileHandle duration_handle);
446 
453 MXNET_DLL int MXProfileSetCounter(ProfileHandle counter_handle, uint64_t value);
454 
461 MXNET_DLL int MXProfileAdjustCounter(ProfileHandle counter_handle, int64_t value);
462 
470 MXNET_DLL int MXProfileSetMarker(ProfileHandle domain,
471  const char *instant_marker_name,
472  const char *scope);
473 
479 MXNET_DLL int MXSetNumOMPThreads(int thread_num);
480 
486 MXNET_DLL int MXEngineSetBulkSize(int bulk_size, int* prev_bulk_size);
487 
493 MXNET_DLL int MXGetGPUCount(int* out);
494 
503 MXNET_DLL int MXGetGPUMemoryInformation(int dev, int *free_mem, int *total_mem);
504 
512 MXNET_DLL int MXGetGPUMemoryInformation64(int dev, uint64_t *free_mem, uint64_t *total_mem);
513 
519 MXNET_DLL int MXGetVersion(int *out);
520 
526 #if MXNET_USE_TVM_OP
527 MXNET_DLL int MXLoadTVMOp(const char *libpath);
528 
529 struct OtherOptionEntity {
530  int val;
531 };
532 
533 struct OtherOptionSpace {
534  OtherOptionEntity* entities;
535  int entities_size;
536 };
537 
538 struct ConfigSpace {
539  int entity_map_size;
540  char** entity_map_key;
541  OtherOptionEntity* entity_map_val;
542  int space_map_size;
543  char** space_map_key;
544  OtherOptionSpace* space_map_val;
545 };
546 
547 typedef struct ConfigSpaces {
548  int spaces_size;
549  char** spaces_key;
550  ConfigSpace* spaces_val;
551 } ConfigSpaces;
552 
553 MXNET_DLL int MXLoadTVMConfig(ConfigSpaces config);
554 #endif // MXNET_USE_TVM_OP
555 
556 
557 //-------------------------------------
558 // Part 1: NDArray creation and deletion
559 //-------------------------------------
567 MXNET_DLL int MXNDArrayCreateNone(NDArrayHandle *out);
579 MXNET_DLL int MXNDArrayCreate(const uint32_t *shape,
580  uint32_t ndim,
581  int dev_type,
582  int dev_id,
583  int delay_alloc,
584  NDArrayHandle *out);
585 
600 MXNET_DLL int MXNDArrayCreateEx(const uint32_t *shape,
601  uint32_t ndim,
602  int dev_type,
603  int dev_id,
604  int delay_alloc,
605  int dtype,
606  NDArrayHandle *out);
607 
622 MXNET_DLL int MXNDArrayCreateEx64(const int64_t *shape,
623  int ndim,
624  int dev_type,
625  int dev_id,
626  int delay_alloc,
627  int dtype,
628  NDArrayHandle *out);
629 
649 MXNET_DLL int MXNDArrayCreateSparseEx(int storage_type,
650  const uint32_t *shape,
651  uint32_t ndim,
652  int dev_type,
653  int dev_id,
654  int delay_alloc,
655  int dtype,
656  uint32_t num_aux,
657  int *aux_type,
658  uint32_t *aux_ndims,
659  const uint32_t *aux_shape,
660  NDArrayHandle *out);
661 
681 MXNET_DLL int MXNDArrayCreateSparseEx64(int storage_type,
682  const int64_t *shape,
683  int ndim,
684  int dev_type,
685  int dev_id,
686  int delay_alloc,
687  int dtype,
688  uint32_t num_aux,
689  int *aux_type,
690  int *aux_ndims,
691  const int64_t *aux_shape,
692  NDArrayHandle *out);
693 
701 MXNET_DLL int MXNDArrayLoadFromRawBytes(const void *buf,
702  size_t size,
703  NDArrayHandle *out);
711 MXNET_DLL int MXNDArraySaveRawBytes(NDArrayHandle handle,
712  size_t *out_size,
713  const char **out_buf);
722 MXNET_DLL int MXNDArraySave(const char* fname,
723  uint32_t num_args,
724  NDArrayHandle* args,
725  const char** keys);
735 MXNET_DLL int MXNDArrayLoad(const char* fname,
736  uint32_t *out_size,
737  NDArrayHandle** out_arr,
738  uint32_t *out_name_size,
739  const char*** out_names);
740 
755 MXNET_DLL int MXNDArrayLoadFromBuffer(const void *ndarray_buffer,
756  size_t size,
757  uint32_t *out_size,
758  NDArrayHandle** out_arr,
759  uint32_t *out_name_size,
760  const char*** out_names);
761 
773 MXNET_DLL int MXNDArraySyncCopyFromCPU(NDArrayHandle handle,
774  const void *data,
775  size_t size);
787 MXNET_DLL int MXNDArraySyncCopyToCPU(NDArrayHandle handle,
788  void *data,
789  size_t size);
790 
798 MXNET_DLL int MXNDArraySyncCopyFromNDArray(NDArrayHandle handle_dst,
799  const NDArrayHandle handle_src,
800  const int i);
801 
807 MXNET_DLL int MXNDArraySyncCheckFormat(NDArrayHandle handle, const bool full_check);
808 
815 MXNET_DLL int MXNDArrayWaitToRead(NDArrayHandle handle);
816 
823 MXNET_DLL int MXNDArrayWaitToWrite(NDArrayHandle handle);
824 
831 
837 MXNET_DLL int MXNDArrayFree(NDArrayHandle handle);
838 
849 MXNET_DLL int MXNDArraySlice(NDArrayHandle handle,
850  uint32_t slice_begin,
851  uint32_t slice_end,
852  NDArrayHandle *out);
853 
864 MXNET_DLL int MXNDArraySlice64(NDArrayHandle handle,
865  int64_t slice_begin,
866  int64_t slice_end,
867  NDArrayHandle *out);
868 
878 MXNET_DLL int MXNDArrayAt(NDArrayHandle handle,
879  uint32_t idx,
880  NDArrayHandle *out);
881 
891 MXNET_DLL int MXNDArrayAt64(NDArrayHandle handle,
892  int64_t idx,
893  NDArrayHandle *out);
894 
898 MXNET_DLL int MXNDArrayGetStorageType(NDArrayHandle handle,
899  int *out_storage_type);
900 
909 MXNET_DLL int MXNDArrayReshape(NDArrayHandle handle,
910  int ndim,
911  int *dims,
912  NDArrayHandle *out);
913 
922 MXNET_DLL int MXNDArrayReshape64(NDArrayHandle handle,
923  int ndim,
924  dim_t *dims,
925  bool reverse,
926  NDArrayHandle *out);
935 MXNET_DLL int MXNDArrayGetShape(NDArrayHandle handle,
936  uint32_t *out_dim,
937  const uint32_t **out_pdata);
938 
948 MXNET_DLL int MXNDArrayGetShapeEx(NDArrayHandle handle,
949  int *out_dim,
950  const int **out_pdata);
951 
961 MXNET_DLL int MXNDArrayGetShapeEx64(NDArrayHandle handle,
962  int *out_dim,
963  const int64_t **out_pdata);
964 
971 MXNET_DLL int MXNDArrayGetData(NDArrayHandle handle,
972  void **out_pdata);
982 MXNET_DLL int MXNDArrayToDLPack(NDArrayHandle handle,
983  DLManagedTensorHandle *out_dlpack);
984 
1000 MXNET_DLL int MXNDArrayFromDLPack(DLManagedTensorHandle dlpack,
1001  NDArrayHandle *out_handle);
1002 
1017 MXNET_DLL int MXNDArrayFromDLPackEx(DLManagedTensorHandle dlpack,
1018  const bool transient_handle,
1019  NDArrayHandle *out_handle);
1020 
1026 MXNET_DLL int MXNDArrayCallDLPackDeleter(DLManagedTensorHandle dlpack);
1027 
1034 MXNET_DLL int MXNDArrayGetDType(NDArrayHandle handle,
1035  int *out_dtype);
1036 
1046 MXNET_DLL int MXNDArrayGetAuxType(NDArrayHandle handle,
1047  uint32_t i,
1048  int *out_type);
1049 
1059 MXNET_DLL int MXNDArrayGetAuxType64(NDArrayHandle handle,
1060  int64_t i,
1061  int *out_type);
1062 
1070 MXNET_DLL int MXNDArrayGetAuxNDArray(NDArrayHandle handle,
1071  uint32_t i,
1072  NDArrayHandle *out);
1073 
1081 MXNET_DLL int MXNDArrayGetAuxNDArray64(NDArrayHandle handle,
1082  int64_t i,
1083  NDArrayHandle *out);
1084 
1090 MXNET_DLL int MXNDArrayGetDataNDArray(NDArrayHandle handle,
1091  NDArrayHandle *out);
1099 MXNET_DLL int MXNDArrayGetContext(NDArrayHandle handle,
1100  int *out_dev_type,
1101  int *out_dev_id);
1107 MXNET_DLL int MXNDArrayGetGrad(NDArrayHandle handle, NDArrayHandle *out);
1113 MXNET_DLL int MXNDArrayDetach(NDArrayHandle handle, NDArrayHandle *out);
1120 MXNET_DLL int MXNDArraySetGradState(NDArrayHandle handle, int state);
1127 MXNET_DLL int MXNDArrayGetGradState(NDArrayHandle handle, int *out);
1128 //--------------------------------
1129 // Part 2: functions on NDArray
1130 //--------------------------------
1138 MXNET_DLL int MXListFunctions(uint32_t *out_size,
1139  FunctionHandle **out_array);
1140 
1147 MXNET_DLL int MXGetFunction(const char *name,
1148  FunctionHandle *out);
1161 MXNET_DLL int MXFuncGetInfo(FunctionHandle fun,
1162  const char **name,
1163  const char **description,
1164  uint32_t *num_args,
1165  const char ***arg_names,
1166  const char ***arg_type_infos,
1167  const char ***arg_descriptions,
1168  const char **return_type DEFAULT(NULL));
1179 MXNET_DLL int MXFuncDescribe(FunctionHandle fun,
1180  uint32_t *num_use_vars,
1181  uint32_t *num_scalars,
1182  uint32_t *num_mutate_vars,
1183  int *type_mask);
1194 MXNET_DLL int MXFuncInvoke(FunctionHandle fun,
1195  NDArrayHandle *use_vars,
1196  float *scalar_args,
1197  NDArrayHandle *mutate_vars);
1211 MXNET_DLL int MXFuncInvokeEx(FunctionHandle fun,
1212  NDArrayHandle *use_vars,
1213  float *scalar_args,
1214  NDArrayHandle *mutate_vars,
1215  int num_params,
1216  char **param_keys,
1217  char **param_vals);
1230 MXNET_DLL int MXImperativeInvoke(AtomicSymbolCreator creator,
1231  int num_inputs,
1232  NDArrayHandle *inputs,
1233  int *num_outputs,
1234  NDArrayHandle **outputs,
1235  int num_params,
1236  const char **param_keys,
1237  const char **param_vals);
1251 MXNET_DLL int MXImperativeInvokeEx(AtomicSymbolCreator creator,
1252  int num_inputs,
1253  NDArrayHandle *inputs,
1254  int *num_outputs,
1255  NDArrayHandle **outputs,
1256  int num_params,
1257  const char **param_keys,
1258  const char **param_vals,
1259  const int **out_stypes);
1266 MXNET_DLL int MXAutogradSetIsRecording(int is_recording, int* prev);
1273 MXNET_DLL int MXAutogradSetIsTraining(int is_training, int* prev);
1279 MXNET_DLL int MXAutogradIsRecording(bool* curr);
1285 MXNET_DLL int MXAutogradIsTraining(bool* curr);
1291 MXNET_DLL int MXIsNumpyShape(int* curr);
1299 MXNET_DLL int MXSetIsNumpyShape(int is_np_shape, int* prev);
1306 MXNET_DLL int MXAutogradMarkVariables(uint32_t num_var,
1307  NDArrayHandle *var_handles,
1308  uint32_t *reqs_array,
1309  NDArrayHandle *grad_handles);
1316 MXNET_DLL int MXAutogradComputeGradient(uint32_t num_output,
1317  NDArrayHandle* output_handles);
1326 MXNET_DLL int MXAutogradBackward(uint32_t num_output,
1327  NDArrayHandle* output_handles,
1328  NDArrayHandle* ograd_handles,
1329  int retain_graph);
1341 MXNET_DLL int MXAutogradBackwardEx(uint32_t num_output,
1342  NDArrayHandle *output_handles,
1343  NDArrayHandle *ograd_handles,
1344  uint32_t num_variables,
1345  NDArrayHandle *var_handles,
1346  int retain_graph,
1347  int create_graph,
1348  int is_train,
1349  NDArrayHandle **grad_handles,
1350  int **grad_stypes);
1351 /*
1352  * \brief get the graph constructed by autograd.
1353  * \param handle ndarray handle
1354  * \param out output symbol handle
1355  */
1356 MXNET_DLL int MXAutogradGetSymbol(NDArrayHandle handle, SymbolHandle *out);
1360 MXNET_DLL int MXCreateCachedOp(SymbolHandle handle, CachedOpHandle *out);
1364 MXNET_DLL int MXCreateCachedOpEx(SymbolHandle handle,
1365  int num_flags,
1366  const char** keys,
1367  const char** vals,
1368  CachedOpHandle *out);
1369 
1374 MXNET_DLL int MXCreateCachedOpEX(SymbolHandle handle,
1375  int num_flags,
1376  const char** keys,
1377  const char** vals,
1378  CachedOpHandle *out,
1379  bool thread_safe DEFAULT(false));
1380 
1384 MXNET_DLL int MXFreeCachedOp(CachedOpHandle handle);
1385 
1389 MXNET_DLL int MXInvokeCachedOp(CachedOpHandle handle,
1390  int num_inputs,
1391  NDArrayHandle *inputs,
1392  int *num_outputs,
1393  NDArrayHandle **outputs);
1394 
1405 MXNET_DLL int MXInvokeCachedOpEx(CachedOpHandle handle,
1406  int num_inputs,
1407  NDArrayHandle *inputs,
1408  int *num_outputs,
1409  NDArrayHandle **outputs,
1410  const int** out_stypes);
1411 
1415 MXNET_DLL int MXCachedOpRegisterOpHook(NDArrayHandle handle,
1416  CachedOpMonitorCallback callback,
1417  bool monitor_all);
1418 
1419 //--------------------------------------------
1420 // Part 3: symbolic configuration generation
1421 //--------------------------------------------
1428 MXNET_DLL int MXListAllOpNames(uint32_t *out_size,
1429  const char ***out_array);
1430 
1437 MXNET_DLL int MXSymbolListAtomicSymbolCreators(uint32_t *out_size,
1438  AtomicSymbolCreator **out_array);
1439 
1445 MXNET_DLL int MXSymbolGetAtomicSymbolName(AtomicSymbolCreator creator,
1446  const char **name);
1447 
1454 MXNET_DLL int MXSymbolGetInputSymbols(SymbolHandle sym, SymbolHandle **inputs,
1455  int *input_size);
1456 
1466 MXNET_DLL int MXSymbolCutSubgraph(SymbolHandle sym, SymbolHandle **inputs,
1467  int *input_size);
1468 
1486 MXNET_DLL int MXSymbolGetAtomicSymbolInfo(AtomicSymbolCreator creator,
1487  const char **name,
1488  const char **description,
1489  uint32_t *num_args,
1490  const char ***arg_names,
1491  const char ***arg_type_infos,
1492  const char ***arg_descriptions,
1493  const char **key_var_num_args,
1494  const char **return_type DEFAULT(NULL));
1504 MXNET_DLL int MXSymbolCreateAtomicSymbol(AtomicSymbolCreator creator,
1505  uint32_t num_param,
1506  const char **keys,
1507  const char **vals,
1508  SymbolHandle *out);
1515 MXNET_DLL int MXSymbolCreateVariable(const char *name, SymbolHandle *out);
1523 MXNET_DLL int MXSymbolCreateGroup(uint32_t num_symbols,
1524  SymbolHandle *symbols,
1525  SymbolHandle *out);
1532 MXNET_DLL int MXSymbolCreateFromFile(const char *fname, SymbolHandle *out);
1539 MXNET_DLL int MXSymbolCreateFromJSON(const char *json, SymbolHandle *out);
1546 MXNET_DLL int MXSymbolRemoveAmpCast(SymbolHandle sym_handle, SymbolHandle* ret_sym_handle);
1553 MXNET_DLL int MXSymbolSaveToFile(SymbolHandle symbol, const char *fname);
1560 MXNET_DLL int MXSymbolSaveToJSON(SymbolHandle symbol, const char **out_json);
1566 MXNET_DLL int MXSymbolFree(SymbolHandle symbol);
1573 MXNET_DLL int MXSymbolCopy(SymbolHandle symbol, SymbolHandle *out);
1580 MXNET_DLL int MXSymbolPrint(SymbolHandle symbol, const char **out_str);
1588 MXNET_DLL int MXSymbolGetName(SymbolHandle symbol,
1589  const char** out,
1590  int *success);
1599 MXNET_DLL int MXSymbolGetAttr(SymbolHandle symbol,
1600  const char* key,
1601  const char** out,
1602  int *success);
1619 MXNET_DLL int MXSymbolSetAttr(SymbolHandle symbol,
1620  const char* key,
1621  const char* value);
1629 MXNET_DLL int MXSymbolListAttr(SymbolHandle symbol,
1630  uint32_t *out_size,
1631  const char*** out);
1639 MXNET_DLL int MXSymbolListAttrShallow(SymbolHandle symbol,
1640  uint32_t *out_size,
1641  const char*** out);
1649 MXNET_DLL int MXSymbolListArguments(SymbolHandle symbol,
1650  uint32_t *out_size,
1651  const char ***out_str_array);
1652 
1660 MXNET_DLL int MXSymbolListOutputs(SymbolHandle symbol,
1661  uint32_t *out_size,
1662  const char ***out_str_array);
1663 
1670 MXNET_DLL int MXSymbolGetNumOutputs(SymbolHandle symbol,
1671  uint32_t *output_count);
1672 
1679 MXNET_DLL int MXSymbolGetInternals(SymbolHandle symbol,
1680  SymbolHandle *out);
1687 MXNET_DLL int MXSymbolGetChildren(SymbolHandle symbol,
1688  SymbolHandle *out);
1696 MXNET_DLL int MXSymbolGetOutput(SymbolHandle symbol,
1697  uint32_t index,
1698  SymbolHandle *out);
1699 
1707 MXNET_DLL int MXSymbolListAuxiliaryStates(SymbolHandle symbol,
1708  uint32_t *out_size,
1709  const char ***out_str_array);
1710 
1725 MXNET_DLL int MXSymbolCompose(SymbolHandle sym,
1726  const char *name,
1727  uint32_t num_args,
1728  const char** keys,
1729  SymbolHandle* args);
1739 MXNET_DLL int MXSymbolGrad(SymbolHandle sym,
1740  uint32_t num_wrt,
1741  const char** wrt,
1742  SymbolHandle* out);
1766 MXNET_DLL int MXSymbolInferShape(SymbolHandle sym,
1767  uint32_t num_args,
1768  const char** keys,
1769  const uint32_t *arg_ind_ptr,
1770  const uint32_t *arg_shape_data,
1771  uint32_t *in_shape_size,
1772  const uint32_t **in_shape_ndim,
1773  const uint32_t ***in_shape_data,
1774  uint32_t *out_shape_size,
1775  const uint32_t **out_shape_ndim,
1776  const uint32_t ***out_shape_data,
1777  uint32_t *aux_shape_size,
1778  const uint32_t **aux_shape_ndim,
1779  const uint32_t ***aux_shape_data,
1780  int *complete);
1781 
1805 MXNET_DLL int MXSymbolInferShapeEx(SymbolHandle sym,
1806  uint32_t num_args,
1807  const char** keys,
1808  const uint32_t *arg_ind_ptr,
1809  const int *arg_shape_data,
1810  uint32_t *in_shape_size,
1811  const int **in_shape_ndim,
1812  const int ***in_shape_data,
1813  uint32_t *out_shape_size,
1814  const int **out_shape_ndim,
1815  const int ***out_shape_data,
1816  uint32_t *aux_shape_size,
1817  const int **aux_shape_ndim,
1818  const int ***aux_shape_data,
1819  int *complete);
1820 
1844 MXNET_DLL int MXSymbolInferShapeEx64(SymbolHandle sym,
1845  uint32_t num_args,
1846  const char** keys,
1847  const int64_t *arg_ind_ptr,
1848  const int64_t *arg_shape_data,
1849  size_t *in_shape_size,
1850  const int **in_shape_ndim,
1851  const int64_t ***in_shape_data,
1852  size_t *out_shape_size,
1853  const int **out_shape_ndim,
1854  const int64_t ***out_shape_data,
1855  size_t *aux_shape_size,
1856  const int **aux_shape_ndim,
1857  const int64_t ***aux_shape_data,
1858  int *complete);
1859 
1885 MXNET_DLL int MXSymbolInferShapePartial(SymbolHandle sym,
1886  uint32_t num_args,
1887  const char** keys,
1888  const uint32_t *arg_ind_ptr,
1889  const uint32_t *arg_shape_data,
1890  uint32_t *in_shape_size,
1891  const uint32_t **in_shape_ndim,
1892  const uint32_t ***in_shape_data,
1893  uint32_t *out_shape_size,
1894  const uint32_t **out_shape_ndim,
1895  const uint32_t ***out_shape_data,
1896  uint32_t *aux_shape_size,
1897  const uint32_t **aux_shape_ndim,
1898  const uint32_t ***aux_shape_data,
1899  int *complete);
1900 
1927 MXNET_DLL int MXSymbolInferShapePartialEx(SymbolHandle sym,
1928  uint32_t num_args,
1929  const char** keys,
1930  const uint32_t *arg_ind_ptr,
1931  const int *arg_shape_data,
1932  uint32_t *in_shape_size,
1933  const int **in_shape_ndim,
1934  const int ***in_shape_data,
1935  uint32_t *out_shape_size,
1936  const int **out_shape_ndim,
1937  const int ***out_shape_data,
1938  uint32_t *aux_shape_size,
1939  const int **aux_shape_ndim,
1940  const int ***aux_shape_data,
1941  int *complete);
1942 
1969 MXNET_DLL int MXSymbolInferShapePartialEx64(SymbolHandle sym,
1970  uint32_t num_args,
1971  const char** keys,
1972  const int64_t *arg_ind_ptr,
1973  const int64_t *arg_shape_data,
1974  size_t *in_shape_size,
1975  const int **in_shape_ndim,
1976  const int64_t ***in_shape_data,
1977  size_t *out_shape_size,
1978  const int **out_shape_ndim,
1979  const int64_t ***out_shape_data,
1980  size_t *aux_shape_size,
1981  const int **aux_shape_ndim,
1982  const int64_t ***aux_shape_data,
1983  int *complete);
1984 
2003 MXNET_DLL int MXSymbolInferType(SymbolHandle sym,
2004  uint32_t num_args,
2005  const char** keys,
2006  const int *arg_type_data,
2007  uint32_t *in_type_size,
2008  const int **in_type_data,
2009  uint32_t *out_type_size,
2010  const int **out_type_data,
2011  uint32_t *aux_type_size,
2012  const int **aux_type_data,
2013  int *complete);
2014 
2035 MXNET_DLL int MXSymbolInferTypePartial(SymbolHandle sym,
2036  uint32_t num_args,
2037  const char** keys,
2038  const int *arg_type_data,
2039  uint32_t *in_type_size,
2040  const int **in_type_data,
2041  uint32_t *out_type_size,
2042  const int **out_type_data,
2043  uint32_t *aux_type_size,
2044  const int **aux_type_data,
2045  int *complete);
2046 
2065 MXNET_DLL int MXQuantizeSymbol(SymbolHandle sym_handle,
2066  SymbolHandle *ret_sym_handle,
2067  const int* dev_type,
2068  const uint32_t num_excluded_sym_names,
2069  const char **excluded_sym_names,
2070  const uint32_t num_excluded_op_names,
2071  const char **excluded_op_names,
2072  const uint32_t num_offline, const char **offline_params,
2073  const char *quantized_dtype, const bool calib_quantize,
2074  const char *quantize_mode, const char *quantize_granularity,
2075  uint32_t* out_num_calib_names, const char ***out_calib_names);
2076 
2103 MXNET_DLL int MXReducePrecisionSymbol(SymbolHandle sym_handle,
2104  SymbolHandle *ret_sym_handle,
2105  uint32_t num_args,
2106  const int* arg_type_data,
2107  uint32_t num_ind_ptr,
2108  const int* ind_ptr,
2109  const int* target_dtype,
2110  const int cast_optional_params,
2111  const uint32_t num_target_dtype_op_names,
2112  const uint32_t num_fp32_op_names,
2113  const uint32_t num_widest_dtype_op_names,
2114  const uint32_t num_conditional_fp32_op_names,
2115  const uint32_t num_excluded_symbols,
2116  const uint32_t num_model_params,
2117  const char **target_dtype_op_names,
2118  const char **fp32_op_names,
2119  const char **widest_dtype_op_names,
2120  const char **conditional_fp32_op_names,
2121  const char **excluded_symbols,
2122  const char **conditional_param_names,
2123  const char **conditional_param_vals,
2124  const char **model_param_names,
2125  const char **arg_names);
2135 MXNET_DLL int MXSetCalibTableToQuantizedSymbol(SymbolHandle qsym_handle,
2136  const uint32_t num_layers,
2137  const char** layer_names,
2138  const float* low_quantiles,
2139  const float* high_quantiles,
2140  SymbolHandle* ret_sym_handle);
2141 
2148 MXNET_DLL int MXGenBackendSubgraph(SymbolHandle sym_handle, const char *backend,
2149  SymbolHandle *ret_sym_handle);
2150 
2156 MXNET_DLL int MXGenAtomicSymbolFromSymbol(SymbolHandle sym_handle, SymbolHandle *ret_sym_handle);
2188 MXNET_DLL int MXOptimizeForBackend(SymbolHandle sym_handle,
2189  const char* backend_name,
2190  const int dev_type,
2191  SymbolHandle* ret_sym_handle,
2192  const mx_uint args_len,
2193  NDArrayHandle* in_args_handle,
2194  const mx_uint aux_len,
2195  NDArrayHandle* in_aux_handle,
2196  const mx_uint num_options,
2197  const char** keys,
2198  const char** vals,
2199  const uint32_t num_input_shapes,
2200  const char** input_shape_names,
2201  const int64_t* input_shape_data,
2202  const uint32_t* input_shape_idx,
2203  const uint32_t num_input_dtypes,
2204  const char** input_dtype_names,
2205  const int* input_dtypes,
2206  const uint32_t num_input_stypes,
2207  const char** input_stype_names,
2208  const int* input_stypes,
2209  bool skip_infer,
2210  int* new_args_cnt,
2211  NDArrayHandle** new_args_handle,
2212  char*** new_arg_names_handle,
2213  int* new_aux_cnt,
2214  NDArrayHandle** new_aux_handle,
2215  char*** new_aux_names_handle);
2216 
2217 
2218 //--------------------------------------------
2219 // Part 4: Executor interface
2220 //--------------------------------------------
2226 MXNET_DLL int MXExecutorFree(ExecutorHandle handle);
2233 MXNET_DLL int MXExecutorPrint(ExecutorHandle handle, const char **out_str);
2241 MXNET_DLL int MXExecutorForward(ExecutorHandle handle, int is_train);
2251 MXNET_DLL int MXExecutorBackward(ExecutorHandle handle,
2252  uint32_t len,
2253  NDArrayHandle *head_grads);
2264 MXNET_DLL int MXExecutorBackwardEx(ExecutorHandle handle,
2265  uint32_t len,
2266  NDArrayHandle *head_grads,
2267  int is_train);
2276 MXNET_DLL int MXExecutorOutputs(ExecutorHandle handle,
2277  uint32_t *out_size,
2278  NDArrayHandle **out);
2279 
2295 MXNET_DLL int MXExecutorBind(SymbolHandle symbol_handle,
2296  int dev_type,
2297  int dev_id,
2298  uint32_t len,
2299  NDArrayHandle *in_args,
2300  NDArrayHandle *arg_grad_store,
2301  uint32_t *grad_req_type,
2302  uint32_t aux_states_len,
2303  NDArrayHandle *aux_states,
2304  ExecutorHandle *out);
2326 MXNET_DLL int MXExecutorBindX(SymbolHandle symbol_handle,
2327  int dev_type,
2328  int dev_id,
2329  uint32_t num_map_keys,
2330  const char** map_keys,
2331  const int* map_dev_types,
2332  const int* map_dev_ids,
2333  uint32_t len,
2334  NDArrayHandle *in_args,
2335  NDArrayHandle *arg_grad_store,
2336  uint32_t *grad_req_type,
2337  uint32_t aux_states_len,
2338  NDArrayHandle *aux_states,
2339  ExecutorHandle *out);
2362 MXNET_DLL int MXExecutorBindEX(SymbolHandle symbol_handle,
2363  int dev_type,
2364  int dev_id,
2365  uint32_t num_map_keys,
2366  const char** map_keys,
2367  const int* map_dev_types,
2368  const int* map_dev_ids,
2369  uint32_t len,
2370  NDArrayHandle *in_args,
2371  NDArrayHandle *arg_grad_store,
2372  uint32_t *grad_req_type,
2373  uint32_t aux_states_len,
2374  NDArrayHandle *aux_states,
2375  ExecutorHandle shared_exec,
2376  ExecutorHandle *out);
2379 MXNET_DLL int MXExecutorSimpleBind(SymbolHandle symbol_handle,
2380  int dev_type,
2381  int dev_id,
2382  const uint32_t num_g2c_keys,
2383  const char** g2c_keys,
2384  const int* g2c_dev_types,
2385  const int* g2c_dev_ids,
2386  const uint32_t provided_grad_req_list_len,
2387  const char** provided_grad_req_names,
2388  const char** provided_grad_req_types,
2389  const uint32_t num_provided_arg_shapes,
2390  const char** provided_arg_shape_names,
2391  const uint32_t* provided_arg_shape_data,
2392  const uint32_t* provided_arg_shape_idx,
2393  const uint32_t num_provided_arg_dtypes,
2394  const char** provided_arg_dtype_names,
2395  const int* provided_arg_dtypes,
2396  const uint32_t num_provided_arg_stypes,
2397  const char** provided_arg_stype_names,
2398  const int* provided_arg_stypes,
2399  const uint32_t num_shared_arg_names,
2400  const char** shared_arg_name_list,
2401  int* shared_buffer_len,
2402  const char** shared_buffer_name_list,
2403  NDArrayHandle* shared_buffer_handle_list,
2404  const char*** updated_shared_buffer_name_list,
2405  NDArrayHandle** updated_shared_buffer_handle_list,
2406  uint32_t* num_in_args,
2407  NDArrayHandle** in_args,
2408  NDArrayHandle** arg_grads,
2409  uint32_t* num_aux_states,
2410  NDArrayHandle** aux_states,
2411  ExecutorHandle shared_exec_handle,
2412  ExecutorHandle* out);
2413 
2414 
2415 MXNET_DLL int MXExecutorSimpleBindEx(SymbolHandle symbol_handle,
2416  int dev_type,
2417  int dev_id,
2418  const uint32_t num_g2c_keys,
2419  const char** g2c_keys,
2420  const int* g2c_dev_types,
2421  const int* g2c_dev_ids,
2422  const uint32_t provided_grad_req_list_len,
2423  const char** provided_grad_req_names,
2424  const char** provided_grad_req_types,
2425  const uint32_t num_provided_arg_shapes,
2426  const char** provided_arg_shape_names,
2427  const int* provided_arg_shape_data,
2428  const uint32_t* provided_arg_shape_idx,
2429  const uint32_t num_provided_arg_dtypes,
2430  const char** provided_arg_dtype_names,
2431  const int* provided_arg_dtypes,
2432  const uint32_t num_provided_arg_stypes,
2433  const char** provided_arg_stype_names,
2434  const int* provided_arg_stypes,
2435  const uint32_t num_shared_arg_names,
2436  const char** shared_arg_name_list,
2437  int* shared_buffer_len,
2438  const char** shared_buffer_name_list,
2439  NDArrayHandle* shared_buffer_handle_list,
2440  const char*** updated_shared_buffer_name_list,
2441  NDArrayHandle** updated_shared_buffer_handle_list,
2442  uint32_t* num_in_args,
2443  NDArrayHandle** in_args,
2444  NDArrayHandle** arg_grads,
2445  uint32_t* num_aux_states,
2446  NDArrayHandle** aux_states,
2447  ExecutorHandle shared_exec_handle,
2448  ExecutorHandle* out);
2449 
2450 
2451 MXNET_DLL int MXExecutorSimpleBindEx64(SymbolHandle symbol_handle,
2452  int dev_type,
2453  int dev_id,
2454  const uint32_t num_g2c_keys,
2455  const char** g2c_keys,
2456  const int* g2c_dev_types,
2457  const int* g2c_dev_ids,
2458  const uint32_t provided_grad_req_list_len,
2459  const char** provided_grad_req_names,
2460  const char** provided_grad_req_types,
2461  const uint32_t num_provided_arg_shapes,
2462  const char** provided_arg_shape_names,
2463  const int64_t* provided_arg_shape_data,
2464  const uint32_t* provided_arg_shape_idx,
2465  const uint32_t num_provided_arg_dtypes,
2466  const char** provided_arg_dtype_names,
2467  const int* provided_arg_dtypes,
2468  const uint32_t num_provided_arg_stypes,
2469  const char** provided_arg_stype_names,
2470  const int* provided_arg_stypes,
2471  const uint32_t num_shared_arg_names,
2472  const char** shared_arg_name_list,
2473  int* shared_buffer_len,
2474  const char** shared_buffer_name_list,
2475  NDArrayHandle* shared_buffer_handle_list,
2476  const char*** updated_shared_buffer_name_list,
2477  NDArrayHandle** updated_shared_buffer_handle_list,
2478  uint32_t* num_in_args,
2479  NDArrayHandle** in_args,
2480  NDArrayHandle** arg_grads,
2481  uint32_t* num_aux_states,
2482  NDArrayHandle** aux_states,
2483  ExecutorHandle shared_exec_handle,
2484  ExecutorHandle* out);
2485 
2486 
2509 MXNET_DLL int MXExecutorReshape(int partial_shaping,
2510  int allow_up_sizing,
2511  int dev_type,
2512  int dev_id,
2513  uint32_t num_map_keys,
2514  const char** map_keys,
2515  const int* map_dev_types,
2516  const int* map_dev_ids,
2517  const uint32_t num_provided_arg_shapes,
2518  const char** provided_arg_shape_names,
2519  const uint32_t* provided_arg_shape_data,
2520  const uint32_t* provided_arg_shape_idx,
2521  uint32_t* num_in_args,
2522  NDArrayHandle** in_args,
2523  NDArrayHandle** arg_grads,
2524  uint32_t* num_aux_states,
2525  NDArrayHandle** aux_states,
2526  ExecutorHandle shared_exec,
2527  ExecutorHandle *out);
2549 MXNET_DLL int MXExecutorReshapeEx(int partial_shaping,
2550  int allow_up_sizing,
2551  int dev_type,
2552  int dev_id,
2553  uint32_t num_map_keys,
2554  const char** map_keys,
2555  const int* map_dev_types,
2556  const int* map_dev_ids,
2557  const uint32_t num_provided_arg_shapes,
2558  const char** provided_arg_shape_names,
2559  const int* provided_arg_shape_data,
2560  const uint32_t* provided_arg_shape_idx,
2561  uint32_t* num_in_args,
2562  NDArrayHandle** in_args,
2563  NDArrayHandle** arg_grads,
2564  uint32_t* num_aux_states,
2565  NDArrayHandle** aux_states,
2566  ExecutorHandle shared_exec,
2567  ExecutorHandle *out);
2568 
2572 MXNET_DLL int MXExecutorGetOptimizedSymbol(ExecutorHandle handle,
2573  SymbolHandle *out);
2577 MXNET_DLL int MXExecutorSetMonitorCallback(ExecutorHandle handle,
2578  ExecutorMonitorCallback callback,
2579  void* callback_handle);
2580 
2585 MXNET_DLL int MXExecutorSetMonitorCallbackEX(ExecutorHandle handle,
2586  ExecutorMonitorCallback callback,
2587  void *callback_handle, bool monitor_all);
2588 //--------------------------------------------
2589 // Part 5: IO Interface
2590 //--------------------------------------------
2597 MXNET_DLL int MXListDataIters(uint32_t *out_size,
2598  DataIterCreator **out_array);
2609 MXNET_DLL int MXDataIterCreateIter(DataIterCreator handle,
2610  uint32_t num_param,
2611  const char **keys,
2612  const char **vals,
2613  DataIterHandle *out);
2625 MXNET_DLL int MXDataIterGetIterInfo(DataIterCreator creator,
2626  const char **name,
2627  const char **description,
2628  uint32_t *num_args,
2629  const char ***arg_names,
2630  const char ***arg_type_infos,
2631  const char ***arg_descriptions);
2637 MXNET_DLL int MXDataIterFree(DataIterHandle handle);
2644 MXNET_DLL int MXDataIterNext(DataIterHandle handle,
2645  int *out);
2651 MXNET_DLL int MXDataIterBeforeFirst(DataIterHandle handle);
2652 
2659 MXNET_DLL int MXDataIterGetData(DataIterHandle handle,
2660  NDArrayHandle *out);
2668 MXNET_DLL int MXDataIterGetIndex(DataIterHandle handle,
2669  uint64_t **out_index,
2670  uint64_t *out_size);
2677 MXNET_DLL int MXDataIterGetPadNum(DataIterHandle handle,
2678  int *pad);
2679 
2686 MXNET_DLL int MXDataIterGetLabel(DataIterHandle handle,
2687  NDArrayHandle *out);
2688 //--------------------------------------------
2689 // Part 6: basic KVStore interface
2690 //--------------------------------------------
2697 MXNET_DLL int MXInitPSEnv(uint32_t num_vars,
2698  const char **keys,
2699  const char **vals);
2700 
2701 
2708 MXNET_DLL int MXKVStoreCreate(const char *type,
2709  KVStoreHandle *out);
2710 
2718 MXNET_DLL int MXKVStoreSetGradientCompression(KVStoreHandle handle,
2719  uint32_t num_params,
2720  const char** keys,
2721  const char** vals);
2722 
2728 MXNET_DLL int MXKVStoreFree(KVStoreHandle handle);
2737 MXNET_DLL int MXKVStoreInit(KVStoreHandle handle,
2738  uint32_t num,
2739  const int* keys,
2740  NDArrayHandle* vals);
2741 
2750 MXNET_DLL int MXKVStoreInitEx(KVStoreHandle handle,
2751  uint32_t num,
2752  const char** keys,
2753  NDArrayHandle* vals);
2754 
2764 MXNET_DLL int MXKVStorePush(KVStoreHandle handle,
2765  uint32_t num,
2766  const int* keys,
2767  NDArrayHandle* vals,
2768  int priority);
2778 MXNET_DLL int MXKVStorePushEx(KVStoreHandle handle,
2779  uint32_t num,
2780  const char** keys,
2781  NDArrayHandle* vals,
2782  int priority);
2793 MXNET_DLL int MXKVStorePullWithSparse(KVStoreHandle handle,
2794  uint32_t num,
2795  const int* keys,
2796  NDArrayHandle* vals,
2797  int priority,
2798  bool ignore_sparse);
2809 MXNET_DLL int MXKVStorePullWithSparseEx(KVStoreHandle handle,
2810  uint32_t num,
2811  const char** keys,
2812  NDArrayHandle* vals,
2813  int priority,
2814  bool ignore_sparse);
2824 MXNET_DLL int MXKVStorePull(KVStoreHandle handle,
2825  uint32_t num,
2826  const int* keys,
2827  NDArrayHandle* vals,
2828  int priority);
2838 MXNET_DLL int MXKVStorePullEx(KVStoreHandle handle,
2839  uint32_t num,
2840  const char** keys,
2841  NDArrayHandle* vals,
2842  int priority);
2843 
2856 MXNET_DLL int MXKVStorePullRowSparse(KVStoreHandle handle,
2857  uint32_t num,
2858  const int* keys,
2859  NDArrayHandle* vals,
2860  const NDArrayHandle* row_ids,
2861  int priority);
2874 MXNET_DLL int MXKVStorePullRowSparseEx(KVStoreHandle handle,
2875  uint32_t num,
2876  const char** keys,
2877  NDArrayHandle* vals,
2878  const NDArrayHandle* row_ids,
2879  int priority);
2880 
2893 MXNET_DLL int MXKVStoreBroadcast(KVStoreHandle handle,
2894  mx_uint vnum,
2895  const int* vkeys,
2896  mx_uint onum,
2897  const int* okeys,
2898  NDArrayHandle* vals,
2899  NDArrayHandle* outs,
2900  int priority);
2914 MXNET_DLL int MXKVStoreBroadcastEx(KVStoreHandle handle,
2915  mx_uint vnum,
2916  const char** vkeys,
2917  mx_uint onum,
2918  const char** okeys,
2919  NDArrayHandle* vals,
2920  NDArrayHandle* outs,
2921  int priority);
2922 
2935 MXNET_DLL int MXKVStorePushPull(KVStoreHandle handle,
2936  mx_uint vnum,
2937  const int* vkeys,
2938  mx_uint onum,
2939  const int* okeys,
2940  NDArrayHandle* vals,
2941  NDArrayHandle* outs,
2942  int priority);
2956 MXNET_DLL int MXKVStorePushPullEx(KVStoreHandle handle,
2957  mx_uint vnum,
2958  const char** vkeys,
2959  mx_uint onum,
2960  const char** okeys,
2961  NDArrayHandle* vals,
2962  NDArrayHandle* outs,
2963  int priority);
2964 
2973 typedef void (MXKVStoreUpdater)(int key,
2974  NDArrayHandle recv,
2975  NDArrayHandle local,
2976  void *handle);
2985 typedef void (MXKVStoreStrUpdater)(const char* key,
2986  NDArrayHandle recv,
2987  NDArrayHandle local,
2988  void *handle);
2996 MXNET_DLL int MXKVStoreSetUpdater(KVStoreHandle handle,
2997  MXKVStoreUpdater updater,
2998  void *updater_handle);
3007 MXNET_DLL int MXKVStoreSetUpdaterEx(KVStoreHandle handle,
3008  MXKVStoreUpdater updater,
3009  MXKVStoreStrUpdater str_updater,
3010  void *updater_handle);
3017 MXNET_DLL int MXKVStoreGetType(KVStoreHandle handle,
3018  const char** type);
3019 //--------------------------------------------
3020 // Part 6: advanced KVStore for multi-machines
3021 //--------------------------------------------
3022 
3030 MXNET_DLL int MXKVStoreGetRank(KVStoreHandle handle,
3031  int *ret);
3032 
3042 MXNET_DLL int MXKVStoreGetGroupSize(KVStoreHandle handle,
3043  int *ret);
3044 
3050 MXNET_DLL int MXKVStoreIsWorkerNode(int *ret);
3051 
3052 
3058 MXNET_DLL int MXKVStoreIsServerNode(int *ret);
3059 
3060 
3066 MXNET_DLL int MXKVStoreIsSchedulerNode(int *ret);
3067 
3074 MXNET_DLL int MXKVStoreBarrier(KVStoreHandle handle);
3075 
3083 MXNET_DLL int MXKVStoreSetBarrierBeforeExit(KVStoreHandle handle,
3084  const int barrier_before_exit);
3085 
3092 typedef void (MXKVStoreServerController)(int head,
3093  const char *body,
3094  void *controller_handle);
3095 
3103 MXNET_DLL int MXKVStoreRunServer(KVStoreHandle handle,
3104  MXKVStoreServerController controller,
3105  void *controller_handle);
3106 
3114 MXNET_DLL int MXKVStoreSendCommmandToServers(KVStoreHandle handle,
3115  int cmd_id,
3116  const char* cmd_body);
3117 
3128 MXNET_DLL int MXKVStoreGetNumDeadNode(KVStoreHandle handle,
3129  const int node_id,
3130  int *number,
3131  const int timeout_sec DEFAULT(60));
3132 
3139 MXNET_DLL int MXRecordIOWriterCreate(const char *uri, RecordIOHandle *out);
3140 
3146 MXNET_DLL int MXRecordIOWriterFree(RecordIOHandle handle);
3147 
3155 MXNET_DLL int MXRecordIOWriterWriteRecord(RecordIOHandle handle,
3156  const char *buf, size_t size);
3157 
3164 MXNET_DLL int MXRecordIOWriterTell(RecordIOHandle handle, size_t *pos);
3165 
3172 MXNET_DLL int MXRecordIOReaderCreate(const char *uri, RecordIOHandle *out);
3173 
3179 MXNET_DLL int MXRecordIOReaderFree(RecordIOHandle handle);
3180 
3188 MXNET_DLL int MXRecordIOReaderReadRecord(RecordIOHandle handle,
3189  char const **buf, size_t *size);
3190 
3197 MXNET_DLL int MXRecordIOReaderSeek(RecordIOHandle handle, size_t pos);
3198 
3205 MXNET_DLL int MXRecordIOReaderTell(RecordIOHandle handle, size_t *pos);
3206 
3210 MXNET_DLL int MXRtcCreate(char* name, uint32_t num_input, uint32_t num_output,
3211  char** input_names, char** output_names,
3212  NDArrayHandle* inputs, NDArrayHandle* outputs,
3213  char* kernel, RtcHandle *out);
3214 
3218 MXNET_DLL int MXRtcPush(RtcHandle handle, uint32_t num_input, uint32_t num_output,
3219  NDArrayHandle* inputs, NDArrayHandle* outputs,
3220  uint32_t gridDimX,
3221  uint32_t gridDimY,
3222  uint32_t gridDimZ,
3223  uint32_t blockDimX,
3224  uint32_t blockDimY,
3225  uint32_t blockDimZ);
3226 
3230 MXNET_DLL int MXRtcFree(RtcHandle handle);
3231 /*
3232  * \brief register custom operators from frontend.
3233  * \param op_type name of custom op
3234  * \param creator
3235  */
3236 MXNET_DLL int MXCustomOpRegister(const char* op_type, CustomOpPropCreator creator);
3237 /*
3238  * \brief record custom function for backward later.
3239  * \param num_inputs number of input NDArrays.
3240  * \param inputs handle to input NDArrays.
3241  * \param num_outputs number of output NDArrays.
3242  * \param outputs handle to output NDArrays.
3243  * \param callbacks callbacks for backward function.
3244  */
3245 MXNET_DLL int MXCustomFunctionRecord(int num_inputs, NDArrayHandle *inputs,
3246  int num_outputs, NDArrayHandle *outputs,
3247  struct MXCallbackList *callbacks);
3248 /*
3249  * \brief create cuda rtc module
3250  * \param source cuda source code
3251  * \param num_options number of compiler flags
3252  * \param options compiler flags
3253  * \param num_exports number of exported function names
3254  * \param exported function names
3255  * \param out handle to created module
3256  */
3257 MXNET_DLL int MXRtcCudaModuleCreate(const char* source, int num_options,
3258  const char** options, int num_exports,
3259  const char** exports, CudaModuleHandle *out);
3260 /*
3261  * \brief delete cuda rtc module
3262  * \param handle handle to cuda module
3263  */
3264 MXNET_DLL int MXRtcCudaModuleFree(CudaModuleHandle handle);
3265 /*
3266  * \brief get kernel from module
3267  * \param handle handle to cuda module
3268  * \param name name of kernel function
3269  * \param num_args number of arguments
3270  * \param is_ndarray whether argument is ndarray
3271  * \param is_const whether argument is constant
3272  * \param arg_types data type of arguments
3273  * \param out created kernel
3274  */
3275 MXNET_DLL int MXRtcCudaKernelCreate(CudaModuleHandle handle, const char* name,
3276  int num_args, int* is_ndarray, int* is_const,
3277  int* arg_types, CudaKernelHandle *out);
3278 /*
3279  * \brief delete kernel
3280  * \param handle handle to previously created kernel
3281  */
3282 MXNET_DLL int MXRtcCudaKernelFree(CudaKernelHandle handle);
3283 /*
3284  * \brief launch cuda kernel
3285  * \param handle handle to kernel
3286  * \param dev_id (GPU) device id
3287  * \param args pointer to arguments
3288  * \param grid_dim_x grid dimension x
3289  * \param grid_dim_y grid dimension y
3290  * \param grid_dim_z grid dimension z
3291  * \param block_dim_x block dimension x
3292  * \param block_dim_y block dimension y
3293  * \param block_dim_z block dimension z
3294  * \param shared_mem size of dynamically allocated shared memory
3295  */
3296 MXNET_DLL int MXRtcCudaKernelCall(CudaKernelHandle handle, int dev_id, void** args,
3297  uint32_t grid_dim_x, uint32_t grid_dim_y,
3298  uint32_t grid_dim_z, uint32_t block_dim_x,
3299  uint32_t block_dim_y, uint32_t block_dim_z,
3300  uint32_t shared_mem);
3307 MXNET_DLL int MXNDArrayGetSharedMemHandle(NDArrayHandle handle, int* shared_pid,
3308  int* shared_id);
3319 MXNET_DLL int MXNDArrayCreateFromSharedMem(int shared_pid, int shared_id, const uint32_t *shape,
3320  uint32_t ndim, int dtype, NDArrayHandle *out);
3321 
3327 MXNET_DLL int MXStorageEmptyCache(int dev_type, int dev_id);
3328 
3338 MXNET_DLL int MXNDArrayCreateFromSharedMemEx(int shared_pid, int shared_id, const int *shape,
3339  int ndim, int dtype, NDArrayHandle *out);
3340 
3358 MXNET_DLL int MXEnginePushAsync(EngineAsyncFunc async_func, void* func_param,
3359  EngineFuncParamDeleter deleter, ContextHandle ctx_handle,
3360  EngineVarHandle const_vars_handle, int num_const_vars,
3361  EngineVarHandle mutable_vars_handle, int num_mutable_vars,
3362  EngineFnPropertyHandle prop_handle DEFAULT(NULL),
3363  int priority DEFAULT(0), const char* opr_name DEFAULT(NULL),
3364  bool wait DEFAULT(false));
3365 
3381 MXNET_DLL int MXEnginePushSync(EngineSyncFunc sync_func, void* func_param,
3382  EngineFuncParamDeleter deleter, ContextHandle ctx_handle,
3383  EngineVarHandle const_vars_handle, int num_const_vars,
3384  EngineVarHandle mutable_vars_handle, int num_mutable_vars,
3385  EngineFnPropertyHandle prop_handle DEFAULT(NULL),
3386  int priority DEFAULT(0), const char* opr_name DEFAULT(NULL));
3392 MXNET_DLL int MXShallowCopyNDArray(NDArrayHandle src, NDArrayHandle* out);
3398 MXNET_DLL int MXShallowCopySymbol(SymbolHandle src, SymbolHandle * out);
3399 
3417 MXNET_DLL int MXEnginePushAsyncND(EngineAsyncFunc async_func, void* func_param,
3418  EngineFuncParamDeleter deleter, ContextHandle ctx_handle,
3419  NDArrayHandle* const_nds_handle, int num_const_nds,
3420  NDArrayHandle* mutable_nds_handle, int num_mutable_nds,
3421  EngineFnPropertyHandle prop_handle DEFAULT(NULL),
3422  int priority DEFAULT(0), const char* opr_name DEFAULT(NULL),
3423  bool wait DEFAULT(false));
3424 
3440 MXNET_DLL int MXEnginePushSyncND(EngineSyncFunc sync_func, void* func_param,
3441  EngineFuncParamDeleter deleter, ContextHandle ctx_handle,
3442  NDArrayHandle* const_nds_handle, int num_const_nds,
3443  NDArrayHandle* mutable_nds_handle, int num_mutable_nds,
3444  EngineFnPropertyHandle prop_handle DEFAULT(NULL),
3445  int priority DEFAULT(0), const char* opr_name DEFAULT(NULL));
3446 
3447 #ifdef __cplusplus
3448 }
3449 #endif // __cplusplus
3450 
3451 #endif // MXNET_C_API_H_
MXNET_DLL int MXKVStoreCreate(const char *type, KVStoreHandle *out)
Create a kvstore.
int(* CustomFunctionDelFunc)(void *)
Definition: c_api.h:216
MXNET_DLL int MXSymbolListAttr(SymbolHandle symbol, uint32_t *out_size, const char ***out)
Get all attributes from symbol, including all descendents.
MXNET_DLL int MXProfileAdjustCounter(ProfileHandle counter_handle, int64_t value)
Adjust a counter by the given amount, given its handle.
MXNET_DLL int MXProfileCreateFrame(ProfileHandle domain, const char *frame_name, ProfileHandle *out)
Create profile frame.
Definition: c_api.h:171
MXNET_DLL int MXSymbolRemoveAmpCast(SymbolHandle sym_handle, SymbolHandle *ret_sym_handle)
Remove the operators amp_cast and amp_multicast.
MXNET_DLL int MXDataIterGetLabel(DataIterHandle handle, NDArrayHandle *out)
Get the handle to the NDArray of underlying label.
MXNET_DLL int MXNDArrayCallDLPackDeleter(DLManagedTensorHandle dlpack)
Delete a dlpack tensor.
MXNET_DLL int MXNDArraySetGradState(NDArrayHandle handle, int state)
set the flag for gradient array state.
MXNET_DLL int MXNDArrayAt64(NDArrayHandle handle, int64_t idx, NDArrayHandle *out)
Index the NDArray along axis 0. This api is available when MXNet is built with flag USE_INT64_TENSOR_...
MXNET_DLL int MXSymbolListAuxiliaryStates(SymbolHandle symbol, uint32_t *out_size, const char ***out_str_array)
List auxiliary states in the symbol.
MXNET_DLL int MXSymbolListAttrShallow(SymbolHandle symbol, uint32_t *out_size, const char ***out)
Get all attributes from symbol, excluding descendents.
MXNET_DLL int MXProfilePause(int paused)
Pause profiler tuning collection for worker/current process.
MXNET_DLL int MXSetCalibTableToQuantizedSymbol(SymbolHandle qsym_handle, const uint32_t 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 MXAutogradComputeGradient(uint32_t num_output, NDArrayHandle *output_handles)
compute the gradient of outputs w.r.t variabels
MXNET_DLL int MXNDArrayGetShapeEx(NDArrayHandle handle, int *out_dim, const int **out_pdata)
get the shape of the array This api is available when MXNet is built with flag USE_INT64_TENSOR_SIZE=...
MXNET_DLL int MXRecordIOReaderSeek(RecordIOHandle handle, size_t pos)
Set the current reader pointer position.
void * DataIterCreator
handle a dataiter creator
Definition: c_api.h:80
int(* CustomOpInferShapeFunc)(int, int *, int **, void *)
Definition: c_api.h:188
MXNET_DLL int MXDataIterGetIndex(DataIterHandle handle, uint64_t **out_index, uint64_t *out_size)
Get the image index by array.
MXNET_DLL int MXRtcPush(RtcHandle handle, uint32_t num_input, uint32_t num_output, NDArrayHandle *inputs, NDArrayHandle *outputs, uint32_t gridDimX, uint32_t gridDimY, uint32_t gridDimZ, uint32_t blockDimX, uint32_t blockDimY, uint32_t blockDimZ)
Run cuda kernel.
MXNET_DLL int MXKVStoreIsServerNode(int *ret)
return whether or not this process is a server node.
void * ExecutorHandle
handle to an Executor
Definition: c_api.h:78
MXNET_DLL int MXProfileCreateEvent(const char *event_name, ProfileHandle *out)
Create profile event.
MXNET_DLL int MXKVStorePull(KVStoreHandle handle, uint32_t num, const int *keys, NDArrayHandle *vals, int priority)
pull a list of (key, value) pairs from the kvstore
void * p_infer_shape
Definition: c_api.h:144
MXNET_DLL int MXNDArraySaveRawBytes(NDArrayHandle handle, size_t *out_size, const char **out_buf)
save the NDArray into raw bytes.
PaddingExp< SrcExp, DType, ExpInfo< SrcExp >::kDim > pad(const Exp< SrcExp, DType, etype > &src, index_t pad)
padding expression, pad a image with zeros on boundaries, padding affects shape[0], and shape[1]
Definition: pad.h:71
Definition: c_api.h:176
MXNET_DLL int MXAutogradMarkVariables(uint32_t num_var, NDArrayHandle *var_handles, uint32_t *reqs_array, NDArrayHandle *grad_handles)
mark NDArrays as variables to compute gradient for autograd
void(* list_arguments)(char ***, void *)
Definition: c_api.h:124
void * SymbolHandle
handle to a symbol that can be bind as operator
Definition: c_api.h:74
MXNET_DLL int MXNDArrayGetDType(NDArrayHandle handle, int *out_dtype)
get the type of the data in NDArray
MXNET_DLL int MXRtcCudaKernelCall(CudaKernelHandle handle, int dev_id, void **args, uint32_t grid_dim_x, uint32_t grid_dim_y, uint32_t grid_dim_z, uint32_t block_dim_x, uint32_t block_dim_y, uint32_t block_dim_z, uint32_t shared_mem)
MXNET_DLL int MXAggregateProfileStatsPrint(const char **out_str, int reset)
Deprecated, use MXAggregateProfileStatsPrintEx instead.
MXNET_DLL int MXSymbolInferShapePartialEx64(SymbolHandle sym, uint32_t num_args, const char **keys, const int64_t *arg_ind_ptr, const int64_t *arg_shape_data, size_t *in_shape_size, const int **in_shape_ndim, const int64_t ***in_shape_data, size_t *out_shape_size, const int **out_shape_ndim, const int64_t ***out_shape_data, size_t *aux_shape_size, const int **aux_shape_ndim, const int64_t ***aux_shape_data, int *complete)
partially infer shape of unknown input shapes given the known one.
float mx_float
manually define float
Definition: c_api.h:59
MXNET_DLL int MXNDArraySlice(NDArrayHandle handle, uint32_t slice_begin, uint32_t slice_end, NDArrayHandle *out)
Slice the NDArray along axis 0. This api is available when MXNet is built with flag USE_INT64_TENSOR_...
MXNET_DLL int MXSetProfilerState(int state)
Set up state of profiler for current process.
int(* CustomOpBwdDepFunc)(const int *, const int *, const int *, int *, int **, void *)
Definition: c_api.h:196
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 MXNDArraySyncCheckFormat(NDArrayHandle handle, const bool full_check)
check whether the NDArray format is valid
MXNET_DLL int MXGenBackendSubgraph(SymbolHandle sym_handle, const char *backend, SymbolHandle *ret_sym_handle)
Run subgraph pass based on the backend provided.
MXNET_DLL int MXNDArrayCreateEx64(const int64_t *shape, int ndim, int dev_type, int dev_id, int delay_alloc, int dtype, NDArrayHandle *out)
create a NDArray with specified shape and data type This api is available when MXNet is built with fl...
int(* CustomFunctionBwdFunc)(int, int, void **, const int *, const int, void *)
Definition: c_api.h:213
void * p_forward
Definition: c_api.h:142
void * ProfileHandle
handle to a Profile object (domain, duration, counter, etc.)
Definition: c_api.h:94
MXNET_DLL int MXAutogradBackward(uint32_t num_output, NDArrayHandle *output_handles, NDArrayHandle *ograd_handles, int retain_graph)
compute the gradient of outputs w.r.t variabels
Definition: c_api.h:165
MXNET_DLL int MXCachedOpRegisterOpHook(NDArrayHandle handle, CachedOpMonitorCallback callback, bool monitor_all)
cached op set monitor callback
MXNET_DLL int MXSymbolGetNumOutputs(SymbolHandle symbol, uint32_t *output_count)
Get number of outputs of the symbol.
MXNET_DLL int MXProfileDestroyHandle(ProfileHandle frame_handle)
Destroy a frame.
CustomFunctionCallbacks
Definition: c_api.h:208
MXNET_DLL int MXSymbolGetInputSymbols(SymbolHandle sym, SymbolHandle **inputs, int *input_size)
Get the input symbols of the graph.
MXNET_DLL int MXExecutorSetMonitorCallbackEX(ExecutorHandle handle, ExecutorMonitorCallback callback, void *callback_handle, bool monitor_all)
set a call back to notify the completion of operation
MXNET_DLL int MXExecutorBindEX(SymbolHandle symbol_handle, int dev_type, int dev_id, uint32_t num_map_keys, const char **map_keys, const int *map_dev_types, const int *map_dev_ids, uint32_t len, NDArrayHandle *in_args, NDArrayHandle *arg_grad_store, uint32_t *grad_req_type, uint32_t 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 MXProfileSetMarker(ProfileHandle domain, const char *instant_marker_name, const char *scope)
Mark a single instant in time.
MXNET_DLL int MXKVStoreFree(KVStoreHandle handle)
Delete a KVStore handle.
MXNET_DLL int MXKVStoreBroadcastEx(KVStoreHandle handle, mx_uint vnum, const char **vkeys, mx_uint onum, const char **okeys, NDArrayHandle *vals, NDArrayHandle *outs, int priority)
broadcast a list of (key, value) pairs from the kvstore, where each key is a string ...
MXNET_DLL int MXShallowCopySymbol(SymbolHandle src, SymbolHandle *out)
Create an Symbol from source sharing the same graph structure.
MXNET_DLL int MXRtcCudaModuleFree(CudaModuleHandle handle)
MXNET_DLL int MXIsNumpyShape(int *curr)
get whether numpy compatibility is on
MXNET_DLL int MXKVStorePullRowSparse(KVStoreHandle handle, uint32_t 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 ...
void * AtomicSymbolCreator
handle to a function that takes param and creates symbol
Definition: c_api.h:70
MXNET_DLL int MXNDArrayGetAuxType(NDArrayHandle handle, uint32_t i, int *out_type)
get the type of the ith aux data in NDArray This api is available when MXNet is built with flag USE_I...
MXNET_DLL int MXRtcFree(RtcHandle handle)
Delete a MXRtc object.
MXNET_DLL int MXFuncDescribe(FunctionHandle fun, uint32_t *num_use_vars, uint32_t *num_scalars, uint32_t *num_mutate_vars, int *type_mask)
get the argument requirements of the function
void * p_backward
Definition: c_api.h:127
MXNET_DLL int MXCreateCachedOpEx(SymbolHandle handle, int num_flags, const char **keys, const char **vals, CachedOpHandle *out)
create cached operator
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:2973
MXNET_DLL int MXSetIsNumpyShape(int is_np_shape, int *prev)
set numpy compatibility switch
MXNET_DLL int MXSymbolPrint(SymbolHandle symbol, const char **out_str)
Print the content of symbol, used for debug.
MXNET_DLL int MXGetGPUMemoryInformation64(int dev, uint64_t *free_mem, uint64_t *total_mem)
get the free and total available memory on a GPU
int(* CustomOpFBFunc)(int, void **, int *, const int *, const int, void *)
Definition: c_api.h:183
MXNET_DLL int MXKVStoreBarrier(KVStoreHandle handle)
global barrier among all worker machines
MXNET_DLL int MXExecutorSimpleBindEx(SymbolHandle symbol_handle, int dev_type, int dev_id, const uint32_t num_g2c_keys, const char **g2c_keys, const int *g2c_dev_types, const int *g2c_dev_ids, const uint32_t provided_grad_req_list_len, const char **provided_grad_req_names, const char **provided_grad_req_types, const uint32_t num_provided_arg_shapes, const char **provided_arg_shape_names, const int *provided_arg_shape_data, const uint32_t *provided_arg_shape_idx, const uint32_t num_provided_arg_dtypes, const char **provided_arg_dtype_names, const int *provided_arg_dtypes, const uint32_t num_provided_arg_stypes, const char **provided_arg_stype_names, const int *provided_arg_stypes, const uint32_t 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, uint32_t *num_in_args, NDArrayHandle **in_args, NDArrayHandle **arg_grads, uint32_t *num_aux_states, NDArrayHandle **aux_states, ExecutorHandle shared_exec_handle, ExecutorHandle *out)
MXNET_DLL int MXDataIterBeforeFirst(DataIterHandle handle)
Call iterator.Reset.
MXNET_DLL int MXNDArrayGetShape(NDArrayHandle handle, uint32_t *out_dim, const uint32_t **out_pdata)
DEPRECATED. Use MXNDArrayGetShapeEx instead. get the shape of the array.
MXNET_DLL int MXNDArrayGetAuxNDArray64(NDArrayHandle handle, int64_t i, NDArrayHandle *out)
Get a deep copy of the ith aux data blob This api is available when MXNet is built with flag USE_INT6...
MXNET_DLL int MXNDArrayCreateEx(const uint32_t *shape, uint32_t ndim, int dev_type, int dev_id, int delay_alloc, int dtype, NDArrayHandle *out)
create a NDArray with specified shape and data type This api is available when MXNet is built with fl...
MXNET_DLL int MXNDArrayDetach(NDArrayHandle handle, NDArrayHandle *out)
detach and ndarray from computation graph by clearing entry_
void(* CachedOpMonitorCallback)(const char *, const char *, NDArrayHandle)
Monitor callback called at operator level for cached op.
Definition: c_api.h:114
MXNET_DLL int MXAggregateProfileStatsPrintEx(const char **out_str, int reset, int format, int sort_by, int ascending)
Print sorted aggregate stats to the a string How aggregate stats are stored will not change...
bool enabled
Definition: c_api.h:160
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 MXEngineSetBulkSize(int bulk_size, int *prev_bulk_size)
set bulk execution limit
MXNET_DLL int MXNDArrayFree(NDArrayHandle handle)
free the narray handle
MXNET_DLL int MXStorageEmptyCache(int dev_type, int dev_id)
Release all unreferenced memory from the devices storage managers memory pool.
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
void(* ExecutorMonitorCallback)(const char *, NDArrayHandle, void *)
Definition: c_api.h:110
Definition: c_api.h:166
MXNET_DLL int MXKVStoreGetGroupSize(KVStoreHandle handle, int *ret)
return The number of nodes in this group, which is
MXNET_DLL int MXSetNumOMPThreads(int thread_num)
Set the number of OMP threads to use.
MXNET_DLL int MXRandomSeed(int seed)
Seed all global random number generators in mxnet.
MXNET_DLL int MXExecutorOutputs(ExecutorHandle handle, uint32_t *out_size, NDArrayHandle **out)
Get executor&#39;s head NDArray.
MXNET_DLL int MXKVStorePullEx(KVStoreHandle handle, uint32_t 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 MXNDArrayAt(NDArrayHandle handle, uint32_t idx, NDArrayHandle *out)
Index the NDArray along axis 0. This api is available when MXNet is built with flag USE_INT64_TENSOR_...
MXNET_DLL int MXProfileCreateDomain(const char *domain, ProfileHandle *out)
Create profiling domain.
MXNET_DLL int MXSymbolFree(SymbolHandle symbol)
Free the symbol handle.
Definition: c_api.h:209
MXNET_DLL int MXSymbolGetAttr(SymbolHandle symbol, const char *key, const char **out, int *success)
Get string attribute from symbol.
MXNET_DLL int MXShallowCopyNDArray(NDArrayHandle src, NDArrayHandle *out)
Create an NDArray from source sharing the same data chunk.
Definition: c_api.h:133
void * p_forward
Definition: c_api.h:126
MXNET_DLL int MXExecutorBackward(ExecutorHandle handle, uint32_t len, NDArrayHandle *head_grads)
Excecutor run backward.
void * p_list_arguments
Definition: c_api.h:130
MXNET_DLL int MXKVStoreInitEx(KVStoreHandle handle, uint32_t num, const char **keys, NDArrayHandle *vals)
Init a list of (key,value) pairs in kvstore, where each key is a string.
MXNET_DLL int MXNDArrayCreate(const uint32_t *shape, uint32_t ndim, int dev_type, int dev_id, int delay_alloc, NDArrayHandle *out)
create a NDArray with specified shape
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 MXNDArrayGetGrad(NDArrayHandle handle, NDArrayHandle *out)
return gradient buffer attached to this NDArray
MXNET_DLL int MXNDArrayGetGradState(NDArrayHandle handle, int *out)
set the flag for gradient array state.
MXNET_DLL int MXRecordIOWriterFree(RecordIOHandle handle)
Delete a RecordIO writer object.
MXNET_DLL int MXExecutorSimpleBindEx64(SymbolHandle symbol_handle, int dev_type, int dev_id, const uint32_t num_g2c_keys, const char **g2c_keys, const int *g2c_dev_types, const int *g2c_dev_ids, const uint32_t provided_grad_req_list_len, const char **provided_grad_req_names, const char **provided_grad_req_types, const uint32_t num_provided_arg_shapes, const char **provided_arg_shape_names, const int64_t *provided_arg_shape_data, const uint32_t *provided_arg_shape_idx, const uint32_t num_provided_arg_dtypes, const char **provided_arg_dtype_names, const int *provided_arg_dtypes, const uint32_t num_provided_arg_stypes, const char **provided_arg_stype_names, const int *provided_arg_stypes, const uint32_t 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, uint32_t *num_in_args, NDArrayHandle **in_args, NDArrayHandle **arg_grads, uint32_t *num_aux_states, NDArrayHandle **aux_states, ExecutorHandle shared_exec_handle, ExecutorHandle *out)
void * p_declare_backward_dependency
Definition: c_api.h:147
MXNET_DLL int MXNDArrayGetData(NDArrayHandle handle, void **out_pdata)
get the content of the data in NDArray
int(* CustomOpInferTypeFunc)(int, int *, void *)
Definition: c_api.h:195
MXNET_DLL int MXKVStoreSendCommmandToServers(KVStoreHandle handle, int cmd_id, const char *cmd_body)
Send a command to all server nodes.
MXNET_DLL int MXFuncInvoke(FunctionHandle fun, NDArrayHandle *use_vars, float *scalar_args, NDArrayHandle *mutate_vars)
invoke a function, the array size of passed in arguments must match the values in the ...
Definition: c_api.h:173
MXNET_DLL int MXExecutorReshapeEx(int partial_shaping, int allow_up_sizing, int dev_type, int dev_id, uint32_t num_map_keys, const char **map_keys, const int *map_dev_types, const int *map_dev_ids, const uint32_t num_provided_arg_shapes, const char **provided_arg_shape_names, const int *provided_arg_shape_data, const uint32_t *provided_arg_shape_idx, uint32_t *num_in_args, NDArrayHandle **in_args, NDArrayHandle **arg_grads, uint32_t *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...
void * CudaKernelHandle
handle to rtc cuda kernel
Definition: c_api.h:92
MXNET_DLL int MXRandomSeedContext(int seed, int dev_type, int dev_id)
Seed the global random number generator of the given device.
void * p_list_arguments
Definition: c_api.h:146
MXNET_DLL int MXSymbolGetChildren(SymbolHandle symbol, SymbolHandle *out)
Get a symbol that contains only direct children.
MXNET_DLL int MXKVStoreRunServer(KVStoreHandle handle, MXKVStoreServerController controller, void *controller_handle)
Run as server (or scheduler)
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 MXGenAtomicSymbolFromSymbol(SymbolHandle sym_handle, SymbolHandle *ret_sym_handle)
Generate atomic symbol (able to be composed) from a source symbol.
MXNET_DLL int MXAutogradIsRecording(bool *curr)
get whether autograd recording is on
MXNET_DLL int MXReducePrecisionSymbol(SymbolHandle sym_handle, SymbolHandle *ret_sym_handle, uint32_t num_args, const int *arg_type_data, uint32_t num_ind_ptr, const int *ind_ptr, const int *target_dtype, const int cast_optional_params, const uint32_t num_target_dtype_op_names, const uint32_t num_fp32_op_names, const uint32_t num_widest_dtype_op_names, const uint32_t num_conditional_fp32_op_names, const uint32_t num_excluded_symbols, const uint32_t num_model_params, const char **target_dtype_op_names, const char **fp32_op_names, const char **widest_dtype_op_names, const char **conditional_fp32_op_names, const char **excluded_symbols, const char **conditional_param_names, const char **conditional_param_vals, const char **model_param_names, const char **arg_names)
Convert a symbol into a mixed precision symbol with cast operators for target dtype casting...
MXNET_DLL int MXNDArrayToDLPack(NDArrayHandle handle, DLManagedTensorHandle *out_dlpack)
Create a reference view of NDArray that represents as DLManagedTensor Notice: MXNet uses asynchronous...
int(* CustomOpPropCreator)(const char *, const int, const char **, const char **, struct MXCallbackList *)
Definition: c_api.h:203
MXNET_DLL int MXFuncInvokeEx(FunctionHandle fun, NDArrayHandle *use_vars, 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 MXLoadLib(const char *path, unsigned verbose)
Load library dynamically.
MXNET_DLL int MXExecutorSimpleBind(SymbolHandle symbol_handle, int dev_type, int dev_id, const uint32_t num_g2c_keys, const char **g2c_keys, const int *g2c_dev_types, const int *g2c_dev_ids, const uint32_t provided_grad_req_list_len, const char **provided_grad_req_names, const char **provided_grad_req_types, const uint32_t num_provided_arg_shapes, const char **provided_arg_shape_names, const uint32_t *provided_arg_shape_data, const uint32_t *provided_arg_shape_idx, const uint32_t num_provided_arg_dtypes, const char **provided_arg_dtype_names, const int *provided_arg_dtypes, const uint32_t num_provided_arg_stypes, const char **provided_arg_stype_names, const int *provided_arg_stypes, const uint32_t 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, uint32_t *num_in_args, NDArrayHandle **in_args, NDArrayHandle **arg_grads, uint32_t *num_aux_states, NDArrayHandle **aux_states, ExecutorHandle shared_exec_handle, ExecutorHandle *out)
DEPRECATED. Use MXExecutorSimpleBindEx instead.
MXNET_DLL int MXSymbolCreateFromFile(const char *fname, SymbolHandle *out)
Load a symbol from a json file.
MXNET_DLL int MXDataIterGetData(DataIterHandle handle, NDArrayHandle *out)
Get the handle to the NDArray of underlying data.
MXNET_DLL int MXSymbolCreateGroup(uint32_t num_symbols, SymbolHandle *symbols, SymbolHandle *out)
Create a Symbol by grouping list of symbols together.
int num_callbacks
Definition: c_api.h:153
MXNET_DLL int MXGetGPUCount(int *out)
Get the number of GPUs.
MXNET_DLL int MXListAllOpNames(uint32_t *out_size, const char ***out_array)
list all the available operator names, include entries.
MXNET_DLL int MXFreeCachedOp(CachedOpHandle handle)
free cached operator
MXNET_DLL int MXRecordIOReaderFree(RecordIOHandle handle)
Delete a RecordIO reader object.
MXNET_DLL int MXNotifyShutdown()
Notify the engine about a shutdown, This can help engine to print less messages into display...
void(* forward)(int, float **, int *, unsigned **, int *, void *)
Definition: c_api.h:120
MXNET_DLL int MXSymbolInferTypePartial(SymbolHandle sym, uint32_t num_args, const char **keys, const int *arg_type_data, uint32_t *in_type_size, const int **in_type_data, uint32_t *out_type_size, const int **out_type_data, uint32_t *aux_type_size, const int **aux_type_data, int *complete)
partially infer type of unknown input types given the known one.
MXNET_DLL int MXKVStorePushEx(KVStoreHandle handle, uint32_t num, const char **keys, NDArrayHandle *vals, int priority)
Push a list of (key,value) pairs to kvstore, where each key is a string.
MXNET_DLL int MXExecutorSetMonitorCallback(ExecutorHandle handle, ExecutorMonitorCallback callback, void *callback_handle)
set a call back to notify the completion of operation
MXNET_DLL int MXSymbolGetAtomicSymbolInfo(AtomicSymbolCreator creator, const char **name, const char **description, uint32_t *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.
MXNET_DLL int MXEnginePushAsyncND(EngineAsyncFunc async_func, void *func_param, EngineFuncParamDeleter deleter, ContextHandle ctx_handle, NDArrayHandle *const_nds_handle, int num_const_nds, NDArrayHandle *mutable_nds_handle, int num_mutable_nds, EngineFnPropertyHandle prop_handle DEFAULT(NULL), int priority DEFAULT(0), const char *opr_name DEFAULT(NULL), bool wait DEFAULT(false))
Push an asynchronous operation to the engine.
Definition: c_api.h:170
int(* CustomOpDelFunc)(void *)
Definition: c_api.h:186
MXNET_DLL int MXProfileCreateTask(ProfileHandle domain, const char *task_name, ProfileHandle *out)
Create profile task.
const char * name
Definition: c_api.h:159
MXNET_DLL int MXAutogradSetIsRecording(int is_recording, int *prev)
set whether to record operator for autograd
MXNET_DLL int MXNDArrayLoad(const char *fname, uint32_t *out_size, NDArrayHandle **out_arr, uint32_t *out_name_size, const char ***out_names)
Load list of narray from the file.
MXNET_DLL int MXSymbolGetInternals(SymbolHandle symbol, SymbolHandle *out)
Get a symbol that contains all the internals.
Definition: c_api.h:178
MXNET_DLL int MXFuncGetInfo(FunctionHandle fun, const char **name, const char **description, uint32_t *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 MXNDArrayGetAuxNDArray(NDArrayHandle handle, uint32_t i, NDArrayHandle *out)
Get a deep copy of the ith aux data blob This api is available when MXNet is built with flag USE_INT6...
Definition: c_api.h:210
MXNET_DLL int MXKVStoreGetType(KVStoreHandle handle, const char **type)
get the type of the kvstore
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
void(* EngineSyncFunc)(void *, void *)
Engine synchronous operation.
Definition: c_api.h:107
Definition: c_api.h:177
MXNET_DLL int MXQuantizeSymbol(SymbolHandle sym_handle, SymbolHandle *ret_sym_handle, const int *dev_type, const uint32_t num_excluded_sym_names, const char **excluded_sym_names, const uint32_t num_excluded_op_names, const char **excluded_op_names, const uint32_t num_offline, const char **offline_params, const char *quantized_dtype, const bool calib_quantize, const char *quantize_mode, const char *quantize_granularity, uint32_t *out_num_calib_names, const char ***out_calib_names)
Convert a symbol into a quantized symbol where FP32 operators are replaced with INT8.
MXNET_DLL int MXSymbolInferShapePartialEx(SymbolHandle sym, uint32_t num_args, const char **keys, const uint32_t *arg_ind_ptr, const int *arg_shape_data, uint32_t *in_shape_size, const int **in_shape_ndim, const int ***in_shape_data, uint32_t *out_shape_size, const int **out_shape_ndim, const int ***out_shape_data, uint32_t *aux_shape_size, const int **aux_shape_ndim, const int ***aux_shape_data, int *complete)
partially infer shape of unknown input shapes given the known one.
MXNET_DLL int MXNDArrayGetStorageType(NDArrayHandle handle, int *out_storage_type)
get the storage type of the array
MXNET_DLL int MXListFunctions(uint32_t *out_size, FunctionHandle **out_array)
list all the available functions handles most user can use it to list all the needed functions ...
MXNET_DLL int MXGetVersion(int *out)
get the MXNet library version as an integer
MXNET_DLL int MXNDArrayCreateSparseEx(int storage_type, const uint32_t *shape, uint32_t ndim, int dev_type, int dev_id, int delay_alloc, int dtype, uint32_t num_aux, int *aux_type, uint32_t *aux_ndims, const uint32_t *aux_shape, NDArrayHandle *out)
create an empty sparse NDArray with specified shape and data type This api is available when MXNet is...
int(* MXGenericCallback)(void)
Definition: c_api.h:150
void(* EngineFuncParamDeleter)(void *)
Callback to free the param for EngineAsyncFunc/EngineSyncFunc.
Definition: c_api.h:109
MXNET_DLL int MXAutogradIsTraining(bool *curr)
get whether training mode is on
MXNET_DLL int MXProcessProfilePause(int paused, int profile_process, KVStoreHandle kvStoreHandle)
Pause profiler tuning collection.
const void * ContextHandle
handle to Context
Definition: c_api.h:98
MXNET_DLL int MXRtcCudaKernelFree(CudaKernelHandle handle)
MXNET_DLL int MXKVStorePullWithSparse(KVStoreHandle handle, uint32_t num, const int *keys, NDArrayHandle *vals, int priority, bool ignore_sparse)
pull a list of (key, value) pairs from the kvstore
void * p_list_outputs
Definition: c_api.h:145
void(* EngineAsyncFunc)(void *, void *, void *)
Engine asynchronous operation.
Definition: c_api.h:105
MXNET_DLL int MXCreateCachedOp(SymbolHandle handle, CachedOpHandle *out)
create cached operator
MXNET_DLL int MXNDArrayReshape64(NDArrayHandle handle, int ndim, dim_t *dims, bool reverse, NDArrayHandle *out)
Reshape the NDArray.
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 MXProfileDurationStart(ProfileHandle duration_handle)
Start timing the duration of a profile duration object such as an event, task or frame.
MXNET_DLL int MXEnginePushSyncND(EngineSyncFunc sync_func, void *func_param, EngineFuncParamDeleter deleter, ContextHandle ctx_handle, NDArrayHandle *const_nds_handle, int num_const_nds, NDArrayHandle *mutable_nds_handle, int num_mutable_nds, EngineFnPropertyHandle prop_handle DEFAULT(NULL), int priority DEFAULT(0), const char *opr_name DEFAULT(NULL))
Push a synchronous operation to the engine.
MXNET_DLL int MXSymbolListArguments(SymbolHandle symbol, uint32_t *out_size, const char ***out_str_array)
List arguments in the symbol.
void * RtcHandle
handle to MXRtc
Definition: c_api.h:88
MXNET_DLL int MXKVStorePushPull(KVStoreHandle handle, mx_uint vnum, const int *vkeys, mx_uint onum, const int *okeys, NDArrayHandle *vals, NDArrayHandle *outs, int priority)
push and pull a list of (key, value) pairs from the kvstore
MXNET_DLL int MXNDArraySlice64(NDArrayHandle handle, int64_t slice_begin, int64_t slice_end, NDArrayHandle *out)
Slice the NDArray along axis 0. This api is available when MXNet is built with flag USE_INT64_TENSOR_...
MXNET_DLL int MXSymbolInferType(SymbolHandle sym, uint32_t num_args, const char **keys, const int *arg_type_data, uint32_t *in_type_size, const int **in_type_data, uint32_t *out_type_size, const int **out_type_data, uint32_t *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...
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
#define DEFAULT(x)
Inhibit C++ name-mangling for MXNet functions.
Definition: c_api.h:36
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 MXRtcCudaKernelCreate(CudaModuleHandle handle, const char *name, int num_args, int *is_ndarray, int *is_const, int *arg_types, CudaKernelHandle *out)
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:2985
void * RecordIOHandle
handle to RecordIO
Definition: c_api.h:86
MXNET_DLL int MXKVStoreSetBarrierBeforeExit(KVStoreHandle handle, const int barrier_before_exit)
whether to do barrier when finalize
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.
MXNET_DLL int MXEnginePushAsync(EngineAsyncFunc async_func, void *func_param, EngineFuncParamDeleter deleter, ContextHandle ctx_handle, EngineVarHandle const_vars_handle, int num_const_vars, EngineVarHandle mutable_vars_handle, int num_mutable_vars, EngineFnPropertyHandle prop_handle DEFAULT(NULL), int priority DEFAULT(0), const char *opr_name DEFAULT(NULL), bool wait DEFAULT(false))
Push an asynchronous operation to the engine.
MXNET_DLL int MXExecutorFree(ExecutorHandle handle)
Delete the executor.
MXNET_DLL int MXSymbolSaveToFile(SymbolHandle symbol, const char *fname)
Save a symbol into a json file.
MXNET_DLL int MXRtcCudaModuleCreate(const char *source, int num_options, const char **options, int num_exports, const char **exports, CudaModuleHandle *out)
void * p_infer_shape
Definition: c_api.h:128
void * AtomicSymbolHandle
handle to a AtomicSymbol
Definition: c_api.h:76
const void * EngineFnPropertyHandle
handle to Engine FnProperty
Definition: c_api.h:100
MXNET_DLL int MXSymbolCreateAtomicSymbol(AtomicSymbolCreator creator, uint32_t num_param, const char **keys, const char **vals, SymbolHandle *out)
Create an AtomicSymbol.
MXNET_DLL int MXProfileSetCounter(ProfileHandle counter_handle, uint64_t value)
Set a counter, given its handle.
MXNET_DLL int MXNDArrayCreateNone(NDArrayHandle *out)
Load TVM operator from the binary library.
MXNET_DLL int MXKVStorePullWithSparseEx(KVStoreHandle handle, uint32_t 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
Definition: c_api.h:164
MXNET_DLL int MXDumpProcessProfile(int finished, int profile_process, KVStoreHandle kvStoreHandle)
Save profile and stop profiler.
void() MXKVStoreServerController(int head, const char *body, void *controller_handle)
the prototype of a server controller
Definition: c_api.h:3092
MXNET_DLL int MXSetProcessProfilerState(int state, int profile_process, KVStoreHandle kvStoreHandle)
Set up state of profiler for either worker or server process.
CustomOpCallbacks
Definition: c_api.h:163
MXNET_DLL int MXNDArrayCreateFromSharedMemEx(int shared_pid, int shared_id, const int *shape, int ndim, int dtype, NDArrayHandle *out)
Reconstruct NDArray from shared memory handle.
void * p_backward
Definition: c_api.h:143
MXNET_DLL int MXNDArrayGetAuxType64(NDArrayHandle handle, int64_t i, int *out_type)
get the type of the ith aux data in NDArray This api is available when MXNet is built with flag USE_I...
void * NDArrayHandle
handle to NDArray
Definition: c_api.h:66
Definition: c_api.h:158
void * KVStoreHandle
handle to KVStore
Definition: c_api.h:84
void * CudaModuleHandle
handle to rtc cuda module
Definition: c_api.h:90
MXNET_DLL int MXSymbolGetName(SymbolHandle symbol, const char **out, int *success)
Get string name from symbol.
MXNET_DLL int MXNDArraySave(const char *fname, uint32_t num_args, NDArrayHandle *args, const char **keys)
Save list of narray into the file.
MXNET_DLL int MXKVStorePullRowSparseEx(KVStoreHandle handle, uint32_t 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 MXSymbolSaveToJSON(SymbolHandle symbol, const char **out_json)
Save a symbol into a json string.
MXNET_DLL int MXLibInfoFeatures(const struct LibFeature **libFeature, size_t *size)
Get list of features supported on the runtime.
MXNET_DLL int MXKVStoreInit(KVStoreHandle handle, uint32_t num, const int *keys, NDArrayHandle *vals)
Init a list of (key,value) pairs in kvstore.
MXNET_DLL int MXKVStoreSetUpdater(KVStoreHandle handle, MXKVStoreUpdater updater, void *updater_handle)
register a push updater
MXNET_DLL int MXNDArrayWaitToWrite(NDArrayHandle handle)
Wait until all the pending read/write with respect NDArray are finished. Always call this before writ...
CustomOpPropCallbacks
Definition: c_api.h:169
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 MXSymbolGetAtomicSymbolName(AtomicSymbolCreator creator, const char **name)
Get the name of an atomic symbol.
MXNET_DLL int MXAutogradGetSymbol(NDArrayHandle handle, SymbolHandle *out)
MXNET_DLL int MXCustomFunctionRecord(int num_inputs, NDArrayHandle *inputs, int num_outputs, NDArrayHandle *outputs, struct MXCallbackList *callbacks)
Definition: c_api.h:172
void * CachedOpHandle
handle to cached operator
Definition: c_api.h:72
MXNET_DLL int MXSymbolCompose(SymbolHandle sym, const char *name, uint32_t num_args, const char **keys, SymbolHandle *args)
Compose the symbol on other symbols.
MXNET_DLL int MXNDArrayFromDLPack(DLManagedTensorHandle dlpack, NDArrayHandle *out_handle)
DEPRECATED. Use MXNDArrayFromDLPackEx instead.
MXNET_DLL int MXSymbolListOutputs(SymbolHandle symbol, uint32_t *out_size, const char ***out_str_array)
List returns in the symbol.
MXNET_DLL int MXNDArrayWaitAll()
wait until all delayed operations in the system is completed
MXNET_DLL int MXSymbolInferShapeEx(SymbolHandle sym, uint32_t num_args, const char **keys, const uint32_t *arg_ind_ptr, const int *arg_shape_data, uint32_t *in_shape_size, const int **in_shape_ndim, const int ***in_shape_data, uint32_t *out_shape_size, const int **out_shape_ndim, const int ***out_shape_data, uint32_t *aux_shape_size, const int **aux_shape_ndim, const int ***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 MXDataIterGetIterInfo(DataIterCreator creator, const char **name, const char **description, uint32_t *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 MXInvokeCachedOp(CachedOpHandle handle, int num_inputs, NDArrayHandle *inputs, int *num_outputs, NDArrayHandle **outputs)
invoke cached operator
MXNET_DLL int MXRecordIOWriterTell(RecordIOHandle handle, size_t *pos)
Get the current writer pointer position.
#define MXNET_DLL
MXNET_DLL prefix for windows.
Definition: c_api.h:53
MXNET_DLL int MXNDArraySyncCopyFromCPU(NDArrayHandle handle, const void *data, size_t size)
Perform a synchronize copy from a contiguous CPU memory region.
MXNET_DLL int MXEnginePushSync(EngineSyncFunc sync_func, void *func_param, EngineFuncParamDeleter deleter, ContextHandle ctx_handle, EngineVarHandle const_vars_handle, int num_const_vars, EngineVarHandle mutable_vars_handle, int num_mutable_vars, EngineFnPropertyHandle prop_handle DEFAULT(NULL), int priority DEFAULT(0), const char *opr_name DEFAULT(NULL))
Push a synchronous operation to the engine.
MXNET_DLL int MXRtcCreate(char *name, uint32_t num_input, uint32_t num_output, char **input_names, char **output_names, NDArrayHandle *inputs, NDArrayHandle *outputs, char *kernel, RtcHandle *out)
Create a MXRtc object.
MXNET_DLL int MXNDArrayGetContext(NDArrayHandle handle, int *out_dev_type, int *out_dev_id)
get the context of the NDArray
MXNET_DLL int MXSymbolGrad(SymbolHandle sym, uint32_t num_wrt, const char **wrt, SymbolHandle *out)
Get the gradient graph of the symbol.
MXNET_DLL int MXKVStoreSetGradientCompression(KVStoreHandle handle, uint32_t num_params, const char **keys, const char **vals)
Set parameters to use low-bit compressed gradients.
MXNET_DLL int MXRecordIOWriterCreate(const char *uri, RecordIOHandle *out)
Create a RecordIO writer object.
MXNET_DLL int MXKVStoreIsSchedulerNode(int *ret)
return whether or not this process is a scheduler node.
MXNET_DLL int MXKVStorePush(KVStoreHandle handle, uint32_t num, const int *keys, NDArrayHandle *vals, int priority)
Push a list of (key,value) pairs to kvstore.
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 MXSymbolCreateFromJSON(const char *json, SymbolHandle *out)
Load a symbol from a json string.
void * DLManagedTensorHandle
handle to DLManagedTensor
Definition: c_api.h:96
MXNET_DLL int MXDataIterCreateIter(DataIterCreator handle, uint32_t 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 MXExecutorForward(ExecutorHandle handle, int is_train)
Executor forward method.
MXNET_DLL int MXExecutorBackwardEx(ExecutorHandle handle, uint32_t len, NDArrayHandle *head_grads, int is_train)
Excecutor run backward.
MXNET_DLL int MXSymbolGetOutput(SymbolHandle symbol, uint32_t index, SymbolHandle *out)
Get index-th outputs of the symbol.
MXNET_DLL int MXNDArrayReshape(NDArrayHandle handle, int ndim, int *dims, NDArrayHandle *out)
Reshape the NDArray.
MXNET_DLL int MXNDArrayGetSharedMemHandle(NDArrayHandle handle, int *shared_pid, int *shared_id)
Get shared memory handle from NDArray.
MXNET_DLL int MXKVStoreBroadcast(KVStoreHandle handle, mx_uint vnum, const int *vkeys, mx_uint onum, const int *okeys, NDArrayHandle *vals, NDArrayHandle *outs, int priority)
broadcast a list of (key, value) pairs from the kvstore
void ** contexts
Definition: c_api.h:155
MXNET_DLL int MXCustomOpRegister(const char *op_type, CustomOpPropCreator creator)
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 MXNDArrayFromDLPackEx(DLManagedTensorHandle dlpack, const bool transient_handle, NDArrayHandle *out_handle)
Create a NDArray backed by a dlpack tensor.
MXNET_DLL int MXNDArrayCreateFromSharedMem(int shared_pid, int shared_id, const uint32_t *shape, uint32_t ndim, int dtype, NDArrayHandle *out)
DEPRECATED. Use MXNDArrayCreateFromSharedMemEx instead. Reconstruct NDArray from shared memory handle...
MXNET_DLL int MXExecutorGetOptimizedSymbol(ExecutorHandle handle, SymbolHandle *out)
get optimized graph from graph executor
MXNET_DLL int MXSetProfilerConfig(int num_params, const char *const *keys, const char *const *vals)
Set up configuration of profiler for worker/current process.
MXNET_DLL int MXDumpProfile(int finished)
Save profile and stop profiler for worker/current process.
MXNET_DLL int MXSymbolListAtomicSymbolCreators(uint32_t *out_size, AtomicSymbolCreator **out_array)
list all the available AtomicSymbolEntry
MXNET_DLL int MXDataIterNext(DataIterHandle handle, int *out)
Move iterator to next position.
MXNET_DLL int MXKVStoreIsWorkerNode(int *ret)
return whether or not this process is a worker node.
MXNET_DLL int MXSymbolInferShapePartial(SymbolHandle sym, uint32_t num_args, const char **keys, const uint32_t *arg_ind_ptr, const uint32_t *arg_shape_data, uint32_t *in_shape_size, const uint32_t **in_shape_ndim, const uint32_t ***in_shape_data, uint32_t *out_shape_size, const uint32_t **out_shape_ndim, const uint32_t ***out_shape_data, uint32_t *aux_shape_size, const uint32_t **aux_shape_ndim, const uint32_t ***aux_shape_data, int *complete)
DEPRECATED. Use MXSymbolInferShapePartialEx instead. partially infer shape of unknown input shapes gi...
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...
void(* infer_shape)(int, int *, unsigned **, void *)
Definition: c_api.h:122
int(* CustomOpListFunc)(char ***, void *)
Definition: c_api.h:187
MXNET_DLL int MXExecutorBindX(SymbolHandle symbol_handle, int dev_type, int dev_id, uint32_t num_map_keys, const char **map_keys, const int *map_dev_types, const int *map_dev_ids, uint32_t len, NDArrayHandle *in_args, NDArrayHandle *arg_grad_store, uint32_t *grad_req_type, uint32_t aux_states_len, NDArrayHandle *aux_states, ExecutorHandle *out)
Generate Executor from symbol, This is advanced function, allow specify group2ctx map...
MXNET_DLL int MXRecordIOReaderTell(RecordIOHandle handle, size_t *pos)
Get the current writer pointer position.
MXNET_DLL int MXRecordIOReaderCreate(const char *uri, RecordIOHandle *out)
Create a RecordIO reader object.
MXNET_DLL int MXRecordIOReaderReadRecord(RecordIOHandle handle, char const **buf, size_t *size)
Write a record to a RecordIO object.
void * p_list_outputs
Definition: c_api.h:129
MXNET_DLL int MXExecutorBind(SymbolHandle symbol_handle, int dev_type, int dev_id, uint32_t len, NDArrayHandle *in_args, NDArrayHandle *arg_grad_store, uint32_t *grad_req_type, uint32_t aux_states_len, NDArrayHandle *aux_states, ExecutorHandle *out)
Generate Executor from symbol.
MXNET_DLL int MXExecutorPrint(ExecutorHandle handle, const char **out_str)
Print the content of execution plan, used for debug.
void * EngineVarHandle
handle to Engine VarHandle
Definition: c_api.h:102
int64_t dim_t
data type to store dim size
Definition: c_api.h:61
MXNET_DLL int MXAutogradSetIsTraining(int is_training, int *prev)
set whether to record operator for autograd
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 MXListDataIters(uint32_t *out_size, DataIterCreator **out_array)
List all the available iterator entries.
MXNET_DLL int MXCreateCachedOpEX(SymbolHandle handle, int num_flags, const char **keys, const char **vals, CachedOpHandle *out, bool thread_safe DEFAULT(false))
create cached operator, allows to choose thread_safe version of cachedop
MXNET_DLL int MXAutogradBackwardEx(uint32_t num_output, NDArrayHandle *output_handles, NDArrayHandle *ograd_handles, uint32_t 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
const void * FunctionHandle
handle to a mxnet narray function that changes NDArray
Definition: c_api.h:68
MXNET_DLL int MXNDArrayGetShapeEx64(NDArrayHandle handle, int *out_dim, const int64_t **out_pdata)
get the shape of the array This api is available when MXNet is built with flag USE_INT64_TENSOR_SIZE=...
void(* backward)(int, float **, int *, unsigned **, int *, void *)
Definition: c_api.h:121
Definition: c_api.h:152
void * DataIterHandle
handle to a DataIterator
Definition: c_api.h:82
MXNET_DLL int MXProfileCreateCounter(ProfileHandle domain, const char *counter_name, ProfileHandle *out)
Create profile counter.
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 MXOptimizeForBackend(SymbolHandle sym_handle, const char *backend_name, const int dev_type, SymbolHandle *ret_sym_handle, const mx_uint args_len, NDArrayHandle *in_args_handle, const mx_uint aux_len, NDArrayHandle *in_aux_handle, const mx_uint num_options, const char **keys, const char **vals, const uint32_t num_input_shapes, const char **input_shape_names, const int64_t *input_shape_data, const uint32_t *input_shape_idx, const uint32_t num_input_dtypes, const char **input_dtype_names, const int *input_dtypes, const uint32_t num_input_stypes, const char **input_stype_names, const int *input_stypes, bool skip_infer, int *new_args_cnt, NDArrayHandle **new_args_handle, char ***new_arg_names_handle, int *new_aux_cnt, NDArrayHandle **new_aux_handle, char ***new_aux_names_handle)
Partitions symbol for given backend, potentially creating subgraphs.
int(* CustomOpInferStorageTypeFunc)(int, int *, void *)
Definition: c_api.h:190
MXNET_DLL int MXRecordIOWriterWriteRecord(RecordIOHandle handle, const char *buf, size_t size)
Write a record to a RecordIO object.
Definition: c_api.h:174
MXNET_DLL int MXKVStorePushPullEx(KVStoreHandle handle, mx_uint vnum, const char **vkeys, mx_uint onum, const char **okeys, NDArrayHandle *vals, NDArrayHandle *outs, int priority)
push and pull a list of (key, value) pairs from the kvstore, where each key is a string ...
Definition: c_api.h:119
MXNET_DLL int MXNDArrayCreateSparseEx64(int storage_type, const int64_t *shape, int ndim, int dev_type, int dev_id, int delay_alloc, int dtype, uint32_t num_aux, int *aux_type, int *aux_ndims, const int64_t *aux_shape, NDArrayHandle *out)
create an empty sparse NDArray with specified shape and data type This api is available when MXNet is...
MXNET_DLL int MXDataIterFree(DataIterHandle handle)
Free the handle to the IO module.
MXNET_DLL int MXSymbolCopy(SymbolHandle symbol, SymbolHandle *out)
Copy the symbol to another handle.
MXNET_DLL int MXExecutorReshape(int partial_shaping, int allow_up_sizing, int dev_type, int dev_id, uint32_t num_map_keys, const char **map_keys, const int *map_dev_types, const int *map_dev_ids, const uint32_t num_provided_arg_shapes, const char **provided_arg_shape_names, const uint32_t *provided_arg_shape_data, const uint32_t *provided_arg_shape_idx, uint32_t *num_in_args, NDArrayHandle **in_args, NDArrayHandle **arg_grads, uint32_t *num_aux_states, NDArrayHandle **aux_states, ExecutorHandle shared_exec, ExecutorHandle *out)
DEPRECATED. Use MXExecutorReshapeEx instead. Return a new executor with the same symbol and shared me...
MXNET_DLL int MXNDArrayLoadFromBuffer(const void *ndarray_buffer, size_t size, uint32_t *out_size, NDArrayHandle **out_arr, uint32_t *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 MXDataIterGetPadNum(DataIterHandle handle, int *pad)
Get the padding number in current data batch.
void(* list_outputs)(char ***, void *)
Definition: c_api.h:123
MXNET_DLL int MXNDArraySyncCopyToCPU(NDArrayHandle handle, void *data, size_t size)
Perform a synchronize copyto a contiguous CPU memory region.
MXNET_DLL int MXInitPSEnv(uint32_t num_vars, const char **keys, const char **vals)
Initialized ps-lite environment variables.
MXNET_DLL int MXSymbolCreateVariable(const char *name, SymbolHandle *out)
Create a Variable Symbol.
MXNET_DLL int MXGetFunction(const char *name, FunctionHandle *out)
get the function handle by name
int(* CustomOpCreateFunc)(const char *, int, unsigned **, const int *, const int *, struct MXCallbackList *, void *)
Definition: c_api.h:199
MXNET_DLL int MXSymbolInferShapeEx64(SymbolHandle sym, uint32_t num_args, const char **keys, const int64_t *arg_ind_ptr, const int64_t *arg_shape_data, size_t *in_shape_size, const int **in_shape_ndim, const int64_t ***in_shape_data, size_t *out_shape_size, const int **out_shape_ndim, const int64_t ***out_shape_data, size_t *aux_shape_size, const int **aux_shape_ndim, const int64_t ***aux_shape_data, int *complete)
infer shape of unknown input shapes given the known one. The shapes are packed into a CSR matrix repr...
int(* CustomOpBackwardInferStorageTypeFunc)(int, int *, int *, void *)
Definition: c_api.h:191
MXNET_DLL int MXSymbolInferShape(SymbolHandle sym, uint32_t num_args, const char **keys, const uint32_t *arg_ind_ptr, const uint32_t *arg_shape_data, uint32_t *in_shape_size, const uint32_t **in_shape_ndim, const uint32_t ***in_shape_data, uint32_t *out_shape_size, const uint32_t **out_shape_ndim, const uint32_t ***out_shape_data, uint32_t *aux_shape_size, const uint32_t **aux_shape_ndim, const uint32_t ***aux_shape_data, int *complete)
DEPRECATED. Use MXSymbolInferShapeEx instead. infer shape of unknown input shapes given the known one...
uint32_t mx_uint
manually define unsigned int
Definition: c_api.h:57