-
Notifications
You must be signed in to change notification settings - Fork 51
1031 lines (964 loc) · 44.1 KB
/
cuda_129_python_dev.yml
File metadata and controls
1031 lines (964 loc) · 44.1 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: CE-CUDA-129-PYTHON-develop
on:
schedule:
- cron: '0 19 * * *'
workflow_dispatch: # 可选:允许手动点 Run
inputs:
use_release:
description: '是否使用预编译的develop版本'
type: choice
options:
- 'true'
- 'false'
default: 'true'
required: false
permissions: read-all
concurrency:
group: ${{ github.event.pull_request.number }}-${{ github.workflow }}
cancel-in-progress: true
env:
PR_ID: ${{ github.event.pull_request.number || '0' }}
COMMIT_ID: ${{ github.event.pull_request.head.sha || github.sha }}
work_dir: /paddle
PADDLE_ROOT: /paddle
ci_scripts: /paddle/ci
BRANCH: ${{ github.event.pull_request.base.ref || github.ref_name }}
CI_name: test
no_proxy: "bcebos.com,.bcebos.com,apiin.im.baidu.com,gitee.com,aliyun.com,.baidu.com,.tuna.tsinghua.edu.cn"
docker_image: "ccr-2vdh3abv-pub.cnc.bj.baidubce.com/paddlepaddle/paddle:cuda129-coverage-test"
paddle_url: "https://paddle-qa.bj.bcebos.com/paddle-pipeline/Develop-TagBuild-Training-Linux-Gpu-Cuda12.9-Cudnn9.9-Trt10.5-Mkl-Avx-Gcc11-SelfBuiltPypiUse/latest/"
use_release: ${{ inputs.use_release || 'true' }}
defaults:
run:
shell: bash
jobs:
single_card_test:
name: Unit test (single card)
runs-on:
group: Fleet-H-single-card
strategy:
fail-fast: false
max-parallel: 1
matrix:
python: [3.11, 3.12, 3.13]
env:
PIP_CACHE_DIR: /home/.cache/pip
CACHE_DIR: /home/.cache
TASK: paddlefleet-CE-CUDA129-PYTHON-DEV-single-card-test-${{ matrix.python }}
steps:
- name: Determine the runner
run: |
gpu_id=$(( $(echo $PWD | awk -F'/' '{print $3}' | awk -F'-' '{print $2}') + 3 ))
echo GPU_DEVICES="$gpu_id" >> $GITHUB_ENV
- name: Check docker image and run container
env:
GPU_DEVICES: ${{ env.GPU_DEVICES }}
run: |
container_name=${TASK}-$(date +%Y%m%d-%H%M%S)
echo "container_name=${container_name}" >> ${{ github.env }}
docker pull $docker_image
docker run -d -t --name ${container_name} --gpus "\"device=${GPU_DEVICES}\"" --shm-size=32G \
-v "/dev/shm:/dev/shm" \
-v ${{ github.workspace }}/../../..:${{ github.workspace }}/../../.. \
-v ${{ github.workspace }}/../../..:/root \
-v /ssd1/paddle-1/action_cache:/home/.cache \
-v ${{ github.workspace }}:/paddle \
-e BRANCH \
-e PR_ID \
-e COMMIT_ID \
-e repo_flag="paddlefleet" \
-e PADDLE_ROOT \
-e ci_scripts \
-e CACHE_DIR \
-e no_proxy \
-e paddle_url \
-e use_release \
-e CI_name \
-e PIP_CACHE_DIR \
-e work_dir \
-e GITHUB_HEAD_REF="${{ github.head_ref }}" \
-e GITHUB_REPO_NAME="${{ github.repository }}" \
-e GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
-e GITHUB_RUN_ID="${{ github.run_id }}" \
-w /paddle --network host ${docker_image}
- name: create python env
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
# wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
# bash miniconda.sh -b -p $HOME/miniconda
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r
conda init bash
conda create -n python${{ matrix.python }} python=${{ matrix.python }} -y
conda activate python${{ matrix.python }}
'
- name: Single card test
id: basic_test
run: |
docker exec -t ${{ env.container_name }} /bin/bash -xce '
pwd
rm -rf * .[^.]*
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
export WITH_COVERAGE=ON
pip install --upgrade pip
git clone https://github.com/PaddlePaddle/PaddleFleet.git .
git config --global --add safe.directory /paddle
git config user.name "PaddleCI"
git config user.email "paddle_ci@example.com"
git config pull.rebase false
python -m pip install --pre paddlefleet --index-url https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --extra-index-url https://www.paddlepaddle.org.cn/packages/stable/cu129/ --extra-index-url https://pypi.tuna.tsinghua.edu.cn/simple
if [ "${use_release}" == "true" ]; then
py="${{ matrix.python }}"
version="${py//./}"
echo "version=$version"
echo "Using pre-built paddle package from develop branch."
paddle_url_info=paddlepaddle_gpu-0.0.0-cp${version}-cp${version}-linux_x86_64.whl
pip install "$paddle_url$paddle_url_info" -i https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --force-reinstall --no-cache-dir
fi
pip install colorlog>=6.10.1
pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt matplotlib==3.10.8 pytest parameterized
echo "Paddle Commit"
python -c "import paddle; print(paddle.version.commit)"
echo "PaddleFleet Commit"
python -c "import paddlefleet; print(paddlefleet.version.commit)"
bash ci/single_card_test.sh
single_card_exit_code=$?
if [[ "$single_card_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mSingle card test failed.\033[0m"
exit 1
else
echo -e "\033[32mSingle card test succeeded.\033[0m"
fi
'
- name: Single card sonic moe test
if: matrix.python == '3.12' && always()
run: |
docker exec -t ${{ env.container_name }} /bin/bash -xce '
pwd
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
echo "Paddle Commit"
python -c "import paddle; print(paddle.version.commit)"
echo "PaddleFleet Commit"
python -c "import paddlefleet; print(paddlefleet.version.commit)"
bash ci/single_card_sonic.sh
single_card_exit_code=$?
if [[ "$single_card_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mSingle card test failed.\033[0m"
exit 1
else
echo -e "\033[32mSingle card test succeeded.\033[0m"
fi
'
- name: Terminate and delete the container
if: ${{ always() }}
run: |
set +e
docker exec -t ${{ env.container_name }} /bin/bash -c 'bash ci/clean_uv_cache.sh; rm -rf * .[^.]*'
docker rm -f ${{ env.container_name }}
multi-card_test:
name: Unit test (multi-card)
runs-on:
group: Fleet-H-multi-card
strategy:
fail-fast: false
max-parallel: 1
matrix:
python: [3.11, 3.12, 3.13]
env:
PIP_CACHE_DIR: /home/.cache/pip
TASK: paddlefleet-CE-CUDA129-PYTHON-DEV-multi-card_test-${{ matrix.python }}
steps:
- name: Check docker image and run container
run: |
container_name=${TASK}-$(date +%Y%m%d-%H%M%S)
echo "container_name=${container_name}" >> ${{ github.env }}
docker pull $docker_image
docker run -d -t --gpus all --name ${container_name} \
-v "/dev/shm:/dev/shm" \
-v ${{ github.workspace }}/../../..:${{ github.workspace }}/../../.. \
-v ${{ github.workspace }}/../../..:/root \
-v /ssd1/paddle-1/action_cache:/home/.cache \
-v ${{ github.workspace }}:/paddle \
-e BRANCH \
-e PR_ID \
-e COMMIT_ID \
-e PADDLE_ROOT \
-e ci_scripts \
-e CACHE_DIR \
-e no_proxy \
-e use_release \
-e paddle_url \
-e CI_name \
-e repo_flag="paddlefleet" \
-e PIP_CACHE_DIR \
-e work_dir \
-e GITHUB_SHA="${{ github.event.pull_request.head.sha }}" \
-e GITHUB_HEAD_REF="${{ github.head_ref }}" \
-e GITHUB_REPO_NAME="${{ github.repository }}" \
-e GITHUB_EVENT_NAME="${{ github.event_name }}" \
-e GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
-e GITHUB_RUN_ID="${{ github.run_id }}" \
-w /paddle --network host ${docker_image}
- name: create python env
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
# wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
# bash miniconda.sh -b -p $HOME/miniconda
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r
conda init bash
conda create -n python${{ matrix.python }} python=${{ matrix.python }} -y
conda activate python${{ matrix.python }}
'
- name: Install PaddleFleet
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
rm -rf * .[^.]*
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
pip install --upgrade pip
git clone https://github.com/PaddlePaddle/PaddleFleet.git .
git config --global --add safe.directory /paddle
git config user.name "PaddleCI"
git config user.email "paddle_ci@example.com"
git config pull.rebase false
git submodule update --init --recursive
pip install colorlog>=6.10.1
python -m pip install --pre paddlefleet --index-url https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --extra-index-url https://www.paddlepaddle.org.cn/packages/stable/cu129/ --extra-index-url https://pypi.tuna.tsinghua.edu.cn/simple
if [ "${use_release}" == "true" ]; then
echo "Using pre-built paddle package from develop branch."
py="${{ matrix.python }}"
version="${py//./}"
echo "version=$version"
paddle_url_info=paddlepaddle_gpu-0.0.0-cp${version}-cp${version}-linux_x86_64.whl
pip install "$paddle_url$paddle_url_info" -i https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --force-reinstall --no-cache-dir
fi
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt matplotlib==3.10.8 pytest
chmod +x /usr/local/bin/yq
'
- name: Multi-card test
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
echo "Paddle Commit"
python -c "import paddle; print(paddle.version.commit)"
echo "PaddleFleet Commit"
python -c "import paddlefleet; print(paddlefleet.version.commit)"
export PYTHONPATH=/paddle:$PYTHONPATH
bash ci/multi-card_test.sh
multi_card_exit_code=$?
if [[ "$multi_card_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mMulti card test failed.\033[0m"
exit 1
else
echo -e "\033[32mMulti card test succeeded.\033[0m"
fi
'
- name: Terminate and delete the container
if: ${{ always() }}
run: |
set +e
docker exec -t ${{ env.container_name }} /bin/bash -c 'bash ci/clean_uv_cache.sh; rm -rf * .[^.]*'
docker rm -f ${{ env.container_name }}
integration-test-H20-single-card:
name: Integration test (H20, single card)
runs-on:
group: Fleet-H-single-card
strategy:
fail-fast: false
max-parallel: 1
matrix:
python: [3.11, 3.12, 3.13]
env:
PIP_CACHE_DIR: /home/.cache/pip
CACHE_DIR: /home/.cache
TASK: paddlefleet-CE-CUDA129-PYTHON-DEV-integration-test-single-card-${{ matrix.python }}
steps:
- name: Determine the runner
run: |
gpu_id=$(( $(echo $PWD | awk -F'/' '{print $3}' | awk -F'-' '{print $2}') + 3 ))
echo GPU_DEVICES="$gpu_id" >> $GITHUB_ENV
- name: Check docker image and run container
env:
GPU_DEVICES: ${{ env.GPU_DEVICES }}
run: |
container_name=${TASK}-$(date +%Y%m%d-%H%M%S)
echo "container_name=${container_name}" >> ${{ github.env }}
docker pull $docker_image
set -x
docker run -d -t --name ${container_name} --gpus "\"device=${GPU_DEVICES}\"" --shm-size=32G \
-v "/dev/shm:/dev/shm" \
-v ${{ github.workspace }}/../../..:${{ github.workspace }}/../../.. \
-v ${{ github.workspace }}/../../..:/root \
-v /ssd1/paddle-1/action_cache:/home/.cache \
-v ${{ github.workspace }}:/workspace \
-e BRANCH \
-e PR_ID \
-e COMMIT_ID \
-e PADDLE_ROOT \
-e ci_scripts \
-e CACHE_DIR \
-e no_proxy \
-e CI_name \
-e paddle_url \
-e use_release \
-e PIP_CACHE_DIR \
-e GITHUB_SHA="${{ github.event.pull_request.head.sha }}" \
-e GITHUB_HEAD_REF="${{ github.head_ref }}" \
-e GITHUB_REPO_NAME="${{ github.repository }}" \
-e GITHUB_EVENT_NAME="${{ github.event_name }}" \
-e GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
-e GITHUB_RUN_ID="${{ github.run_id }}" \
-w /workspace --network host ${docker_image}
- name: create python env
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
# wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
# bash miniconda.sh -b -p $HOME/miniconda
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r
conda init bash
conda create -n python${{ matrix.python }} python=${{ matrix.python }} -y
conda activate python${{ matrix.python }}
'
- name: Install PaddleFleet
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
nvidia-smi
rm -rf * .[^.]*
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
pip install --upgrade pip
git clone https://github.com/PaddlePaddle/PaddleFleet.git
cd PaddleFleet
git config --global --add safe.directory /workspace/PaddleFleet
git config user.name "PaddleCI"
git config user.email "paddle_ci@example.com"
git config pull.rebase false
pip install colorlog>=6.10.1
python -m pip install --pre paddlefleet --index-url https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --extra-index-url https://www.paddlepaddle.org.cn/packages/stable/cu129/ --extra-index-url https://pypi.tuna.tsinghua.edu.cn/simple
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
chmod +x /usr/local/bin/yq
'
- name: Install PaddleFormers
id: formers_install
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
git clone -b develop https://github.com/PaddlePaddle/PaddleFormers.git
cd PaddleFormers
git config --global --add safe.directory /workspace/PaddleFormers
git config user.name "PaddleCI"
git config user.email "paddle_ci@example.com"
git config pull.rebase false
git log -1
sed -i "s/from gpt_provider import GPTModelProvider/from paddleformers.transformers.gpt_provider import GPTModelProvider/g" examples/experiments/paddlefleet/glm45_provider.py
sed -i "s/from gpt_provider import GPTModelProvider/from paddleformers.transformers.gpt_provider import GPTModelProvider/g" examples/experiments/paddlefleet/qwen_provider.py
py="${{ matrix.python }}"
version="${py//./}"
echo "version=$version"
paddle_url_info=paddlepaddle_gpu-0.0.0-cp${version}-cp${version}-linux_x86_64.whl
pip install -e . --extra-index-url=https://www.paddlepaddle.org.cn/packages/nightly/cu129/
if [ "${use_release}" == "true" ]; then
py="${{ matrix.python }}"
version="${py//./}"
echo "version=$version"
paddle_url_info=paddlepaddle_gpu-0.0.0-cp${version}-cp${version}-linux_x86_64.whl
echo "Using pre-built paddle package from develop branch."
pip install "$paddle_url$paddle_url_info" -i https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --force-reinstall --no-cache-dir
fi
pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt
pip install librosa==0.11.0
echo "Paddle Commit"
python -c "import paddle; print(paddle.version.commit)"
echo "PaddleFleet Commit"
python -c "import paddlefleet; print(paddlefleet.version.commit)"
echo "paddleformers Commit"
python -c "import paddleformers; print(paddleformers.version.commit)"
'
- name: Proprocess for integration test
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/preprocess.sh
preprocess_exit_code=$?
if [[ "$preprocess_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mPreprocess failed.\033[0m"
exit 1
else
echo -e "\033[32mPreprocess succeeded.\033[0m"
fi
'
- name: Integration test (GLM4.5 single-card)
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/glm45_pt_single_card.sh
glm45_single_card_exit_code=$?
if [[ "$glm45_single_card_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mIntegration test failed: GLM4.5 single-card.\033[0m"
exit 1
else
echo -e "\033[32mIntegration test succeeded: GLM4.5 single-card.\033[0m"
fi
'
- name: Integration test (Qwen3-30B-A3B single-card)
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/qwen3_single_card.sh
qwen3_single_card_exit_code=$?
if [[ "$qwen3_single_card_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mIntegration test failed: Qwen3-30B-A3B single-card.\033[0m"
exit 1
else
echo -e "\033[32mIntegration test succeeded: Qwen3-30B-A3B single-card.\033[0m"
fi
'
- name: Qwen3-vl-8k-single-card
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/qwen3vl_sft_single_card.sh single
'
- name: Terminate and delete the container
if: ${{ always() }}
run: |
set +e
docker exec -t ${{ env.container_name }} /bin/bash -c 'bash PaddleFleet/ci/clean_uv_cache.sh; rm -rf * .[^.]*'
docker rm -f ${{ env.container_name }}
integration-test-H20-multi-card:
name: Integration test (H20, multi-card)
runs-on:
group: Fleet-H-multi-card
strategy:
fail-fast: false
max-parallel: 1
matrix:
python: [3.11, 3.12, 3.13]
env:
PIP_CACHE_DIR: /home/.cache/pip
CACHE_DIR: /home/.cache
TASK: paddlefleet-CE-CUDA129-PYTHON-DEV-integration-test-multi-card-${{ matrix.python }}
steps:
- name: Check docker image and run container
run: |
container_name=${TASK}-$(date +%Y%m%d-%H%M%S)
echo "container_name=${container_name}" >> ${{ github.env }}
docker pull $docker_image
docker run -d -t --name ${container_name} --gpus all --shm-size=32G \
-v "/dev/shm:/dev/shm" \
-v ${{ github.workspace }}/../../..:${{ github.workspace }}/../../.. \
-v ${{ github.workspace }}/../../..:/root \
-v /ssd1/paddle-1/action_cache:/home/.cache \
-v ${{ github.workspace }}:/workspace \
-e BRANCH \
-e PR_ID \
-e COMMIT_ID \
-e PADDLE_ROOT \
-e ci_scripts \
-e use_release \
-e CACHE_DIR \
-e no_proxy \
-e CI_name \
-e paddle_url \
-e PIP_CACHE_DIR \
-e GITHUB_SHA="${{ github.event.pull_request.head.sha }}" \
-e GITHUB_HEAD_REF="${{ github.head_ref }}" \
-e GITHUB_REPO_NAME="${{ github.repository }}" \
-e GITHUB_EVENT_NAME="${{ github.event_name }}" \
-e GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
-e GITHUB_RUN_ID="${{ github.run_id }}" \
-w /workspace --network host ${docker_image}
- name: create python env
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda -u
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r
conda init bash
conda create -n python${{ matrix.python }} python=${{ matrix.python }} -y
conda activate python${{ matrix.python }}
'
- name: Install PaddleFleet
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
rm -rf * .[^.]*
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda init bash
conda activate python${{ matrix.python }}
pip install --upgrade pip
git clone https://github.com/PaddlePaddle/PaddleFleet.git
cd PaddleFleet
git config --global --add safe.directory /workspace/PaddleFleet
git config user.name "PaddleCI"
git config user.email "paddle_ci@example.com"
git config pull.rebase false
pip install colorlog>=6.10.1
python -m pip install --pre paddlefleet --index-url https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --extra-index-url https://www.paddlepaddle.org.cn/packages/stable/cu129/ --extra-index-url https://pypi.tuna.tsinghua.edu.cn/simple
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
chmod +x /usr/local/bin/yq
'
- name: Install PaddleFormers
id: formers_install
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
git clone -b develop https://github.com/PaddlePaddle/PaddleFormers.git
cd PaddleFormers
cp examples/experiments/paddlefleet/glm45.json examples/experiments/paddlefleet/glm45_fp8.json
git config --global --add safe.directory /workspace/PaddleFormers
git config user.name "PaddleCI"
git config user.email "paddle_ci@example.com"
git config pull.rebase false
git log -1
pip install -e . --extra-index-url=https://www.paddlepaddle.org.cn/packages/nightly/cu129/
if [ "${use_release}" == "true" ]; then
py="${{ matrix.python }}"
version="${py//./}"
echo "version=$version"
paddle_url_info=paddlepaddle_gpu-0.0.0-cp${version}-cp${version}-linux_x86_64.whl
echo "Using pre-built paddle package from develop branch."
pip install "$paddle_url$paddle_url_info" -i https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --force-reinstall --no-cache-dir
fi
pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt
pip install bce-python-sdk==0.8.74
pip install coverage==7.6.1
pip install librosa==0.11.0
echo "Paddle Commit"
python -c "import paddle; print(paddle.version.commit)"
echo "PaddleFleet Commit"
python -c "import paddlefleet; print(paddlefleet.version.commit)"
echo "paddleformers Commit"
python -c "import paddleformers; print(paddleformers.version.commit)"
'
- name: GLM4.5 pre-train
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/glm45_pt.sh
glm45_exit_code=$?
if [[ "$glm45_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mIntegration test failed: GLM4.5.\033[0m"
exit 1
else
echo -e "\033[32mIntegration test succeeded: GLM4.5.\033[0m"
fi
'
- name: GLM4.5 sft
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/glm45_sft.sh
glm45_exit_code=$?
if [[ "$glm45_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mIntegration test failed: GLM4.5.\033[0m"
exit 1
else
echo -e "\033[32mIntegration test succeeded: GLM4.5.\033[0m"
fi
'
- name: GLM4.5 lora
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/glm45_lora.sh
glm45_exit_code=$?
if [[ "$glm45_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mIntegration test failed: GLM4.5.\033[0m"
exit 1
else
echo -e "\033[32mIntegration test succeeded: GLM4.5.\033[0m"
fi
'
- name: GLM4.5 dpo
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/glm45_dpo.sh
glm45_exit_code=$?
if [[ "$glm45_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mIntegration test failed: GLM4.5 dpo.\033[0m"
exit 1
else
echo -e "\033[32mIntegration test succeeded: GLM4.5 dpo.\033[0m"
fi
'
- name: GLM4.5 dpo_lora
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/glm45_dpo_lora.sh
'
- name: Integration test (GLM4.5 multi-card FP8)
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/glm45_pt_fp8.sh
glm45_exit_code=$?
if [[ "$glm45_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mIntegration test failed: GLM4.5.\033[0m"
exit 1
else
echo -e "\033[32mIntegration test succeeded: GLM4.5 FP8.\033[0m"
fi
'
- name: GLM4.5 pre-train (Grouped GEMM)
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/glm45_pt_grouped_gemm.sh
glm45_exit_code=$?
if [[ "$glm45_exit_code" != "0" ]]; then
echo -e "::error:: \033[31mIntegration test failed: GLM4.5 Grouped GEMM.\033[0m"
exit 1
else
echo -e "\033[32mIntegration test succeeded: GLM4.5 Grouped GEMM.\033[0m"
fi
'
- name: GLM4.5 pre-train (EP4)
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/glm45_pt_ep4.sh
'
- name: Qwen pre-train
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/qwen.sh pt
'
- name: Qwen sft
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/qwen.sh sft
'
- name: Qwen lora
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/qwen.sh lora
'
- name: Qwen vl sft
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/qwen3vl_sft.sh tp8 h20
'
- name: Qwen vl lora
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/qwen3vl_lora.sh h20
'
- name: Qwen vl moe
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 10m bash -x PaddleFormers/tests/integration_test/qwen3vl_sft.sh moe h20
'
- name: Qwen3-vl-8k-fsdp
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 10m bash -x PaddleFormers/tests/integration_test/qwen3vl_sft.sh fsdp h20
'
- name: Terminate and delete the container
if: ${{ always() }}
run: |
set +e
docker exec -t ${{ env.container_name }} /bin/bash -c 'bash PaddleFleet/ci/clean_uv_cache.sh; rm -rf * .[^.]*'
docker rm -f ${{ env.container_name }}
integration-test-a100:
name: Integration test (A100)
runs-on:
group: Distribute
strategy:
fail-fast: false
max-parallel: 1
matrix:
python: [3.11, 3.12, 3.13]
env:
PIP_CACHE_DIR: /home/.cache/pip
CACHE_DIR: /home/.cache
TASK: paddlefleet-CE-CUDA129-PYTHON-DEV-integration-test-A100-${{ matrix.python }}
steps:
- name: Check docker image and run container
run: |
container_name=${TASK}-$(date +%Y%m%d-%H%M%S)
echo "container_name=${container_name}" >> ${{ github.env }}
docker pull $docker_image
docker run -d -t --name ${container_name} --gpus all --shm-size=32G \
-v "/dev/shm:/dev/shm" \
-v ${{ github.workspace }}/../../..:${{ github.workspace }}/../../.. \
-v ${{ github.workspace }}/../../..:/root \
-v /ssd1/paddle-1/action_cache:/home/.cache \
-v ${{ github.workspace }}:/workspace \
-e BRANCH \
-e PR_ID \
-e COMMIT_ID \
-e PADDLE_ROOT \
-e ci_scripts \
-e CACHE_DIR \
-e paddle_url \
-e use_release \
-e no_proxy \
-e CI_name \
-e PIP_CACHE_DIR \
-e GITHUB_SHA="${{ github.event.pull_request.head.sha }}" \
-e GITHUB_HEAD_REF="${{ github.head_ref }}" \
-e GITHUB_REPO_NAME="${{ github.repository }}" \
-e GITHUB_EVENT_NAME="${{ github.event_name }}" \
-e GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" \
-e GITHUB_RUN_ID="${{ github.run_id }}" \
-w /workspace --network host ${docker_image}
- name: create python env
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/main
conda tos accept --override-channels --channel https://repo.anaconda.com/pkgs/r
conda init bash
conda create -n python${{ matrix.python }} python=${{ matrix.python }} -y
conda activate python${{ matrix.python }}
'
- name: Install PaddleFleet
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
rm -rf * .[^.]*
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
pip install --upgrade pip
git clone https://github.com/PaddlePaddle/PaddleFleet.git
cd PaddleFleet
git config --global --add safe.directory /workspace/PaddleFleet
git config user.name "PaddleCI"
git config user.email "paddle_ci@example.com"
git config pull.rebase false
pip install colorlog>=6.10.1
pip install colorlog>=6.10.1
python -m pip install --pre paddlefleet --index-url https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --extra-index-url https://www.paddlepaddle.org.cn/packages/stable/cu129/ --extra-index-url https://pypi.tuna.tsinghua.edu.cn/simple
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq
chmod +x /usr/local/bin/yq
'
- name: Install PaddleFormers
id: formers_install
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
git clone -b develop https://github.com/PaddlePaddle/PaddleFormers.git
cd PaddleFormers
git config --global --add safe.directory /workspace/PaddleFormers
git config user.name "PaddleCI"
git config user.email "paddle_ci@example.com"
git config pull.rebase false
git log -1
pip install -e . --extra-index-url=https://www.paddlepaddle.org.cn/packages/nightly/cu129/
if [ "${use_release}" == "true" ]; then
py="${{ matrix.python }}"
version="${py//./}"
echo "version=$version"
paddle_url_info=paddlepaddle_gpu-0.0.0-cp${version}-cp${version}-linux_x86_64.whl
echo "Using pre-built paddle package from develop branch."
pip install "$paddle_url$paddle_url_info" -i https://www.paddlepaddle.org.cn/packages/nightly/cu129/ --force-reinstall --no-cache-dir
fi
pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt
pip install bce-python-sdk==0.8.74
pip install coverage==7.6.1
pip install librosa==0.11.0
echo "Paddle Commit"
python -c "import paddle; print(paddle.version.commit)"
echo "PaddleFleet Commit"
python -c "import paddlefleet; print(paddlefleet.version.commit)"
echo "paddleformers Commit"
python -c "import paddleformers; print(paddleformers.version.commit)"
'
- name: GLM4.5 pre-train
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
bash -x PaddleFormers/tests/integration_test/glm45_a100.sh pt
'
- name: GLM4.5 sft
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/glm45_a100.sh sft
'
- name: GLM4.5 lora
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/glm45_a100.sh lora
'
- name: GLM4.5 dpo
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/glm45_a100.sh dpo
glm45_exit_code=$?
'
- name: GLM4.5 dpo_lora
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/glm45_a100.sh dpo_lora
'
- name: Qwen pre-train
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/qwen3_a100.sh pt
'
- name: Qwen sft
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/qwen3_a100.sh sft
'
- name: Qwen lora
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}
timeout 5m bash -x PaddleFormers/tests/integration_test/qwen3_a100.sh lora
'
- name: Qwen vl sft
if: (success() || failure()) && steps.formers_install.conclusion == 'success'
run: |
docker exec -t ${{ env.container_name }} /bin/bash -ce '
source /root/proxy
source "$HOME/miniconda/etc/profile.d/conda.sh"
conda activate python${{ matrix.python }}