-
Notifications
You must be signed in to change notification settings - Fork 58
Open
Labels
Description
RAM type enum is missing HBM2/GDDR6/GDDR6X entries at
| public enum GPUMemoryType : uint |
You can look at the ones I took from GPU-Z here: https://github.com/JustAMan/pynvraw/blob/498591713adcfbdf7aae1a348c1af76513ef9a43/src/pynvraw/nvapi_api.py#L735-L749
(copied down below for easier reading)
class RamType(enum.IntEnum):
Unknown = 0
SDRAM = 1
DDR1 = 2
DDR2 = 3
GDDR2 = 4
GDDR3 = 5
GDDR4 = 6
DDR3 = 7
GDDR5 = 8
DDR2_alt = 9
GDDR5X = 10
HBM2 = 12
GDDR6 = 14
GDDR6X = 15