はじめに
NVIDIA の Open gpu kernel module には、GB100/GB112 なるものも存在します。
下記のXの投稿を見ると、GB110 は NVIDIA DIGIT ということになっています。
Huang is now discussing the history of NVIDIA DGX, basically supercomputers in a box. He's now holding NVIDIA's latest AI supercomputer, Project Digix (the longer name DGX originally came from). It's powered by GB110, the smallest Grace Blackwell chip NVIDIA has made. #CES2025 pic.twitter.com/kfsd7LCph3
— Engadget (@engadget) 2025年1月7日
が、どうも違う。
DIGITは、このブログにも書きましたが、GB10B だと思います。
GB110/GB112
ここを見ると、下記のように arch は、0x1A なので、Data Center 用の Blackwell。 impl が それぞれ違います。
// GB100
else if(arch == 0x1A && impl == 0x0)
{
pChipHal->__nvoc_HalVarIdx = 61;
}
// GB102
else if(arch == 0x1A && impl == 0x2)
{
pChipHal->__nvoc_HalVarIdx = 62;
}
// GB10B
else if(arch == 0x1A && impl == 0xB)
{
pChipHal->__nvoc_HalVarIdx = 63;
}
// GB110
else if(arch == 0x1A && impl == 0x3)
{
pChipHal->__nvoc_HalVarIdx = 65;
}
// GB112
else if(arch == 0x1A && impl == 0x4)
{
pChipHal->__nvoc_HalVarIdx = 66;
}
ここを見ると、GH100 Self-Hosted と同じ感じに使われています。
static inline int pci_devid_is_self_hosted_hopper(unsigned short devid)
{
return devid >= 0x2340 && devid <= 0x237f; // GH100 Self-Hosted
}
static inline int pci_devid_is_self_hosted_blackwell(unsigned short devid)
{
return (devid >= 0x2940 && devid <= 0x297f) // GB100 Self-Hosted
|| (devid >= 0x31c0 && devid <= 0x31ff); // GB110 Self-Hosted
}
static inline int pci_devid_is_self_hosted(unsigned short devid)
{
return pci_devid_is_self_hosted_hopper(devid) ||
pci_devid_is_self_hosted_blackwell(devid);
}
pci_devid_is_self_hostedは、ここ で次のように使われています。
if (pci_devid_is_self_hosted(pci_dev->device))
{
nv_init_coherent_link_info(nv);
}
GB110 と GB112 が同じ扱い.
GB100 と GB110、GB102 と GB112 を比較
GB100 (ここ) と GB110 (ここ) を比べると同じ
GB102 (ここ) と、GB112 (ここ) を比べると同じ。
ということは、
- GB100 (B200 2 die)
GB102 (B200 1 die)
GB110 (B300 2 die)
- GB112 (B300 1 die)
ということになりますね。
おわりに
NVIDIA Blackwell シリーズは、
- GB100 (B200 2 die)
- GB102 (B200 1 die)
- GB10B (DIGIT)
- GB110 (B300 2 die)
GB112 (B300 1 die)
GB202 - GB207 (RTX 50)
というものがあるようです。