From 1cfa1057bdfb4e19ea005f6a5b1ebf0729ac8a96 Mon Sep 17 00:00:00 2001 From: Peihan Date: Mon, 5 Jul 2021 11:52:31 +0800 Subject: [PATCH] Update paddle_build.bat to remove op grad when build windows inference lib (#33800) 1. check status of remove op grad shell scripts 2. Update paddle_build.bat to remove op grad when build windows inference lib 3. add inference demo test after build finish --- paddle/scripts/paddle_build.bat | 3 +++ 1 file changed, 3 insertions(+) diff --git a/paddle/scripts/paddle_build.bat b/paddle/scripts/paddle_build.bat index b1cdfbaf6f2..47d87ecfb97 100644 --- a/paddle/scripts/paddle_build.bat +++ b/paddle/scripts/paddle_build.bat @@ -217,9 +217,12 @@ rem ------Build windows inference library------ set ON_INFER=ON set WITH_PYTHON=OFF set CUDA_ARCH_NAME=All +python %work_dir%\tools\remove_grad_op_and_kernel.py +if %errorlevel% NEQ 0 exit /b 1 call :cmake || goto cmake_error call :build || goto build_error +call :test_inference || goto test_inference_error call :zip_cc_file || goto zip_cc_file_error call :zip_c_file || goto zip_c_file_error goto:success -- GitLab