0

I got 2 videos cards, an intel hd 4000 onboard and a dedicated amd radeon 7730M.

Following this question that I answered myself, I could see that my computer was using the intel one.

However, the output today is:

lspci -vnnn | perl -lne 'print if /^\d+\:.+(\[\S+\:\S+\])/' | grep VGA
00:02.0 VGA compatible controller [0300]: Intel Corporation 3rd Gen Core processor Graphics Controller [8086:0166] (rev 09) (prog-if 00 [VGA controller])
01:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Chelsea LP [Radeon HD 7730M] [1002:682f] (prog-if 00 [VGA controller])

If it's using both video cards, how can I make it only use AMD when needed like it should be, to save battery power?

maybe some useful info: i'm using Xorg driver and tlp in battery mode didn't change anything

Geo
  • 1,255
  • 1
  • 9
  • 16
  • Thanks! :-) I'm sorry that I couldn't be of more help... – Fabby Feb 13 '15 at 13:35
  • And double thanks now that the grace period has ended... If there is anything I can do for you in the future, just drop by in the AskUbuntu General Room with a link to this Q, and I'll help you... – Fabby Feb 13 '15 at 17:44

2 Answers2

1

You're not going to like this answer:

AMD's Dynamic Switchable Graphics needs Xorg support for the discrete videocard assigned for rendering to work. So, rendering on the discrete gpu will not work until the Xorg team adds support for it.

But you've still got three options:

  1. Use the BIOS to disable the discrete card and use only the Intel IGPU / enable the discrete card when you really need it and use only the AMD DGPU (this is how I run, it just takes a reboot and you'll get used to it)

  2. Test and improve some virtualGL based program to make the switch, like the common-amd branch of Bumblebee project. Check the project repository and this useful post.

  3. Use the proprietary driver with powerxpress (a.k.a. pxp) support maintained by Vi0l0 (remember to check for xorg compatibility).

Source

Fabby
  • 34,259
0

When you use proprietary AMD/ATI driver with Catalyst you can choose what Videocard can you use. Here is another answer on askubuntu

UNIm95
  • 696
  • 7
  • 21