Reputation: 76
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
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
Reputation: 38589
You are viewing GPU memory. System memory is reported by running a cell with the following:
!cat /proc/meminfo
Upvotes: 2