TA的每日心情 | 开心 2020-4-8 10:45 |
---|
签到天数: 227 天 [LV.7]分神
|
3 O! w+ r1 t7 Y K2 i, Y# e在论文里,这是第3.2.2节的内容
5 U+ ^8 \' z1 `! m& w+ ~4 G) H0 R; @4 t# i* ~0 I" k2 Q
3.2.2. Efficient Implementation of Cross-Node All-to-All Communication
7 c8 o" q! x4 W9 z) _# }/ nIn order to ensure sufficient computational performance for DualPipe, we customize efficient) R3 x5 p8 i0 u6 U0 _$ ^! r* W; O( y
cross-node all-to-all communication kernels (including dispatching and combining) to conserve$ ?2 h; C9 b* ?$ e( ~. ^7 P
the number of SMs dedicated to communication. The implementation of the kernels is codesigned with the MoE gating algorithm and the network topology of our cluster. To be specific,0 U% O; d0 S, o: p0 c! l
in our cluster, cross-node GPUs are fully interconnected with IB, and intra-node communications( O+ H8 y& g1 D, W% j J1 W; I0 q7 g
are handled via NVLink. NVLink offers a bandwidth of 160 GB/s, roughly 3.2 times that of IB3 \; _# \$ K* A! t
(50 GB/s). To effectively leverage the different bandwidths of IB and NVLink, we limit each3 n" k8 F) p/ f: W5 n* |
token to be dispatched to at most 4 nodes, thereby reducing IB traffic. For each token, when its$ \# K4 a9 D5 v; }, [
routing decision is made, it will first be transmitted via IB to the GPUs with the same in-node
; N) T Q' g# R/ }8 Y' Nindex on its target nodes. Once it reaches the target nodes, we will endeavor to ensure that it is4 @. d1 A; T8 ]4 G" ?
instantaneously forwarded via NVLink to specific GPUs that host their target experts, without
l. E8 U. P5 Q! B) f; _8 Ubeing blocked by subsequently arriving tokens. In this way, communications via IB and NVLink
% D. Q7 d# k6 \1 v& ^+ lare fully overlapped, and each token can efficiently select an average of 3.2 experts per node
) U% S/ l0 k. A& S+ A6 |without incurring additional overhead from NVLink. This implies that, although DeepSeek-V3
3 @3 A6 I) ? E" P! O* V+ v13
' V' y* H0 i% U% xselects only 8 routed experts in practice, it can scale up this number to a maximum of 13 experts) {) B8 e( ` c4 f6 B2 E
(4 nodes × 3.2 experts/node) while preserving the same communication cost. Overall, under2 J/ ^, F! ^0 z7 I
such a communication strategy, only 20 SMs are sufficient to fully utilize the bandwidths of IB. k% J: E/ W7 {) Z( o) C- L9 W
and NVLink.' K( U7 T4 R9 {/ Z1 i! y
In detail, we employ the warp specialization technique (Bauer et al., 2014) and partition$ \3 Q W0 q3 \5 {; c6 ]
20 SMs into 10 communication channels. During the dispatching process, (1) IB sending, (2)/ a1 z, z- s2 C* G) ]% o( q
IB-to-NVLink forwarding, and (3) NVLink receiving are handled by respective warps. The& D( D) g- n6 U5 `# D. }. o4 c
number of warps allocated to each communication task is dynamically adjusted according to the) p$ ~3 d" S0 G- N7 W0 O1 N
actual workload across all SMs. Similarly, during the combining process, (1) NVLink sending,2 E, `% z5 F3 C& R
(2) NVLink-to-IB forwarding and accumulation, and (3) IB receiving and accumulation are also
5 ?: u: i# O1 @4 a; mhandled by dynamically adjusted warps. In addition, both dispatching and combining kernels
w% A; i, u% p& woverlap with the computation stream, so we also consider their impact on other SM computation
# T' `- \, R4 v0 b5 `kernels. Specifically, we employ customized PTX (Parallel Thread Execution) instructions and
: N; s$ f3 Y; @2 V, R) qauto-tune the communication chunk size, which significantly reduces the use of the L2 cache
/ X7 I5 g3 q7 Kand the interference to other SMs.
+ D; G5 b6 V# }. }' g. |$ H; u! Y$ V' U, Z, {
通俗一点说,就是为了实现高效的跨节点全面通信。解决的问题本质上和唐家山老师日志里说的双机对拷的场景差不多。一般来说单机多卡之间用nvlink,多机多卡之间依赖IB网络,但nvlink的速率是IB网络的速率的3.2倍,需要通过一些优化来实现更好的传输策略。这是一整套方案。! j' T, M1 U d d1 g
& ?7 b! Y2 ]" V9 v
我的理解,使用PTX在其中,是为了更精准的定制线程执行减少通信块分配传输之间的串扰。
( s! ?7 L/ l- H5 A+ i$ w
& H- W6 }' H$ u3 c4 {3 v目的不是为了绕cuda,反而是为了让cuda的效率更高。# O1 j& R4 j/ i
6 r9 N* x" f" [) H( O: W+ `0 ?/ d
类比一下,就好比发现网卡驱动在对拷特定内存块的时候会和应用的线程执行出现串行导致效率降低,而绕开操作系统定义的与网卡驱动的接口,直接使用网卡支持的指令集进行了优化。 |
评分
-
查看全部评分
|