How do I identify the amount of RAM on a Video Card (GPU)?Is buying a low powered graphics card with a larger...
Does dispel magic end a master's control over their undead?
New package vs new version?
Citing paywalled articles accessed via illegal web sharing
Why does magnet wire need to be insulated?
Is this ordinary workplace experiences for a job in Software Engineering?
Am I a Rude Number?
Why would space fleets be aligned?
Why didn't Tom Riddle take the presence of Fawkes and the Sorting Hat as more of a threat?
A curious equality of integrals involving the prime counting function?
How do you voice extended chords?
How do you catch Smeargle in Pokemon Go?
Let's Encrypt and EV certificates for different hosts in the same domain
When can a QA tester start his job?
Potential client has a problematic employee I can't work with
Why does photorec keep finding files after I have filled the disk free space as root?
What is the purpose of easy combat scenarios that don't need resource expenditure?
How can a large fleets maintain formation in interstellar space?
Why is Agricola named as such?
False written accusations not made public - is there law to cover this?
Clues on how to solve these types of problems within 2-3 minutes for competitive exams
How to make ice magic work from a scientific point of view?
Is a new boolean field better than null reference when a value can be meaningfully absent?
Has any human ever had the choice to leave Earth permanently?
Dilemma of explaining to interviewer that he is the reason for declining second interview
How do I identify the amount of RAM on a Video Card (GPU)?
Is buying a low powered graphics card with a larger amount of memory worth it?How to find out the amount of system memory allocated for the video card?How to limit the graphics card RAM?500MB memory loss with nvidia nvs 295 graphicsIs it possible to use a nVidia GPU to render graphics if the monitor is connected to the motherboard video port?Dedicating RAM to video cardHow to prepare Windows 8 for video card replacementHow does Windows decide which video card should it use for the specific applicationHow do the “games-oriented” NVIDIA-GPU-based cards behave w.r.t. CUDA computation?How to use more GPU Memory?
Which ways are there for me to determine the amount of memory (GRAM) my graphics card has?
Let's suppose I have an Nvidia Quadro FX1800
.
The OS can be Windows or Linux, there is no sticker on the card and I don't have the package anymore.
memory graphics-card nvidia-graphics-card gpu
add a comment |
Which ways are there for me to determine the amount of memory (GRAM) my graphics card has?
Let's suppose I have an Nvidia Quadro FX1800
.
The OS can be Windows or Linux, there is no sticker on the card and I don't have the package anymore.
memory graphics-card nvidia-graphics-card gpu
1
On Windows, the easiest way would be to usedxdiag
. Once you run the.exe
you can go to the display tab, see the name of your graphics device, and the approximate total memory.
– DrZoo
Aug 24 '18 at 21:48
@DrZoo Good addition, this needs direct X to be installed, correct?
– confetti
Aug 24 '18 at 22:43
1
Yes, but directX comes with all modern versions of Windows by default so you won’t have any manual installation to do.
– DrZoo
Aug 24 '18 at 22:49
add a comment |
Which ways are there for me to determine the amount of memory (GRAM) my graphics card has?
Let's suppose I have an Nvidia Quadro FX1800
.
The OS can be Windows or Linux, there is no sticker on the card and I don't have the package anymore.
memory graphics-card nvidia-graphics-card gpu
Which ways are there for me to determine the amount of memory (GRAM) my graphics card has?
Let's suppose I have an Nvidia Quadro FX1800
.
The OS can be Windows or Linux, there is no sticker on the card and I don't have the package anymore.
memory graphics-card nvidia-graphics-card gpu
memory graphics-card nvidia-graphics-card gpu
asked Aug 24 '18 at 20:56
confetticonfetti
1,2142724
1,2142724
1
On Windows, the easiest way would be to usedxdiag
. Once you run the.exe
you can go to the display tab, see the name of your graphics device, and the approximate total memory.
– DrZoo
Aug 24 '18 at 21:48
@DrZoo Good addition, this needs direct X to be installed, correct?
– confetti
Aug 24 '18 at 22:43
1
Yes, but directX comes with all modern versions of Windows by default so you won’t have any manual installation to do.
– DrZoo
Aug 24 '18 at 22:49
add a comment |
1
On Windows, the easiest way would be to usedxdiag
. Once you run the.exe
you can go to the display tab, see the name of your graphics device, and the approximate total memory.
– DrZoo
Aug 24 '18 at 21:48
@DrZoo Good addition, this needs direct X to be installed, correct?
– confetti
Aug 24 '18 at 22:43
1
Yes, but directX comes with all modern versions of Windows by default so you won’t have any manual installation to do.
– DrZoo
Aug 24 '18 at 22:49
1
1
On Windows, the easiest way would be to use
dxdiag
. Once you run the .exe
you can go to the display tab, see the name of your graphics device, and the approximate total memory.– DrZoo
Aug 24 '18 at 21:48
On Windows, the easiest way would be to use
dxdiag
. Once you run the .exe
you can go to the display tab, see the name of your graphics device, and the approximate total memory.– DrZoo
Aug 24 '18 at 21:48
@DrZoo Good addition, this needs direct X to be installed, correct?
– confetti
Aug 24 '18 at 22:43
@DrZoo Good addition, this needs direct X to be installed, correct?
– confetti
Aug 24 '18 at 22:43
1
1
Yes, but directX comes with all modern versions of Windows by default so you won’t have any manual installation to do.
– DrZoo
Aug 24 '18 at 22:49
Yes, but directX comes with all modern versions of Windows by default so you won’t have any manual installation to do.
– DrZoo
Aug 24 '18 at 22:49
add a comment |
1 Answer
1
active
oldest
votes
1. Identify memory using Google
This is the simplest approach, but isn't always accurate. There are many GPUs that come with different memory sizes. In the case of the FX1800
however there seems to be only one result. Nvidia's website shows the memory for each GPU under the "specifications" tab:
2. Linux solution - Nvidia GPUs only
This requires the use of the nvidia
driver (and/or CUDA):
$ nvidia-smi
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 396.45 Driver Version: 396.45 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 660 Off | 00000000:01:00.0 N/A | N/A |
| 38% 55C P2 N/A / N/A | 1260MiB / 1991MiB | N/A Default |
+-------------------------------+----------------------+----------------------+
In the second column it says 1260MiB / 1991MiB
- 1991MiB
being your GPU's RAM.
3. Linux solution - All GPUs
This works for all kinds of GPUs, as long as you use xorg
/xserver
:
grep -i --color memory /var/log/Xorg.0.log
This command will query the xorg
server-log for your GPU's memory information:
[ 24.636] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 24.724] (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
[ 24.804] (==) NVIDIA(0): Disabling shared memory pixmaps
This tells us my GPU has 2097152 kBytes
- So it's basically a 2GB Memory GPU.
4. Windows Powershell solution - All GPUs
This solution was originally suggested in a comment by HelpingHand.
To get results only for Nvidia GPUs, run the following command in a powershell window:
Get-WmiObject Win32_VideoController -filter "name like '%NVIDIA%'" | select AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
To get results for all graphic cards, the following command can be used:
Get-WmiObject Win32_VideoController | select name, AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
Of course you can also get your GPU's RAM under windows using the regular control panel, looking for "Display Adapter Properties" under System -> Display
on Windows 10.
1
On Windows CPU-Z is also a nice freeware tool to get detailed info on CPU, MB, RAM and GPU. cpuid.com/softwares/cpu-z.html
– bcs78
Aug 26 '18 at 20:29
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1352111%2fhow-do-i-identify-the-amount-of-ram-on-a-video-card-gpu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
1. Identify memory using Google
This is the simplest approach, but isn't always accurate. There are many GPUs that come with different memory sizes. In the case of the FX1800
however there seems to be only one result. Nvidia's website shows the memory for each GPU under the "specifications" tab:
2. Linux solution - Nvidia GPUs only
This requires the use of the nvidia
driver (and/or CUDA):
$ nvidia-smi
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 396.45 Driver Version: 396.45 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 660 Off | 00000000:01:00.0 N/A | N/A |
| 38% 55C P2 N/A / N/A | 1260MiB / 1991MiB | N/A Default |
+-------------------------------+----------------------+----------------------+
In the second column it says 1260MiB / 1991MiB
- 1991MiB
being your GPU's RAM.
3. Linux solution - All GPUs
This works for all kinds of GPUs, as long as you use xorg
/xserver
:
grep -i --color memory /var/log/Xorg.0.log
This command will query the xorg
server-log for your GPU's memory information:
[ 24.636] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 24.724] (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
[ 24.804] (==) NVIDIA(0): Disabling shared memory pixmaps
This tells us my GPU has 2097152 kBytes
- So it's basically a 2GB Memory GPU.
4. Windows Powershell solution - All GPUs
This solution was originally suggested in a comment by HelpingHand.
To get results only for Nvidia GPUs, run the following command in a powershell window:
Get-WmiObject Win32_VideoController -filter "name like '%NVIDIA%'" | select AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
To get results for all graphic cards, the following command can be used:
Get-WmiObject Win32_VideoController | select name, AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
Of course you can also get your GPU's RAM under windows using the regular control panel, looking for "Display Adapter Properties" under System -> Display
on Windows 10.
1
On Windows CPU-Z is also a nice freeware tool to get detailed info on CPU, MB, RAM and GPU. cpuid.com/softwares/cpu-z.html
– bcs78
Aug 26 '18 at 20:29
add a comment |
1. Identify memory using Google
This is the simplest approach, but isn't always accurate. There are many GPUs that come with different memory sizes. In the case of the FX1800
however there seems to be only one result. Nvidia's website shows the memory for each GPU under the "specifications" tab:
2. Linux solution - Nvidia GPUs only
This requires the use of the nvidia
driver (and/or CUDA):
$ nvidia-smi
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 396.45 Driver Version: 396.45 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 660 Off | 00000000:01:00.0 N/A | N/A |
| 38% 55C P2 N/A / N/A | 1260MiB / 1991MiB | N/A Default |
+-------------------------------+----------------------+----------------------+
In the second column it says 1260MiB / 1991MiB
- 1991MiB
being your GPU's RAM.
3. Linux solution - All GPUs
This works for all kinds of GPUs, as long as you use xorg
/xserver
:
grep -i --color memory /var/log/Xorg.0.log
This command will query the xorg
server-log for your GPU's memory information:
[ 24.636] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 24.724] (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
[ 24.804] (==) NVIDIA(0): Disabling shared memory pixmaps
This tells us my GPU has 2097152 kBytes
- So it's basically a 2GB Memory GPU.
4. Windows Powershell solution - All GPUs
This solution was originally suggested in a comment by HelpingHand.
To get results only for Nvidia GPUs, run the following command in a powershell window:
Get-WmiObject Win32_VideoController -filter "name like '%NVIDIA%'" | select AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
To get results for all graphic cards, the following command can be used:
Get-WmiObject Win32_VideoController | select name, AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
Of course you can also get your GPU's RAM under windows using the regular control panel, looking for "Display Adapter Properties" under System -> Display
on Windows 10.
1
On Windows CPU-Z is also a nice freeware tool to get detailed info on CPU, MB, RAM and GPU. cpuid.com/softwares/cpu-z.html
– bcs78
Aug 26 '18 at 20:29
add a comment |
1. Identify memory using Google
This is the simplest approach, but isn't always accurate. There are many GPUs that come with different memory sizes. In the case of the FX1800
however there seems to be only one result. Nvidia's website shows the memory for each GPU under the "specifications" tab:
2. Linux solution - Nvidia GPUs only
This requires the use of the nvidia
driver (and/or CUDA):
$ nvidia-smi
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 396.45 Driver Version: 396.45 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 660 Off | 00000000:01:00.0 N/A | N/A |
| 38% 55C P2 N/A / N/A | 1260MiB / 1991MiB | N/A Default |
+-------------------------------+----------------------+----------------------+
In the second column it says 1260MiB / 1991MiB
- 1991MiB
being your GPU's RAM.
3. Linux solution - All GPUs
This works for all kinds of GPUs, as long as you use xorg
/xserver
:
grep -i --color memory /var/log/Xorg.0.log
This command will query the xorg
server-log for your GPU's memory information:
[ 24.636] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 24.724] (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
[ 24.804] (==) NVIDIA(0): Disabling shared memory pixmaps
This tells us my GPU has 2097152 kBytes
- So it's basically a 2GB Memory GPU.
4. Windows Powershell solution - All GPUs
This solution was originally suggested in a comment by HelpingHand.
To get results only for Nvidia GPUs, run the following command in a powershell window:
Get-WmiObject Win32_VideoController -filter "name like '%NVIDIA%'" | select AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
To get results for all graphic cards, the following command can be used:
Get-WmiObject Win32_VideoController | select name, AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
Of course you can also get your GPU's RAM under windows using the regular control panel, looking for "Display Adapter Properties" under System -> Display
on Windows 10.
1. Identify memory using Google
This is the simplest approach, but isn't always accurate. There are many GPUs that come with different memory sizes. In the case of the FX1800
however there seems to be only one result. Nvidia's website shows the memory for each GPU under the "specifications" tab:
2. Linux solution - Nvidia GPUs only
This requires the use of the nvidia
driver (and/or CUDA):
$ nvidia-smi
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 396.45 Driver Version: 396.45 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
|===============================+======================+======================|
| 0 GeForce GTX 660 Off | 00000000:01:00.0 N/A | N/A |
| 38% 55C P2 N/A / N/A | 1260MiB / 1991MiB | N/A Default |
+-------------------------------+----------------------+----------------------+
In the second column it says 1260MiB / 1991MiB
- 1991MiB
being your GPU's RAM.
3. Linux solution - All GPUs
This works for all kinds of GPUs, as long as you use xorg
/xserver
:
grep -i --color memory /var/log/Xorg.0.log
This command will query the xorg
server-log for your GPU's memory information:
[ 24.636] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 24.724] (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
[ 24.804] (==) NVIDIA(0): Disabling shared memory pixmaps
This tells us my GPU has 2097152 kBytes
- So it's basically a 2GB Memory GPU.
4. Windows Powershell solution - All GPUs
This solution was originally suggested in a comment by HelpingHand.
To get results only for Nvidia GPUs, run the following command in a powershell window:
Get-WmiObject Win32_VideoController -filter "name like '%NVIDIA%'" | select AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
To get results for all graphic cards, the following command can be used:
Get-WmiObject Win32_VideoController | select name, AdapterRAM,@{Expression={$_.adapterram/1MB};label="MB"}
Of course you can also get your GPU's RAM under windows using the regular control panel, looking for "Display Adapter Properties" under System -> Display
on Windows 10.
edited 33 mins ago
answered Aug 24 '18 at 20:56
confetticonfetti
1,2142724
1,2142724
1
On Windows CPU-Z is also a nice freeware tool to get detailed info on CPU, MB, RAM and GPU. cpuid.com/softwares/cpu-z.html
– bcs78
Aug 26 '18 at 20:29
add a comment |
1
On Windows CPU-Z is also a nice freeware tool to get detailed info on CPU, MB, RAM and GPU. cpuid.com/softwares/cpu-z.html
– bcs78
Aug 26 '18 at 20:29
1
1
On Windows CPU-Z is also a nice freeware tool to get detailed info on CPU, MB, RAM and GPU. cpuid.com/softwares/cpu-z.html
– bcs78
Aug 26 '18 at 20:29
On Windows CPU-Z is also a nice freeware tool to get detailed info on CPU, MB, RAM and GPU. cpuid.com/softwares/cpu-z.html
– bcs78
Aug 26 '18 at 20:29
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1352111%2fhow-do-i-identify-the-amount-of-ram-on-a-video-card-gpu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
On Windows, the easiest way would be to use
dxdiag
. Once you run the.exe
you can go to the display tab, see the name of your graphics device, and the approximate total memory.– DrZoo
Aug 24 '18 at 21:48
@DrZoo Good addition, this needs direct X to be installed, correct?
– confetti
Aug 24 '18 at 22:43
1
Yes, but directX comes with all modern versions of Windows by default so you won’t have any manual installation to do.
– DrZoo
Aug 24 '18 at 22:49