1 #include <pybind11/pybind11.h> 3 #include "caffe2/distributed/store_handler.h" 10 PYBIND11_MODULE(python, m) {
11 m.doc() =
"Python interface for distributed Caffe2";
13 py::register_exception<StoreHandlerNotAvailableException>(
14 m,
"StoreHandlerNotAvailableError");
16 py::register_exception<StoreHandlerTimeoutException>(
17 m,
"StoreHandlerTimeoutError");
A global dictionary that holds information about what Caffe2 modules have been loaded in the current ...