Yes, and people criticize the Nvidia drivers, at least they have an official configuration GUI, even though it's rather old. You can't really say that AMD's Linux support is great if even basic things like VRAM, temperature and power monitoring cannot be accessed without the command line and cryptic commands, AMD should really get their act together, especially since the Adrenalin driver GUI on Windows is top notch and better than anything Nvidia offers.
Announcement
Collapse
No announcement yet.
Linux AMDGPU Control Application Adds vBIOS Dumping, Fan Control Hysteresis
Collapse
X
-
Originally posted by numasan View Post
What does that even mean?
> there are plenty of native rust gui toolkits now,
This means that there are a lot of native rust gui toolkits, Gui toolkits or frameworks that are written predominately in rust, and only use non rust parts for the OS tidbits. for example would be using wgpu/glow for graphics, winit for window creation. You often need to use non native rust components to hook into system calls, (glibc or musl), and IIRC stuff like glow are bindings for the lower level GL stuff. so we can't really completely escape non native rust bits. However nearly all of the core gui toolkit is rust.
Apps like this when you compile them will be statically linked unless the application themselves have other needs.
> most of them have better perf then GTK
They perform better then GTK does. Graphics performance is a big win for all of the toolkits. and CPU perf is generally better as well
Comment
-
Originally posted by Quackdoc View Post
> most of them have better perf then GTK
They perform better then GTK does. Graphics performance is a big win for all of the toolkits. and CPU perf is generally better as well
Comment
-
Originally posted by numasan View Post
That's what I don't get - are we talking fractions of milliseconds? GTK feels plenty snappy on my systems.
using a couple GTK applications like flatseal, gnome's store app etc. basic apps, can have an appreciable impact. On GPU related tasks like watching a video, if you use GTK applications while Chrome is open playing YouTube, you can actually visibly see the video stutter more as you open more GTK apps and that just doesn't happen with QT and Cosmic apps I've noticed. At least not to the same degree.
Ive tested on my Lenovo N22 and chuwi hi10x
Comment
-
Originally posted by finalzone View Post
Such as?
Also it's nice to have the graph in the main window instead of having to pop out a second window to see it.
Comment
-
Originally posted by rob-tech View PostYes, and people criticize the Nvidia drivers, at least they have an official configuration GUI, even though it's rather old. You can't really say that AMD's Linux support is great if even basic things like VRAM, temperature and power monitoring cannot be accessed without the command line and cryptic commands, AMD should really get their act together, especially since the Adrenalin driver GUI on Windows is top notch and better than anything Nvidia offers.
Comment
-
Originally posted by TheMightyBuzzard View Post
Hi, welcome to Linux. You're not going to enjoy your time here if your answer to something that you want to exist not existing is to complain. Learn how to lend a hand if you care that much. TANSTAAFL
now why is amd so crap with their support. even their on amd driver is crap compared to open source one. i know you gonna say that amd helps with open source and that amd official driver is open source but why the hell do we the user need to create our own app to use the part we've paid so much money. (not like i have any dGPU )
Comment
-
Originally posted by agd5f View Post
Runtime pm sysfs interface: https://www.kernel.org/doc/Documenta...-devices-power
E.g.,Code:cat /sys/class/drm/cardX/device/power/runtime_status
Comment
Comment