Skip to content

Commit 2061cdb

Browse files
committed
CUDA: Unify runArgs
1 parent 34c7bca commit 2061cdb

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

.devcontainer/cuda-julia-base/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
},
105105

106106
"runArgs": [
107-
"--gpus=all",
108-
"--shm-size=2g"
107+
"--gpus", "device=all",
108+
"--shm-size", "2g"
109109
]
110110
}

.devcontainer/cuda-julia-pubtools/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
},
107107

108108
"runArgs": [
109-
"--gpus=all",
110-
"--shm-size=2g"
109+
"--gpus", "device=all",
110+
"--shm-size", "2g"
111111
]
112112
}

.devcontainer/cuda-python-base/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
},
9898

9999
"runArgs": [
100-
"--gpus=all",
101-
"--shm-size=2g"
100+
"--gpus", "device=all",
101+
"--shm-size", "2g"
102102
]
103103
}

.devcontainer/cuda-python-scipy/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
},
100100

101101
"runArgs": [
102-
"--gpus=all",
103-
"--shm-size=2g"
102+
"--gpus", "device=all",
103+
"--shm-size", "2g"
104104
]
105105
}

.devcontainer/cuda-r-base/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
},
110110

111111
"runArgs": [
112-
"--gpus=all",
113-
"--shm-size=2g"
112+
"--gpus", "device=all",
113+
"--shm-size", "2g"
114114
]
115115
}

.devcontainer/cuda-r-geospatial/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
},
112112

113113
"runArgs": [
114-
"--gpus=all",
115-
"--shm-size=2g"
114+
"--gpus", "device=all",
115+
"--shm-size", "2g"
116116
]
117117
}

.devcontainer/cuda-r-qgisprocess/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
},
122122

123123
"runArgs": [
124-
"--gpus=all",
125-
"--shm-size=2g"
124+
"--gpus", "device=all",
125+
"--shm-size", "2g"
126126
]
127127
}

.devcontainer/cuda-r-tidyverse/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
},
110110

111111
"runArgs": [
112-
"--gpus=all",
113-
"--shm-size=2g"
112+
"--gpus", "device=all",
113+
"--shm-size", "2g"
114114
]
115115
}

.devcontainer/cuda-r-verse/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
},
112112

113113
"runArgs": [
114-
"--gpus=all",
115-
"--shm-size=2g"
114+
"--gpus", "device=all",
115+
"--shm-size", "2g"
116116
]
117117
}

0 commit comments

Comments
 (0)