This is an automated email from the ASF dual-hosted git repository.
haibin pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.
from b1e4911 Multithreaded Inference Support (#16654)
add 65aab9e Add p3 KVStore (#15124)
No new revisions were added by this update.
Summary of changes:
ci/docker/runtime_functions.sh | 1 +
docs/static_site/src/pages/api/faq/env_var.md | 5 +
include/mxnet/c_api.h | 42 ++++
include/mxnet/kvstore.h | 28 +++
python/mxnet/error.py | 1 +
python/mxnet/gluon/trainer.py | 2 +-
python/mxnet/kvstore/base.py | 4 +-
python/mxnet/kvstore/kvstore.py | 33 ++-
python/mxnet/model.py | 21 +-
src/c_api/c_api.cc | 52 +++++
src/kvstore/kvstore.cc | 9 +-
src/kvstore/kvstore_dist.h | 170 ++++++++-------
src/kvstore/kvstore_local.h | 40 ++++
src/kvstore/p3store_dist.h | 256 +++++++++++++++++++++++
tests/nightly/dist_device_sync_kvstore.py | 12 +-
tests/nightly/dist_device_sync_kvstore_custom.py | 2 +-
tools/launch.py | 4 +
17 files changed, 571 insertions(+), 111 deletions(-)
create mode 100644 src/kvstore/p3store_dist.h