From 8a55552d0d6d16aa4aec4a1bdc63ef530a79f31e Mon Sep 17 00:00:00 2001 From: "Han, Chao1" Date: Thu, 1 Aug 2024 05:05:16 +0800 Subject: [PATCH] update --- cmake/BuildFlags.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/BuildFlags.cmake b/cmake/BuildFlags.cmake index 2ea37cefb..6f5e4ae86 100644 --- a/cmake/BuildFlags.cmake +++ b/cmake/BuildFlags.cmake @@ -69,9 +69,9 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "MSVC" if(SYCL_COMPILER_VERSION GREATER_EQUAL MIN_DATE_VERSION) set(SYCL_KERNEL_OPTIONS ${SYCL_KERNEL_OPTIONS} -fsycl-fp64-conv-emu) else() - message(WARNING "SYCL Compiler Version ${SYCL_COMPILER_VERSION} \ - is less than ${MIN_DATE_VERSION}. Disable FP64 conversion emulation. \ - There might be unknown behavior on some platforms that don't support FP64.") + message(WARNING "On some platforms that don't support FP64, \ + running operations with the FP64 datatype will raise a Runtime error \ + or a Native API failed error.") endif() endif()