TA的每日心情 | 开心 2020-4-8 10:45 |
---|
签到天数: 227 天 [LV.7]分神
|
- N* M+ t) ~* m2 Y) C在论文里,这是第3.2.2节的内容
E9 |. U3 f/ t+ B/ i W
. G% }" y% b7 b; x& g4 V3.2.2. Efficient Implementation of Cross-Node All-to-All Communication2 c$ m6 M6 g7 ^& d5 u. \! G9 v7 E
In order to ensure sufficient computational performance for DualPipe, we customize efficient
/ x4 p' j, F" f/ B4 E. R+ @) vcross-node all-to-all communication kernels (including dispatching and combining) to conserve
3 H$ [$ s) E. C" `4 q; X# |6 `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,
) \+ e# H0 p- K# H" sin our cluster, cross-node GPUs are fully interconnected with IB, and intra-node communications
: b6 B. d! W# R* Q# eare handled via NVLink. NVLink offers a bandwidth of 160 GB/s, roughly 3.2 times that of IB- N2 v" c" U6 u+ _. ?0 S- Z0 K
(50 GB/s). To effectively leverage the different bandwidths of IB and NVLink, we limit each! U; t0 q0 v ~
token to be dispatched to at most 4 nodes, thereby reducing IB traffic. For each token, when its k' _5 o3 E- C: [
routing decision is made, it will first be transmitted via IB to the GPUs with the same in-node
+ _+ L* x- I" {index on its target nodes. Once it reaches the target nodes, we will endeavor to ensure that it is
! t: a' J( r" U8 S: c$ Uinstantaneously forwarded via NVLink to specific GPUs that host their target experts, without% M; Z' N( T9 Q1 C
being blocked by subsequently arriving tokens. In this way, communications via IB and NVLink* x4 E3 u- M- P: I' [; `" |
are fully overlapped, and each token can efficiently select an average of 3.2 experts per node
& n4 h3 c7 ?. m1 X j& w6 uwithout incurring additional overhead from NVLink. This implies that, although DeepSeek-V3
) Z0 {* a J0 V+ Y$ V13
! b$ F W$ z4 v8 Jselects only 8 routed experts in practice, it can scale up this number to a maximum of 13 experts
0 @1 S, P$ V1 t. c/ H) d(4 nodes × 3.2 experts/node) while preserving the same communication cost. Overall, under# c( D T6 U2 S0 o L. O
such a communication strategy, only 20 SMs are sufficient to fully utilize the bandwidths of IB6 g' r$ K& Y5 V7 F" l" y2 ]+ J+ \
and NVLink.
" }2 M( d4 |, o$ u0 iIn detail, we employ the warp specialization technique (Bauer et al., 2014) and partition
$ \. d# a/ N' T1 i20 SMs into 10 communication channels. During the dispatching process, (1) IB sending, (2)7 r6 u6 f3 g" Q0 k, Q& Y! }
IB-to-NVLink forwarding, and (3) NVLink receiving are handled by respective warps. The
~+ `+ G, |8 t& J% d- Xnumber of warps allocated to each communication task is dynamically adjusted according to the; z/ M$ J- l. {
actual workload across all SMs. Similarly, during the combining process, (1) NVLink sending,
' Y3 m; Q4 Q0 h6 t1 p(2) NVLink-to-IB forwarding and accumulation, and (3) IB receiving and accumulation are also1 c( @1 b7 M( M" @! O1 u; { s
handled by dynamically adjusted warps. In addition, both dispatching and combining kernels
* x g# h3 l8 r/ S. b$ d' Joverlap with the computation stream, so we also consider their impact on other SM computation
# l4 f2 x% _7 E9 q( G' {7 F6 e7 ukernels. Specifically, we employ customized PTX (Parallel Thread Execution) instructions and
9 J& S4 t0 @ e& a* R& s. C9 ~auto-tune the communication chunk size, which significantly reduces the use of the L2 cache
, @) H4 D: i+ W2 kand the interference to other SMs.
# H, {. U5 n/ ?5 ~/ n. D
8 I# u$ a: [; H% _1 h3 C, Z通俗一点说,就是为了实现高效的跨节点全面通信。解决的问题本质上和唐家山老师日志里说的双机对拷的场景差不多。一般来说单机多卡之间用nvlink,多机多卡之间依赖IB网络,但nvlink的速率是IB网络的速率的3.2倍,需要通过一些优化来实现更好的传输策略。这是一整套方案。# |+ y' a* Y3 f0 ]& @
2 S+ k8 d0 }5 i; F/ L我的理解,使用PTX在其中,是为了更精准的定制线程执行减少通信块分配传输之间的串扰。
4 y9 Y( w8 A! K) q; L
: V; c3 `) D: t) p+ Y: i0 D# b& i目的不是为了绕cuda,反而是为了让cuda的效率更高。" i% u0 \" _' }& x5 D5 p
( F/ M; i8 `, t( w1 h" O; t
类比一下,就好比发现网卡驱动在对拷特定内存块的时候会和应用的线程执行出现串行导致效率降低,而绕开操作系统定义的与网卡驱动的接口,直接使用网卡支持的指令集进行了优化。 |
评分
-
查看全部评分
|