forked from tumblr/collins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GH pages to include GPU config information.
Ref tumblr#537
- Loading branch information
Jacob Yundt
committed
May 23, 2017
1 parent
ff4894c
commit d81a560
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<p class="lead">Collecting GPU information</p> | ||
<p> | ||
<span class="label label-info">Namespace</span> <span class="inlinecode">gpu</span> | ||
</p> | ||
|
||
<p> | ||
GPU information can be stored in collins by adding GPU vendors to a whitelist. By default, any NVIDIA GPUs (PCI vendor = <code>"NVIDIA Corporation"</code>) will be parsed from lshw XML data and added to collins. | ||
Additional vendors can be added by updating the configuration with their PCI vendor information. | ||
</p> | ||
|
||
<table class="table table-condensed table-hover"> | ||
<thead> | ||
<tr> | ||
<th>Key</th><th>Type</th><th>Description</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td class="inlinecode">supportedVendorStrings</td> | ||
<td>Set[String]</td> | ||
<td>PCI vendor strings to whitelist when parsing LSHW output. Defaults to <code>["NVIDIA Corporation"]</code>.</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<div class="example reference-config"> | ||
<pre>gpu { | ||
|
||
supportedVendorStrings = ["NVIDIA Corporation", "Advanced Micro Devices, Inc. [AMD/ATI]"] | ||
|
||
}</pre> | ||
</div> |