You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add ability to speficy GPUs by UUID prefix (mlco2#923)
* Add the ability to pass UUID prefixes as a way of specifying what GPUs to track..
This is to address mlco2#873
Prior to this change you could only pass an index into the number of GPUs on the system.
Now you can pass a UUID prefix, including the 'MIG-' prefix per
https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#cuda-environment-variables
if desired.
Note that I have not been able to test this on real life repo. The reporter of
mlco2#873 was not able to provide a repro.
* Update logging and documentation for GPU indentifier prefix matching.
* Update the rst parameters file for GPU prefix matching and generate the matching html file.
Copy file name to clipboardExpand all lines: docs/parameters.html
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -131,7 +131,12 @@ <h2>Input Parameters<a class="headerlink" href="#input-parameters" title="Link t
131
131
</td>
132
132
</tr>
133
133
<trclass="row-even"><td><p>gpu_ids</p></td>
134
-
<td><p>User-specified known gpu ids to track, defaults to <codeclass="docutils literal notranslate"><spanclass="pre">None</span></code></p></td>
134
+
<td><divclass="line-block">
135
+
<divclass="line">Comma-separated list of GPU ids to track, defaults to <codeclass="docutils literal notranslate"><spanclass="pre">None</span></code></div>
136
+
<divclass="line">These can either be integer indexes of GPUs on the system, or prefixes</div>
137
+
<divclass="line">to match against GPU identifiers as described <aclass="reference external" href="https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#cuda-environment-variables">here</a></div>
0 commit comments