From 523fae593c9babd77745814f90bd28f1ce3c5dcb Mon Sep 17 00:00:00 2001 From: RedContritio Date: Wed, 12 Apr 2023 14:46:34 +0800 Subject: [PATCH] fix CMakeLists.txt error of incorrect default value (#52780) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9dc6febdfaa..ef5d415212e 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -257,7 +257,7 @@ option(WITH_BOX_PS "Compile with box_ps support" OFF) option(WITH_XBYAK "Compile with xbyak support" ON) option(WITH_CONTRIB "Compile the third-party contributation" OFF) option(WITH_PSCORE "Compile with parameter server support" ${WITH_DISTRIBUTE}) -option(WITH_HETERPS "Compile with heterps" OFF}) +option(WITH_HETERPS "Compile with heterps" OFF) option(WITH_INFERENCE_API_TEST "Test fluid inference C++ high-level api interface" OFF) option(WITH_INFERENCE_NVTX "Paddle inference with nvtx for profiler" OFF) -- GitLab