From 87753ee80bb8d6d6f3686717d55b8f8ccc4701f1 Mon Sep 17 00:00:00 2001 From: tianshuo78520a <707759223@qq.com> Date: Mon, 7 Nov 2022 16:23:02 +0800 Subject: [PATCH] Test FLAGS_enable_cudnn_frontend In CUDA117 CI (#47635) * test=cuda117 * test=cuda11 * test=document_fix;test=cuda117 * test=document_fix --- paddle/scripts/paddle_build.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/paddle/scripts/paddle_build.sh b/paddle/scripts/paddle_build.sh index 2048c18b22..260d89bf36 100755 --- a/paddle/scripts/paddle_build.sh +++ b/paddle/scripts/paddle_build.sh @@ -2889,6 +2889,12 @@ function parallel_test() { echo "ipipe_log_param_TestCases_Total_Time: $[ $ut_total_endTime_s - $ut_total_startTime_s ]s" >> ${PADDLE_ROOT}/build/build_summary.txt } +function nv_test() { + export FLAGS_enable_cudnn_frontend=0 + ctest -R "conv" --output-on-failure --timeout 150 +} + + function enable_unused_var_check() { # NOTE(zhiqiu): Set FLAGS_enable_unused_var_check=1 here to enable unused_var_check, # which checks if an operator has unused input variable(s). @@ -3587,6 +3593,11 @@ function main() { parallel_test check_coverage ;; + nv_cicheck_coverage) + parallel_test + nv_test + check_coverage + ;; check_coverage_build) check_coverage_build ;; -- GitLab