mirror of
https://github.com/lone-cloud/gerbil
synced 2026-06-03 09:33:10 -07:00
better tell apart multi-GPU set ups for monitoring
This commit is contained in:
parent
96b68f7ee4
commit
9268c58f42
1 changed files with 4 additions and 2 deletions
|
|
@ -99,7 +99,8 @@ export const StatusBar = ({ maxDataPoints = 60 }: StatusBarProps) => {
|
|||
variant="light"
|
||||
style={{ minWidth: '5rem', textAlign: 'center' }}
|
||||
>
|
||||
GPU: {gpu.usage.toFixed(1)}%
|
||||
GPU{gpuMetrics.gpus.length > 1 ? ` ${index + 1}` : ''}:{' '}
|
||||
{gpu.usage.toFixed(1)}%
|
||||
</Badge>
|
||||
</Tooltip>
|
||||
|
||||
|
|
@ -112,7 +113,8 @@ export const StatusBar = ({ maxDataPoints = 60 }: StatusBarProps) => {
|
|||
variant="light"
|
||||
style={{ minWidth: '5rem', textAlign: 'center' }}
|
||||
>
|
||||
VRAM: {gpu.memoryUsage.toFixed(1)}%
|
||||
VRAM{gpuMetrics.gpus.length > 1 ? ` ${index + 1}` : ''}:{' '}
|
||||
{gpu.memoryUsage.toFixed(1)}%
|
||||
</Badge>
|
||||
</Tooltip>
|
||||
</Group>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue