TA的每日心情 | 开心 2020-4-8 10:45 |
---|
签到天数: 227 天 [LV.7]分神
|
4 J D3 s& v2 W) T7 Y/ f在论文里,这是第3.2.2节的内容
( Z& y2 a3 C2 D- X$ S- d7 v5 z# H6 W( `& {) x9 o5 @
3.2.2. Efficient Implementation of Cross-Node All-to-All Communication% S( U& C2 C3 ]6 G3 |
In order to ensure sufficient computational performance for DualPipe, we customize efficient# o5 y7 u1 ]+ e
cross-node all-to-all communication kernels (including dispatching and combining) to conserve
* x ?2 J/ s; b' K' ^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,
! i3 D! H1 e% F* s3 H8 R: vin our cluster, cross-node GPUs are fully interconnected with IB, and intra-node communications
7 [' ~8 N0 Z" o3 S9 G6 }6 j2 Bare handled via NVLink. NVLink offers a bandwidth of 160 GB/s, roughly 3.2 times that of IB
% M- A$ ^$ ~* p( G) h9 }7 U(50 GB/s). To effectively leverage the different bandwidths of IB and NVLink, we limit each1 [( E$ p+ Z3 T" X4 ?/ e0 |- l
token to be dispatched to at most 4 nodes, thereby reducing IB traffic. For each token, when its4 m8 G2 X! c3 j9 W1 v3 s
routing decision is made, it will first be transmitted via IB to the GPUs with the same in-node. o- m% i1 J. z" D6 p
index on its target nodes. Once it reaches the target nodes, we will endeavor to ensure that it is
# J# e! `/ c- ]1 }* }0 ^$ p+ F2 ^ _instantaneously forwarded via NVLink to specific GPUs that host their target experts, without
0 g! O9 E0 {- V7 s; ~" C7 h2 K* P9 fbeing blocked by subsequently arriving tokens. In this way, communications via IB and NVLink4 ~* K; i$ q' C8 D& @/ [0 i
are fully overlapped, and each token can efficiently select an average of 3.2 experts per node' V: S( H6 [! A2 V7 X8 W$ e. t- k$ n
without incurring additional overhead from NVLink. This implies that, although DeepSeek-V3 i8 v( K' j0 ~& B4 n! [# B
13, {3 P0 |0 P7 h5 K
selects only 8 routed experts in practice, it can scale up this number to a maximum of 13 experts
- M7 |2 y; `: n' k2 Y8 q2 ^8 j(4 nodes × 3.2 experts/node) while preserving the same communication cost. Overall, under
* z9 g* j7 ?0 n, |# z3 v, ?+ nsuch a communication strategy, only 20 SMs are sufficient to fully utilize the bandwidths of IB
) y; y% b% G$ J* O# e1 X5 pand NVLink.( d% Y% m+ ?( @# _/ x
In detail, we employ the warp specialization technique (Bauer et al., 2014) and partition' K2 E- o+ b4 B
20 SMs into 10 communication channels. During the dispatching process, (1) IB sending, (2)
+ l: i0 J( J) Y! ]5 _( h1 {, _IB-to-NVLink forwarding, and (3) NVLink receiving are handled by respective warps. The z, P" f+ L4 N0 ?, \# q% j
number of warps allocated to each communication task is dynamically adjusted according to the
) k- Y% o7 v7 t; b% bactual workload across all SMs. Similarly, during the combining process, (1) NVLink sending,
" v. ^2 m; G9 X. q( H(2) NVLink-to-IB forwarding and accumulation, and (3) IB receiving and accumulation are also2 X, z5 z' F; x- r. Z8 t4 ?
handled by dynamically adjusted warps. In addition, both dispatching and combining kernels/ P7 ~/ v' v ~) O2 X% S0 Q- m8 b
overlap with the computation stream, so we also consider their impact on other SM computation
1 r+ e0 E' l) ~& ^/ g3 l; Mkernels. Specifically, we employ customized PTX (Parallel Thread Execution) instructions and
2 c% t+ X. z; l8 l# Cauto-tune the communication chunk size, which significantly reduces the use of the L2 cache. f; P; B: V3 z9 H9 W z
and the interference to other SMs.
1 m: u. S- c4 q# T4 O
7 U# Z* i! t4 M5 T- w. n( }2 G通俗一点说,就是为了实现高效的跨节点全面通信。解决的问题本质上和唐家山老师日志里说的双机对拷的场景差不多。一般来说单机多卡之间用nvlink,多机多卡之间依赖IB网络,但nvlink的速率是IB网络的速率的3.2倍,需要通过一些优化来实现更好的传输策略。这是一整套方案。
4 o) e, R5 i1 V- p6 n+ K7 j4 g" O3 V) G9 o5 b
我的理解,使用PTX在其中,是为了更精准的定制线程执行减少通信块分配传输之间的串扰。
; y8 Y! x! t. x+ m4 B+ Z# i0 i7 u& h y6 L/ T+ D2 E8 T
目的不是为了绕cuda,反而是为了让cuda的效率更高。
9 L, I2 @; t/ J" p1 O$ d8 j8 q1 Y, h( W8 B
类比一下,就好比发现网卡驱动在对拷特定内存块的时候会和应用的线程执行出现串行导致效率降低,而绕开操作系统定义的与网卡驱动的接口,直接使用网卡支持的指令集进行了优化。 |
评分
-
查看全部评分
|