|
mxnet
|
APIs to interact with libraries. More...
Go to the source code of this file.
Macros | |
| #define | MXLIB_INITIALIZE_STR "initialize" |
| Following are the APIs implemented in the external library Each API has a #define string that is used to lookup the function in the library Followed by the function declaration. More... | |
Typedefs | |
| typedef int(* | initialize_t) (int) |
Functions | |
| int | initialize (int) |
| Checks if the MXNet version is supported by the library. If supported, initializes the library. More... | |
APIs to interact with libraries.
Copyright (c) 2015 by Contributors
| #define MXLIB_INITIALIZE_STR "initialize" |
Following are the APIs implemented in the external library Each API has a #define string that is used to lookup the function in the library Followed by the function declaration.
| typedef int(* initialize_t) (int) |
| int initialize | ( | int | ) |
Checks if the MXNet version is supported by the library. If supported, initializes the library.
| version | MXNet version number passed to library and defined as: MXNET_VERSION = (MXNET_MAJOR*10000 + MXNET_MINOR*100 + MXNET_PATCH) |
1.8.11