Jonathan Sum
Jonathan Sum

Reputation: 76

Colab pro never give me more than 16 gb of gpu memory

enter image description here

enter image description here

I have been using colab pro for a month, but it only has 16gb when using it. On the upper right, it says it has 25gb, but it only has 16 GB.

Upvotes: 3

Views: 5467

Answers (2)

Karim Elawaad
Karim Elawaad

Reputation: 160

The RAM in the upper right corner refers to the instance's memory capacity (which is 25.51GB in your case), not your GPU memory.

To view your GPU memory run the following command in a cell: !nvidia-smi

Upvotes: 1

Bob Smith
Bob Smith

Reputation: 38589

You are viewing GPU memory. System memory is reported by running a cell with the following:

!cat /proc/meminfo

Upvotes: 2

Related Questions