Page 1 of 1

adjusting gpu memory

Posted: Sat Aug 05, 2017 4:53 pm
by trogne
Hi,

How can I adjust the gpu memory to 128 ?

I say that because in this article : https://www.linkedin.com/pulse/how-get- ... -kovalenko

It is asking to make sure we have 128 gpu memory.

But how can I adjust that ?


Thanks,

Patrick

Re: adjusting gpu memory

Posted: Sat Aug 05, 2017 4:56 pm
by davidcoton

Re: adjusting gpu memory

Posted: Sat Aug 05, 2017 5:18 pm
by klricks
You can adjust memory by using the GUI config tool.
[Menu] --> [Preferences] --> [Raspberry pi config..] --> [Performance]

-OR-

From the advanced menu in:

Code: Select all

sudo raspi-config
-OR-

By direct edit of /boot/config.txt

Code: Select all

sudo nano /boot/config.txt
If a gpu_mem command exists then change it to 128 if not there then add the line at the end:

Code: Select all

gpu_mem=128

Re: adjusting gpu memory

Posted: Sat Aug 05, 2017 6:19 pm
by trogne
Great, thanks!!