Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REQUEST] Missing temperature important for overclocking #118

Closed
BullShark opened this issue May 20, 2020 · 1 comment
Closed

[REQUEST] Missing temperature important for overclocking #118

BullShark opened this issue May 20, 2020 · 1 comment
Assignees
Labels
duplicate This issue or pull request already exists

Comments

@BullShark
Copy link

Is your feature request related to a problem? Please describe.

I used nvidia coolbits in Linux to overclock my GPU and my bios to overclock my cpu also with an option passed to grub at boot, so temperatures are important to me.

Describe the solution you'd like
A clear and concise description of what you want to happen.

Under Core0, Core1, Core2, Core3 should be GPU0 with temperature output from this command.

$ nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader,nounits
43

I can't get a gpu usage percentage from nvidia-smi output. Run it with no arguments for more output. But if the output is parsed, the memory percentage can be obtained like this. Done in python, and bc might be needed for floating point division in bash.

totalMem = 4034
usedMem = 659
num = totalMem / 100
percentage = usedMem / num
print(percentage)
16.33614278631631
round(percentage, 1)
16.3

That percentage can also be used to generate a graph to match the ones for Core# above it (smaller ones, not the big one to the left).

Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.

I've considered conky for this or modifying a widget in kde since I already use kde widgets for other system stats.

Additional context
Add any other context or screenshots about the feature request here.

The memory usage isn't as important as having the temperature. gotop displays many temperatures but fails to get the gpu temperature, and I didn't like it as much as bashtop.

@BullShark BullShark added the enhancement New feature or request label May 20, 2020
@aristocratos aristocratos added duplicate This issue or pull request already exists and removed enhancement New feature or request labels May 20, 2020
@aristocratos
Copy link
Owner

Duplicate of #26
Currently focusing on OSX compatibility, so will still be a while before I get to this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
duplicate This issue or pull request already exists
Projects
None yet
Development

No branches or pull requests

2 participants