Nice to see this will be finally fixed. You have to make a udev rule to work around this at the moment.

  • mox@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    8 hours ago

    It’s better in the name of performance but with more aggressive ramping of the core/memory clock frequencies it can come with an increase to power use by default.

    A Phoronix comment says this increases power draw by more than 10W at idle. That’s pretty wasteful for systems that spend most of the day at or near idle. (And AMD’s recent GPUs already have a reputation for idling with too much power draw on linux.)

    I hope the change comes with an easy to revert it. If they can’t figure out how to automatically enter and leave this mode on demand, we need a way for a script or gamemode hook to do it. Efficiency is important even in desktop systems.

    • vividspecter@lemm.eeOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      7 hours ago

      It depends on the GPU I suspect. The 6XXX series doesn’t appear to have that issue, at least not in a significant way. But yeah, the 7XXX series having power consumption issues isn’t too surprising.

      As for the quote, the “more aggressive ramping” is about its behaviour under load, which you probably do want if you’re playing games.

      You can revert the change in the same way as you can make the change now, with a udev rule. And you can change it on the fly with a script if needed.

      Udev rule:

      KERNEL=="card0", SUBSYSTEM=="drm", DRIVERS=="amdgpu", ATTR{device/power_dpm_force_performance_level}="manual", ATTR{device/pp_power_profile_mode}="0"
      

      (you might be able to leave the power_dpm_force_performance_level part unset)

      You can also try the compute (5) or VR (4) modes which have slightly different behaviour (I use the compute mode on my systems even though they are mostly for gaming).

      I believe some of the third party GPU control utilities can also do this, but I don’t personally use them.