-
Notifications
You must be signed in to change notification settings - Fork 90
1022 lines (896 loc) · 42 KB
/
pr-test-npu.yml
File metadata and controls
1022 lines (896 loc) · 42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: PR Test for SGL-KERNEL-NPU (Ascend NPU)
on:
pull_request:
branches: [ main ]
paths:
- "build.sh"
- "cmake/**"
- "python/**"
- "csrc/**"
- "tests/**"
- "scripts/**"
- ".github/workflows/pr-test-npu.yml"
workflow_dispatch:
concurrency:
group: pr-test-npu-${{ github.ref }}
cancel-in-progress: true
jobs:
get-changed-files:
name: Check changed files
runs-on: ubuntu-latest
outputs:
ops2_changed: ${{ steps.match-groups.outputs.ops2_any_changed }}
ops_changed: ${{ steps.match-groups.outputs.ops_any_changed }}
common_changed: ${{ steps.match-groups.outputs.common_any_changed }}
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Match changed files
id: match-groups
uses: tj-actions/changed-files@v45
with:
files_yaml: |
ops:
- csrc/deepep/ops/**
ops2:
- csrc/deepep/ops2/**
common:
- csrc/**
- '!csrc/deepep/ops/**'
- '!csrc/deepep/ops2/**'
- build.sh
- cmake/**
- python/**
- tests/**
- scripts/**
- .github/workflows/pr-test-npu.yml
test-all-build:
needs: get-changed-files
if: |
github.event_name == 'workflow_dispatch' || (
(github.repository == 'sgl-project/sgl-kernel-npu' || github.event_name == 'pull_request') &&
github.event.pull_request.draft == false &&
(needs.get-changed-files.outputs.ops_changed == 'true' || needs.get-changed-files.outputs.common_changed == 'true')
)
runs-on: linux-aarch64-a3-16
container:
image: swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/cann:8.3.rc1-a3-ubuntu22.04-py3.11
steps:
- name: Clean git config
run: |
CONFIG_KEY='http.https://gh-proxy.test.osinfra.cn/.extraheader'
git config --global --unset "$CONFIG_KEY" || true
- name: Clean workspace
run: |
sudo rm -rf --one-file-system "$GITHUB_WORKSPACE"/* "$GITHUB_WORKSPACE"/.* 2>/dev/null || true
- name: Checkout code
uses: actions/checkout@v4
with:
clean: true
- name: Install dependencies
run: |
# speed up by using infra cache services
CACHING_URL="cache-service.nginx-pypi-cache.svc.cluster.local"
sed -Ei "s@(ports|archive).ubuntu.com@${CACHING_URL}:8081@g" /etc/apt/sources.list
pip config set global.index-url http://${CACHING_URL}/pypi/simple
pip config set global.trusted-host ${CACHING_URL}
bash scripts/npu_ci_install_dependency.sh
- name: Prepare Deepep
run: bash scripts/prepare_deepep_in_container.sh
- name: Run test intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py
- name: Run test intranode for little bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=4
- name: Run test intranode for big bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=8192
- name: Run test multi-round intranode
timeout-minutes: 10
env:
DEEPEP_NORMAL_LONG_SEQ_ROUND: 5
DEEPEP_NORMAL_LONG_SEQ_PER_ROUND_TOKENS: 512
HCCL_BUFFSIZE: 1000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=2122
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=2048
- name: Run test little processes intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2241
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=2
- name: Run test hidden intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=4096
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=6144
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=7168
- name: Run test topk num intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-topk=1
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-topk=16
- name: Run test experts num intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=2 --num-topk=1 --num-experts=2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-experts=512 --num-processes=8
- name: Run test intranode for active ranks
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --active-ranks="0,1,3"
- name: Run test intranode for DeepXtrace
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --enable-diagnose
- name: Run test intranode for int8 quant
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
DEEP_NORMAL_MODE_USE_INT8_QUANT: 1
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py
- name: Run test intranode for output parameters of different types
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
MOE_EXPERT_TOKEN_NUMS_TYPE: 0
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py
- name: Run test intranode for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --enable-dynamic-tokens
- name: Run test low latency
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-tokens=1
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-tokens=2
- name: Run test low latency for big bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3825
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-tokens=512
- name: Run test low latency for little num processes
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=2
- name: Run test low latency for hidden
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=4096
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=6144
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=7168
- name: Run test low latency for topk
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1969
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-topk=4
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-topk=16
- name: Run test low latency for experts
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 7481
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=2 --num-topk=1 --num-experts=2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-experts=1024
- name: Run test low latency for drop percent
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
MOE_ENABLE_TOPK_NEG_ONE: 1
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --drop-percent=0.3
- name: Run test low latency for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --enable-dynamic-tokens
- name: Run test base fused deep moe
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --num-experts 256
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 128
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 256
- name: Run test muti-model for fused deep moe
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --num-experts 256 --hidden 6144 --moe-intermediate-size 2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 128 --hidden 6144 --moe-intermediate-size 2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --num-experts 256 --hidden 4096 --moe-intermediate-size 1536
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 256 --hidden 4096 --moe-intermediate-size 1536
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 128 --hidden 4096 --moe-intermediate-size 1536
- name: Run test fused deepep moe eplb
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --topk-drop-col 3
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --topk-drop-prob 0.3
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --topk-drop-col 2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --topk-drop-col 3 --num-experts 16
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 4 --topk-drop-col 1 --num-experts 32
- name: Run test fused deepep moe for little processes
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-processes=2 --num-experts=24
- name: Run test fused deepep moe for bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens=256
- name: Run test fused deepep moe for hidden
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --hidden=2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --hidden=7168
- name: Run test fused deepep moe for topk
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-topk=1
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-topk=12
- name: Run test fused deepep moe for experts
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-processes=2 --num-topk=1 --num-experts=4
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-experts=384
- name: Run test mixed running
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py
- name: Run test mixed running for little processes
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2241
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-processes=2 --test-loop=100
- name: Run test mixed running for bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --normal-num-tokens=1 --low-latency-num-tokens=1 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --normal-num-tokens=8192 --low-latency-num-tokens=512 --test-loop=100
- name: Run test mixed running for hidden
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2241
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=2048 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=4096 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=6144 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=7168 --test-loop=100
- name: Run test mixed running for topk
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-topk=1 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-topk=16 --test-loop=100
- name: Run test mixed running for experts
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3769
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-processes=2 --num-topk=1 --num-experts=2 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-experts=512 --test-loop=100 --num-processes=8
- name: Run test mixed running for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3769
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --test-loop=100 --enable-dynamic-tokens
- name: Run test generalization of fused deep moe
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2048
run: bash scripts/generalization_test_fused_deep_moe.sh
test-build-deepep-a3:
needs: get-changed-files
if: |
github.event_name == 'workflow_dispatch' || (
(github.repository == 'sgl-project/sgl-kernel-npu' || github.event_name == 'pull_request') &&
github.event.pull_request.draft == false &&
(needs.get-changed-files.outputs.ops_changed == 'true' || needs.get-changed-files.outputs.common_changed == 'true')
)
runs-on: linux-aarch64-a3-16
container:
image: swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/cann:8.3.rc1-a3-ubuntu22.04-py3.11
steps:
- name: Clean git config
run: |
CONFIG_KEY='http.https://gh-proxy.test.osinfra.cn/.extraheader'
git config --global --unset "$CONFIG_KEY" || true
- name: Clean workspace
run: |
sudo rm -rf --one-file-system "$GITHUB_WORKSPACE"/* "$GITHUB_WORKSPACE"/.* 2>/dev/null || true
- name: Checkout code
uses: actions/checkout@v4
with:
clean: true
- name: Install dependencies
run: |
# speed up by using infra cache services
CACHING_URL="cache-service.nginx-pypi-cache.svc.cluster.local"
sed -Ei "s@(ports|archive).ubuntu.com@${CACHING_URL}:8081@g" /etc/apt/sources.list
pip config set global.index-url http://${CACHING_URL}/pypi/simple
pip config set global.trusted-host ${CACHING_URL}
bash scripts/npu_ci_install_dependency.sh
- name: Prepare Deepep
run: bash scripts/prepare_deepep_in_container.sh -a deepep
- name: Run test intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py
- name: Run test intranode for little bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=4
- name: Run test intranode for big bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=8192
- name: Run test multi-round intranode
timeout-minutes: 10
env:
DEEPEP_NORMAL_LONG_SEQ_ROUND: 5
DEEPEP_NORMAL_LONG_SEQ_PER_ROUND_TOKENS: 512
HCCL_BUFFSIZE: 1000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=2122
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=2048
- name: Run test little processes intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2241
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=2
- name: Run test hidden intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=4096
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=6144
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=7168
- name: Run test topk num intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-topk=1
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-topk=16
- name: Run test experts num intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=2 --num-topk=1 --num-experts=2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-experts=512 --num-processes=8
- name: Run test intranode for active ranks
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --active-ranks="0,1,3"
- name: Run test intranode for DeepXtrace
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --enable-diagnose
- name: Run test intranode for int8 quant
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
DEEP_NORMAL_MODE_USE_INT8_QUANT: 1
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py
- name: Run test intranode for output parameters of different types
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
MOE_EXPERT_TOKEN_NUMS_TYPE: 0
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py
- name: Run test intranode for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --enable-dynamic-tokens
- name: Run test low latency
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-tokens=1
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-tokens=2
- name: Run test low latency for big bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3825
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-tokens=512
- name: Run test low latency for little num processes
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=2
- name: Run test low latency for hidden
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=4096
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=6144
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=7168
- name: Run test low latency for topk
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1969
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-topk=4
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-topk=16
- name: Run test low latency for experts
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 7481
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=2 --num-topk=1 --num-experts=2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-experts=1024
- name: Run test low latency for drop percent
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
MOE_ENABLE_TOPK_NEG_ONE: 1
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --drop-percent=0.3
- name: Run test low latency for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --enable-dynamic-tokens
- name: Run test base fused deep moe
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --num-experts 256
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 128
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 256
- name: Run test muti-model for fused deep moe
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --num-experts 256 --hidden 6144 --moe-intermediate-size 2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 128 --hidden 6144 --moe-intermediate-size 2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --num-experts 256 --hidden 4096 --moe-intermediate-size 1536
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 256 --hidden 4096 --moe-intermediate-size 1536
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 48 --num-experts 128 --hidden 4096 --moe-intermediate-size 1536
- name: Run test fused deepep moe eplb
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --topk-drop-col 3
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --topk-drop-prob 0.3
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --topk-drop-col 2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 2 --topk-drop-col 3 --num-experts 16
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens 4 --topk-drop-col 1 --num-experts 32
- name: Run test fused deepep moe for little processes
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-processes=2 --num-experts=24
- name: Run test fused deepep moe for bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-tokens=256
- name: Run test fused deepep moe for hidden
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --hidden=2048
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --hidden=7168
- name: Run test fused deepep moe for topk
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-topk=1
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-topk=12
- name: Run test fused deepep moe for experts
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-processes=2 --num-topk=1 --num-experts=4
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_fused_deep_moe.py --num-experts=384
- name: Run test mixed running
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py
- name: Run test mixed running for little processes
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2241
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-processes=2 --test-loop=100
- name: Run test mixed running for bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --normal-num-tokens=1 --low-latency-num-tokens=1 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --normal-num-tokens=8192 --low-latency-num-tokens=512 --test-loop=100
- name: Run test mixed running for hidden
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2241
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=2048 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=4096 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=6144 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=7168 --test-loop=100
- name: Run test mixed running for experts
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3769
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-processes=2 --num-topk=1 --num-experts=2 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-experts=512 --test-loop=100 --num-processes=8
- name: Run test mixed running for topk
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4065
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-topk=1 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-topk=16 --test-loop=100
- name: Run test mixed running for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3769
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --test-loop=100 --enable-dynamic-tokens
- name: Run test generalization of fused deep moe
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2048
run: bash scripts/generalization_test_fused_deep_moe.sh
test-build-deepep-a2:
needs: get-changed-files
if: |
github.event_name == 'workflow_dispatch' || (
(github.repository == 'sgl-project/sgl-kernel-npu' || github.event_name == 'pull_request') &&
github.event.pull_request.draft == false &&
(needs.get-changed-files.outputs.ops2_changed == 'true' || needs.get-changed-files.outputs.common_changed == 'true')
)
runs-on: linux-aarch64-a2-8
container:
image: swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/cann:8.3.rc1-910b-ubuntu22.04-py3.11
steps:
- name: Clean git config
run: |
CONFIG_KEY='http.https://gh-proxy.test.osinfra.cn/.extraheader'
git config --global --unset "$CONFIG_KEY" || true
- name: Clean workspace
run: |
sudo rm -rf --one-file-system "$GITHUB_WORKSPACE"/* "$GITHUB_WORKSPACE"/.* 2>/dev/null || true
- name: Checkout code
uses: actions/checkout@v4
with:
clean: true
- name: Install dependencies
run: |
# speed up by using infra cache services
CACHING_URL="cache-service.nginx-pypi-cache.svc.cluster.local"
sed -Ei "s@(ports|archive).ubuntu.com@${CACHING_URL}:8081@g" /etc/apt/sources.list
pip config set global.index-url http://${CACHING_URL}/pypi/simple
pip config set global.trusted-host ${CACHING_URL}
bash scripts/npu_ci_install_dependency.sh
- name: Prepare Deepep
run: bash scripts/prepare_deepep_in_container.sh -a deepep2
- name: Run test intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=8
- name: Run test intranode for little bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=1 --num-processes=8
- name: Run test intranode for big bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4500
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=8000 --num-processes=8
- name: Run test little processes intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=2
- name: Run test hidden intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=2048 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=4096 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --hidden=6144 --num-processes=8
- name: Run test topk num intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 4500
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-topk=1 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-topk=16 --num-processes=8
- name: Run test experts num intranode
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=2 --num-topk=1 --num-experts=2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-experts=512 --num-processes=8
- name: Run test intranode for active ranks
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=8 --active-ranks="0,1,3"
- name: Run test intranode for DeepXtrace
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --enable-diagnose --num-processes=8
- name: Run test multi-round intranode
timeout-minutes: 10
env:
DEEPEP_NORMAL_LONG_SEQ_ROUND: 5
DEEPEP_NORMAL_LONG_SEQ_PER_ROUND_TOKENS: 512
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=2122 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-tokens=2048 --num-processes=8
- name: Run test intranode for int8 quant
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
DEEP_NORMAL_MODE_USE_INT8_QUANT: 1
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=8
- name: Run test intranode for output parameters of different types
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
MOE_EXPERT_TOKEN_NUMS_TYPE: 0
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --num-processes=8
- name: Run test intranode for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_intranode.py --enable-dynamic-tokens --num-processes=8
- name: Run test low latency
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-tokens=1 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-tokens=2 --num-processes=8
- name: Run test low latency for big bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3825
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=8 --num-tokens=512
- name: Run test low latency for little num processes
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=2
- name: Run test low latency for hidden
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=2048 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=4096 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=6144 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --hidden=7168 --num-processes=8
- name: Run test low latency for topk
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1969
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-topk=4 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-topk=16 --num-processes=8
- name: Run test low latency for experts
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 7481
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=2 --num-topk=1 --num-experts=2
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-experts=1024 --num-processes=8
- name: Run test low latency for drop percent
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 1913
MOE_ENABLE_TOPK_NEG_ONE: 1
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --drop-percent=0.3 --num-processes=8
- name: Run test low latency for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 2300
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_low_latency.py --num-processes=8 --enable-dynamic-tokens
- name: Run test mixed running
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-processes=8
- name: Run test mixed running for little processes
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-processes=2 --test-loop=100
- name: Run test mixed running for bs
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 5000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --normal-num-tokens=1 --low-latency-num-tokens=1 --test-loop=100 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --normal-num-tokens=8000 --low-latency-num-tokens=512 --test-loop=100 --num-processes=8
- name: Run test mixed running for hidden
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=2048 --test-loop=100 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=4096 --test-loop=100 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --hidden=6144 --test-loop=100 --num-processes=8
- name: Run test mixed running for topk
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 5000
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-topk=1 --test-loop=100 --num-processes=8
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-topk=16 --test-loop=100 --num-processes=8
- name: Run test mixed running for experts
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3769
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-processes=2 --num-topk=1 --num-experts=2 --test-loop=100
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --num-experts=512 --test-loop=100 --num-processes=8
- name: Run test mixed running for dynamic tokens
timeout-minutes: 10
env:
HCCL_BUFFSIZE: 3769
run: |
python3 $GITHUB_WORKSPACE/tests/python/deepep/test_normal_and_low_latency.py --test-loop=100 --enable-dynamic-tokens --num-processes=8
test-build-deepep-internode:
name: multi-node
if: ${{ (github.repository == 'sgl-project/sgl-kernel-npu' || github.event_name == 'pull_request') }}
strategy:
fail-fast: false
max-parallel: 1
matrix:
test_config:
- name: test_internode_a2
node_size: 2
test_case: tests/python/deepep/test_internode_a2.py
uses: ./.github/workflows/internode.yml
with:
soc_version: a2
runner: linux-aarch64-a2-0
image: 'swr.cn-southwest-2.myhuaweicloud.com/base_image/ascend-ci/cann:8.3.rc1-910b-ubuntu22.04-py3.11'
test_config_name: ${{ matrix.test_config.name }}
node_size: ${{ matrix.test_config.node_size }}