TA的每日心情 | 开心 2020-4-8 10:45 |
|---|
签到天数: 227 天 [LV.7]分神
|
6 b) P/ M8 q3 q9 U, p+ V
在论文里,这是第3.2.2节的内容
+ M/ @) w. ^! {- d: `8 E1 e; c. `' ?4 Y+ r; d, m
3.2.2. Efficient Implementation of Cross-Node All-to-All Communication
& r1 j1 @ l5 B( DIn order to ensure sufficient computational performance for DualPipe, we customize efficient# U: K1 r* E, M6 f6 ]
cross-node all-to-all communication kernels (including dispatching and combining) to conserve
+ k; g) c: z- xthe 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,
7 D; V% e9 C7 D+ Yin our cluster, cross-node GPUs are fully interconnected with IB, and intra-node communications
) Y d! x+ }0 I. V# X# Uare handled via NVLink. NVLink offers a bandwidth of 160 GB/s, roughly 3.2 times that of IB7 `3 v0 Q7 i) w' H; q P% t
(50 GB/s). To effectively leverage the different bandwidths of IB and NVLink, we limit each
0 F9 J. j& s1 Z6 U0 G4 G; Gtoken to be dispatched to at most 4 nodes, thereby reducing IB traffic. For each token, when its
' f M4 N6 {% h# _% arouting decision is made, it will first be transmitted via IB to the GPUs with the same in-node6 M4 q2 c9 K8 K: ^ X }8 z
index on its target nodes. Once it reaches the target nodes, we will endeavor to ensure that it is2 W$ s d- N6 N+ P/ _: ?# ]
instantaneously forwarded via NVLink to specific GPUs that host their target experts, without3 P) t6 N) L0 P% H8 d+ W
being blocked by subsequently arriving tokens. In this way, communications via IB and NVLink
' ]6 q2 p e! k9 @0 @are fully overlapped, and each token can efficiently select an average of 3.2 experts per node% m; o) W1 e. ^4 F- w! d$ o
without incurring additional overhead from NVLink. This implies that, although DeepSeek-V3
! V6 N) E) c: t% t# B13: j3 B( s' H) A$ h9 I' h
selects only 8 routed experts in practice, it can scale up this number to a maximum of 13 experts
1 O0 V: q" d6 u) F8 u! ?: t4 g(4 nodes × 3.2 experts/node) while preserving the same communication cost. Overall, under% t' I5 S+ i u8 d* S% o! `
such a communication strategy, only 20 SMs are sufficient to fully utilize the bandwidths of IB
' a4 c( ]# C" e- I& U( oand NVLink.
& {: G# z( |6 ^( b3 p& @1 v! n: g5 R3 ]In detail, we employ the warp specialization technique (Bauer et al., 2014) and partition
. ?" m! `0 Q7 B& j7 @$ P20 SMs into 10 communication channels. During the dispatching process, (1) IB sending, (2)
$ S/ J% ~) I6 EIB-to-NVLink forwarding, and (3) NVLink receiving are handled by respective warps. The
7 u( _& m; G! P9 M' T" Tnumber of warps allocated to each communication task is dynamically adjusted according to the3 c- J4 W; S/ B1 h9 d
actual workload across all SMs. Similarly, during the combining process, (1) NVLink sending,9 } K+ D5 g$ l8 b- V6 `+ d2 T
(2) NVLink-to-IB forwarding and accumulation, and (3) IB receiving and accumulation are also
% @2 o% [! m0 g% ]! E8 d% G0 E. f) Ehandled by dynamically adjusted warps. In addition, both dispatching and combining kernels
" T) Y/ o' T! D' B* {' M& F+ y+ R n! A! Coverlap with the computation stream, so we also consider their impact on other SM computation
* Z. N5 r' e9 ~2 Q. a& l0 f, h) t5 zkernels. Specifically, we employ customized PTX (Parallel Thread Execution) instructions and
E; h- n6 T; l2 k1 Hauto-tune the communication chunk size, which significantly reduces the use of the L2 cache$ c1 U# S, l( x4 X9 h' W% `
and the interference to other SMs.
- K% A# M& |8 M8 `) ]: U* O" i3 @5 ]: ~5 }" w1 y7 h
通俗一点说,就是为了实现高效的跨节点全面通信。解决的问题本质上和唐家山老师日志里说的双机对拷的场景差不多。一般来说单机多卡之间用nvlink,多机多卡之间依赖IB网络,但nvlink的速率是IB网络的速率的3.2倍,需要通过一些优化来实现更好的传输策略。这是一整套方案。1 Q1 i; w5 c1 D
, b' p* _4 i% `- R( D* e+ t- v
我的理解,使用PTX在其中,是为了更精准的定制线程执行减少通信块分配传输之间的串扰。
, b# X' t! n5 D$ n8 B V( @2 D& q+ L
目的不是为了绕cuda,反而是为了让cuda的效率更高。, O6 `7 I7 m X2 T& r+ k# i
( \* H0 I( z: Q- D% [3 Y类比一下,就好比发现网卡驱动在对拷特定内存块的时候会和应用的线程执行出现串行导致效率降低,而绕开操作系统定义的与网卡驱动的接口,直接使用网卡支持的指令集进行了优化。 |
评分
-
查看全部评分
|