TA的每日心情 | 开心 2020-4-8 10:45 |
|---|
签到天数: 227 天 [LV.7]分神
|
3 C$ R1 X% L) j* E/ R* f7 d在论文里,这是第3.2.2节的内容4 w$ _6 h0 a! s# b
4 v* o/ D$ ~+ p6 w$ v/ v& m$ M
3.2.2. Efficient Implementation of Cross-Node All-to-All Communication
- u! k$ a* T: M+ t& U/ qIn order to ensure sufficient computational performance for DualPipe, we customize efficient
" R3 Q' J# v, Lcross-node all-to-all communication kernels (including dispatching and combining) to conserve
% h0 W+ s" ?+ qthe 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,
. F& u4 Z- N( rin our cluster, cross-node GPUs are fully interconnected with IB, and intra-node communications/ `2 g: i" s# y. D3 ^3 K
are handled via NVLink. NVLink offers a bandwidth of 160 GB/s, roughly 3.2 times that of IB; H5 s3 D- g" M
(50 GB/s). To effectively leverage the different bandwidths of IB and NVLink, we limit each
% b" m6 K! |2 p2 t5 dtoken to be dispatched to at most 4 nodes, thereby reducing IB traffic. For each token, when its. w9 R/ J7 Q0 Z
routing decision is made, it will first be transmitted via IB to the GPUs with the same in-node
( R" p0 I) X" _" j3 [+ Eindex on its target nodes. Once it reaches the target nodes, we will endeavor to ensure that it is" J, [4 d/ o' s
instantaneously forwarded via NVLink to specific GPUs that host their target experts, without
0 D7 f @8 D7 j) Pbeing blocked by subsequently arriving tokens. In this way, communications via IB and NVLink! v. x! T9 K6 Z- {# B: t
are fully overlapped, and each token can efficiently select an average of 3.2 experts per node5 Y% J- `5 z+ i, M1 f/ n
without incurring additional overhead from NVLink. This implies that, although DeepSeek-V3! C, @; a% T, J) W2 j
13
# Y' S" n; W4 p4 oselects only 8 routed experts in practice, it can scale up this number to a maximum of 13 experts
" q7 f1 Y* @% w+ b2 R6 F# o(4 nodes × 3.2 experts/node) while preserving the same communication cost. Overall, under: B9 l* ~1 e7 B
such a communication strategy, only 20 SMs are sufficient to fully utilize the bandwidths of IB
$ Q9 F/ x: h$ E" Z6 }5 p% ]! r$ mand NVLink.1 l( A0 ^1 ? Z. ]9 n$ A! l
In detail, we employ the warp specialization technique (Bauer et al., 2014) and partition0 I; d: e+ {5 L4 {' P' M0 C
20 SMs into 10 communication channels. During the dispatching process, (1) IB sending, (2)/ E/ ]9 ]" K6 \: [* Y- f: Q2 M
IB-to-NVLink forwarding, and (3) NVLink receiving are handled by respective warps. The
! v# R ]4 p. _) l3 L# anumber of warps allocated to each communication task is dynamically adjusted according to the% w' b, [- F7 [: G! _! c: i
actual workload across all SMs. Similarly, during the combining process, (1) NVLink sending,8 g( H" F; {/ D. y
(2) NVLink-to-IB forwarding and accumulation, and (3) IB receiving and accumulation are also
+ F$ f" Y m! I3 U0 e- k) D/ J$ nhandled by dynamically adjusted warps. In addition, both dispatching and combining kernels
' q- P7 {8 r! Z# [overlap with the computation stream, so we also consider their impact on other SM computation" f9 [& j8 I* j% j- o2 j- y: c
kernels. Specifically, we employ customized PTX (Parallel Thread Execution) instructions and
4 t' `& u' t E+ ^/ ]auto-tune the communication chunk size, which significantly reduces the use of the L2 cache9 Z/ E. @, [# {* D
and the interference to other SMs.
& n J- j S* v: `- O& d* E" }3 D
通俗一点说,就是为了实现高效的跨节点全面通信。解决的问题本质上和唐家山老师日志里说的双机对拷的场景差不多。一般来说单机多卡之间用nvlink,多机多卡之间依赖IB网络,但nvlink的速率是IB网络的速率的3.2倍,需要通过一些优化来实现更好的传输策略。这是一整套方案。
+ u" t1 L9 {- v% {( S$ f! a- U2 Y( f* G h* E9 C5 ~5 D% X' K6 ~1 E, g
我的理解,使用PTX在其中,是为了更精准的定制线程执行减少通信块分配传输之间的串扰。
1 I8 Y0 F/ K7 C! Q6 S& k9 T5 Y7 ^& l2 u9 ]
目的不是为了绕cuda,反而是为了让cuda的效率更高。
) N) J6 q$ m7 H* o! v/ @" H, @1 s& X) `6 ~7 R j+ b+ t X
类比一下,就好比发现网卡驱动在对拷特定内存块的时候会和应用的线程执行出现串行导致效率降低,而绕开操作系统定义的与网卡驱动的接口,直接使用网卡支持的指令集进行了优化。 |
评分
-
查看全部评分
|