Skip to content

Commit

Permalink
choose the NIC
Browse files Browse the repository at this point in the history
for the users who's machines equiped with multiple NIC
  • Loading branch information
qiaohaijun committed Dec 7, 2015
1 parent e8cb37e commit 81f835e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions doc/distributed_training.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,18 @@ including by resource managers such as `Yarn` or simply via `ssh`. [This tutoria
gives a step-by-step example on how to setup and run jobs on a GPU cluster at
Amazon AWS.

## Machines with multiple NIC (Network Interface Card)

For the user who's cluster is composed of machines equipped with multiple NICs, MXNet provides a way to let you choose the NIC you want to use.
For example, your machine is equipped with two NICs, one card's name is "eth0 (ethernet device)", another one is named "ib0 (infiniband device)".
You can choose NIC which you will by following the guide below.
```
export DMLC_INTERFACE="ib0"
```
or
```
export DMLC_INTERFACE="eth0"
```
<!-- ## More Readings -->

<!-- - [Distributed training examples with results](https://github.com/dmlc/mxnet/tree/master/example/distributed-training) -->
Expand Down

0 comments on commit 81f835e

Please sign in to comment.