monai
medical
katielink commited on
Commit
c41338c
1 Parent(s): 9feef16

fix the wrong GPU index issue of multi-node

Browse files
configs/metadata.json CHANGED
@@ -1,7 +1,8 @@
1
  {
2
  "schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
3
- "version": "0.4.7",
4
  "changelog": {
 
5
  "0.4.7": "enhance prepare datalist file",
6
  "0.4.6": "add dataset dir example",
7
  "0.4.5": "update ONNX-TensorRT descriptions",
@@ -25,7 +26,7 @@
25
  "0.1.1": "update for MetaTensor",
26
  "0.1.0": "complete the model package"
27
  },
28
- "monai_version": "1.2.0rc6",
29
  "pytorch_version": "1.13.1",
30
  "numpy_version": "1.22.2",
31
  "optional_packages_version": {
 
1
  {
2
  "schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
3
+ "version": "0.4.8",
4
  "changelog": {
5
+ "0.4.8": "fix the wrong GPU index issue of multi-node",
6
  "0.4.7": "enhance prepare datalist file",
7
  "0.4.6": "add dataset dir example",
8
  "0.4.5": "update ONNX-TensorRT descriptions",
 
26
  "0.1.1": "update for MetaTensor",
27
  "0.1.0": "complete the model package"
28
  },
29
+ "monai_version": "1.2.0",
30
  "pytorch_version": "1.13.1",
31
  "numpy_version": "1.22.2",
32
  "optional_packages_version": {
configs/multi_gpu_train.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "device": "$torch.device(f'cuda:{dist.get_rank()}')",
3
  "network": {
4
  "_target_": "torch.nn.parallel.DistributedDataParallel",
5
  "module": "$@network_def.to(@device)",
 
1
  {
2
+ "device": "$torch.device('cuda:' + os.environ['LOCAL_RANK'])",
3
  "network": {
4
  "_target_": "torch.nn.parallel.DistributedDataParallel",
5
  "module": "$@network_def.to(@device)",