├── LICENSE ├── README.md ├── dispytorch ├── mapreduce │ ├── master.py │ ├── node.py │ └── worker.py ├── ps │ ├── coordinator.py │ ├── node.py │ ├── server.py │ └── worker.py └── ring │ ├── node.py │ └── ring_allreduce.py ├── examples └── cifar10 │ ├── mapreduce.py │ ├── ps.py │ ├── resnet.py │ └── ring.py └── utils ├── bootmpipytorch.sh ├── rmall.sh ├── startall.sh └── stopall.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/README.md -------------------------------------------------------------------------------- /dispytorch/mapreduce/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/mapreduce/master.py -------------------------------------------------------------------------------- /dispytorch/mapreduce/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/mapreduce/node.py -------------------------------------------------------------------------------- /dispytorch/mapreduce/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/mapreduce/worker.py -------------------------------------------------------------------------------- /dispytorch/ps/coordinator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/ps/coordinator.py -------------------------------------------------------------------------------- /dispytorch/ps/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/ps/node.py -------------------------------------------------------------------------------- /dispytorch/ps/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/ps/server.py -------------------------------------------------------------------------------- /dispytorch/ps/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/ps/worker.py -------------------------------------------------------------------------------- /dispytorch/ring/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/ring/node.py -------------------------------------------------------------------------------- /dispytorch/ring/ring_allreduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/dispytorch/ring/ring_allreduce.py -------------------------------------------------------------------------------- /examples/cifar10/mapreduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/examples/cifar10/mapreduce.py -------------------------------------------------------------------------------- /examples/cifar10/ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/examples/cifar10/ps.py -------------------------------------------------------------------------------- /examples/cifar10/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/examples/cifar10/resnet.py -------------------------------------------------------------------------------- /examples/cifar10/ring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/examples/cifar10/ring.py -------------------------------------------------------------------------------- /utils/bootmpipytorch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/utils/bootmpipytorch.sh -------------------------------------------------------------------------------- /utils/rmall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/utils/rmall.sh -------------------------------------------------------------------------------- /utils/startall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LIBBLE/LIBBLE-DL/HEAD/utils/startall.sh -------------------------------------------------------------------------------- /utils/stopall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | for((i=0;i<${1};i++)); 3 | do 4 | docker stop node${i}; 5 | done 6 | --------------------------------------------------------------------------------