Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoParallel] Fix tests for pass paddle AutoParallel CI #9267

Merged
merged 1 commit into from
Oct 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion scripts/distribute/ci_case_auto.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ function is_a100() {

IS_A100=$(is_a100)

# NOTE: Please place the new tests as much as possible after the existing tests
function llama_case_list_auto() {
llama_dygraph_auto_bs8_fp32_DP2
llama_dygraph_auto_bs8_fp32_DP2-MP2
Expand All @@ -52,8 +53,9 @@ function llama_case_list_auto() {
# llama_static_auto_recompute_bs16_fp32_DP2-MP2-PP2
# llama_static_auto_recompute_bs16_fp32_DP2-MP2-PP2-VPP2-Sharding2_stage2
# llama_static_auto_recompute_bs16_fp16_DP2-MP2-PP2-VPP2-Sharding2_stage2
llama_pir_auto_fuse_ffn_attention_qkv_MP2

llama_align_dygraph_dy2st_auto_bs2_bf16_DP2-MP1-PP1
llama_pir_auto_fuse_ffn_attention_qkv_MP2
llama_convert_hybrid_ckpt_to_auto_parallel_bs2_fp32_DP2-MP1-PP1
llama_align_dygraph_dy2st_pir_auto_bs2_bf16_DP2-MP2-PP1-SP
llama_align_dygraph_dy2st_pir_auto_bs2_bf16_DP2-MP2-PP2-SP
Expand Down Expand Up @@ -1163,6 +1165,7 @@ function llama_pir_auto_fuse_ffn_attention_qkv_MP2() {
loss_base=10.27925682
fi
check_result $FUNCNAME ${loss_base} ${auto_loss} ${ips_base} ${auto_ips} ${mem_base} ${auto_mem}
export FLAGS_enable_fused_ffn_qkv_pass=0
echo "=========== $FUNCNAME run end ==========="
}

Expand Down
Loading