AMD下代旗艦顯示卡成謎:GDDR6?HBM?
近期關於AMD、NVIDIA各自下一代遊戲卡的傳聞越來越多,但都是什麼說法都有,有的甚至還互相衝突。
AMD這邊的新旗艦卡基於RNDA 2架構,核心代號是Big Navi,或者叫Navi 21,或者叫Sienna Cichild(一種魚類)。
新卡可能會命名為Radeon RX 6900系列,當然也不排除AMD再次改變命名規則,畢竟這幾年A卡名字變得實在是太頻繁了。
最新曝料稱,Big Navi顯示卡將搭配2048-bit顯示記憶體位寬(2×8×128),這樣的配置顯然只能是HBM系列,而且是兩顆顯示記憶體(每一顆位寬1024-bit),容量可能是2×8GB或者2×16GB,當然後者需要最新的HBM2e,三星、SK海力士均已投入量產。
/* HBM Memory Channel Width */
#define UMC_V8_7_HBM_MEMORY_CHANNEL_WIDTH 128
/* number of umc channel instance with memory map register access */
#define UMC_V8_7_CHANNEL_INSTANCE_NUM 2
/* number of umc instance with memory map register access */
#define UMC_V8_7_UMC_INSTANCE_NUM 8
/* total channel instances in one umc block */
#define UMC_V8_7_TOTAL_CHANNEL_NUM (UMC_V8_7_CHANNEL_INSTANCE_NUM * UMC_V8_7_UMC_INSTANCE_NUM)
/* UMC regiser per channel offset */
#define UMC_V8_7_PER_CHANNEL_OFFSET_SIENNA 0x400
static void gmc_v10_0_set_umc_funcs(struct amdgpu_device *adev)
{switch (adev->asic_type) {
case CHIP_SIENNA_CICHLID:
adev->umc.max_ras_err_cnt_per_query = UMC_V8_7_TOTAL_CHANNEL_NUM;
adev->umc.channel_inst_num = UMC_V8_7_CHANNEL_INSTANCE_NUM;
adev->umc.umc_inst_num = UMC_V8_7_UMC_INSTANCE_NUM;
adev->umc.channel_offs = UMC_V8_7_PER_CHANNEL_OFFSET_SIENNA;
adev->umc.channel_idx_tbl = &umc_v8_7_channel_idx_tbl[0][0];
adev->umc.funcs = &umc_v8_7_funcs;
break;
default:
break;}}
而在另一串程式碼中,代號Arcturus的下代加速計算卡Radeon Instinct MI100搭配的是4096-bit顯示記憶體位寬(4×8×128),則對應容量最大可能就是4×16GB,總計達64GB。
/* HBM Memory Channel Width */
#define UMC_V6_1_HBM_MEMORY_CHANNEL_WIDTH 128
/* number of umc channel instance with memory map register access */
#define UMC_V6_1_CHANNEL_INSTANCE_NUM 4
/* number of umc instance with memory map register access */
#define UMC_V6_1_UMC_INSTANCE_NUM 8
/* total channel instances in one umc block */
#define UMC_V6_1_TOTAL_CHANNEL_NUM (UMC_V6_1_CHANNEL_INSTANCE_NUM * UMC_V6_1_UMC_INSTANCE_NUM)
/* UMC regiser per channel offset */
#define UMC_V6_1_PER_CHANNEL_OFFSET_VG20 0x800
#define UMC_V6_1_PER_CHANNEL_OFFSET_ARCT 0x400
那麼,AMD要在高端卡上普及HBM顯示記憶體嗎?也未必。
還有網友稱,Big Navi遊戲卡採用的是16GB GDDR6顯示記憶體,對應位寬512-bit。
事實上,AMD至今尚未送出已完工的新顯示卡PCB電路板方案,顯然最終規格也並未定奪,各種可能性都有。
考慮到NVIDIA RTX 30系列已經基本鎖定9月份發布,目前正在測試階段,AMD Big Navi幾乎肯定要晚一步到來了。