From e188c01c9db53aeead7146a846923605362f6799 Mon Sep 17 00:00:00 2001 From: "lorenc.bushi" Date: Fri, 23 Sep 2022 14:17:16 -0700 Subject: [PATCH 01/18] Fix ESIMD_EMULATOR being picked up as default device --- .../api/v1/query/client-vscode/query.json | 1 + sycl/source/build/CMakeCache.txt | 379 ++++++++++ .../CMakeFiles/3.17.3/CMakeCCompiler.cmake | 76 ++ .../CMakeFiles/3.17.3/CMakeCXXCompiler.cmake | 88 +++ .../3.17.3/CMakeDetermineCompilerABI_C.bin | Bin 0 -> 16264 bytes .../3.17.3/CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 16272 bytes .../build/CMakeFiles/3.17.3/CMakeSystem.cmake | 15 + .../3.17.3/CompilerIdC/CMakeCCompilerId.c | 671 ++++++++++++++++++ .../build/CMakeFiles/3.17.3/CompilerIdC/a.out | Bin 0 -> 16424 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 660 +++++++++++++++++ .../CMakeFiles/3.17.3/CompilerIdCXX/a.out | Bin 0 -> 16432 bytes sycl/source/build/CMakeFiles/CMakeError.log | 50 ++ sycl/source/build/CMakeFiles/CMakeOutput.log | 387 ++++++++++ .../source/build/CMakeFiles/cmake.check_cache | 1 + sycl/source/build/version.rc | 26 + sycl/source/device_selector.cpp | 20 +- 16 files changed, 2369 insertions(+), 5 deletions(-) create mode 100644 sycl/source/build/.cmake/api/v1/query/client-vscode/query.json create mode 100644 sycl/source/build/CMakeCache.txt create mode 100644 sycl/source/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake create mode 100644 sycl/source/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake create mode 100755 sycl/source/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin create mode 100755 sycl/source/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin create mode 100644 sycl/source/build/CMakeFiles/3.17.3/CMakeSystem.cmake create mode 100644 sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c create mode 100755 sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/a.out create mode 100644 sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out create mode 100644 sycl/source/build/CMakeFiles/CMakeError.log create mode 100644 sycl/source/build/CMakeFiles/CMakeOutput.log create mode 100644 sycl/source/build/CMakeFiles/cmake.check_cache create mode 100644 sycl/source/build/version.rc diff --git a/sycl/source/build/.cmake/api/v1/query/client-vscode/query.json b/sycl/source/build/.cmake/api/v1/query/client-vscode/query.json new file mode 100644 index 0000000000000..82bb964246a19 --- /dev/null +++ b/sycl/source/build/.cmake/api/v1/query/client-vscode/query.json @@ -0,0 +1 @@ +{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]} \ No newline at end of file diff --git a/sycl/source/build/CMakeCache.txt b/sycl/source/build/CMakeCache.txt new file mode 100644 index 0000000000000..03d252fed9cf1 --- /dev/null +++ b/sycl/source/build/CMakeCache.txt @@ -0,0 +1,379 @@ +# This is the CMakeCache file. +# For build in directory: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build +# It was generated by CMake: /usr/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//For backwards compatibility, what version of CMake commands and +// syntax should this version of CMake try to support. +CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4 + +//No help, variable specified on the command line. +CMAKE_BUILD_TYPE:STRING=Debug + +//No help, variable specified on the command line. +CMAKE_CXX_COMPILER:FILEPATH=/iusers/lbushi/sycl_workspace/llvm/build/bin/clang++ + +//LLVM archiver +CMAKE_CXX_COMPILER_AR:FILEPATH=/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ar + +//Generate index for LLVM archive +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ranlib + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//No help, variable specified on the command line. +CMAKE_C_COMPILER:FILEPATH=/iusers/lbushi/sycl_workspace/llvm/build/bin/clang + +//LLVM archiver +CMAKE_C_COMPILER_AR:FILEPATH=/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ar + +//Generate index for LLVM archive +CMAKE_C_COMPILER_RANLIB:FILEPATH=/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ranlib + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-dlltool + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//No help, variable specified on the command line. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Program used to build from build.ninja files. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=Project + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Path to a program. +CMAKE_READELF:FILEPATH=/usr/bin/readelf + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Single output directory for building all executables. +EXECUTABLE_OUTPUT_PATH:PATH= + +//Single output directory for building all libraries. +LIBRARY_OUTPUT_PATH:PATH= + +//Value Computed by CMake +Project_BINARY_DIR:STATIC=/iusers/lbushi/sycl_workspace/llvm/sycl/source/build + +//Value Computed by CMake +Project_SOURCE_DIR:STATIC=/iusers/lbushi/sycl_workspace/llvm/sycl/source + +//Dependencies for the target +sycl_LIB_DEPENDS:STATIC=general;-Wl,--version-script=/iusers/lbushi/sycl_workspace/llvm/sycl/source/ld-version-script.txt;general;dl;general;-lpthread; + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/iusers/lbushi/sycl_workspace/llvm/sycl/source/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=17 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Test CMAKE_HAVE_LIBC_PTHREAD +CMAKE_HAVE_LIBC_PTHREAD:INTERNAL= +//Have library pthreads +CMAKE_HAVE_PTHREADS_CREATE:INTERNAL= +//Have library pthread +CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1 +//Have include pthread.h +CMAKE_HAVE_PTHREAD_H:INTERNAL=1 +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/iusers/lbushi/sycl_workspace/llvm/sycl/source +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.17 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding Threads +FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] + diff --git a/sycl/source/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake b/sycl/source/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake new file mode 100644 index 0000000000000..128a9e33e28c3 --- /dev/null +++ b/sycl/source/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake @@ -0,0 +1,76 @@ +set(CMAKE_C_COMPILER "/iusers/lbushi/sycl_workspace/llvm/build/bin/clang") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "Clang") +set(CMAKE_C_COMPILER_VERSION "16.0.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC ) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/export/iusers/lbushi/sycl_workspace/llvm/build/lib;/lib;/usr/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/sycl/source/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake b/sycl/source/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake new file mode 100644 index 0000000000000..7a26ef504b8d7 --- /dev/null +++ b/sycl/source/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake @@ -0,0 +1,88 @@ +set(CMAKE_CXX_COMPILER "/iusers/lbushi/sycl_workspace/llvm/build/bin/clang++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "Clang") +set(CMAKE_CXX_COMPILER_VERSION "16.0.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX ) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) + +foreach (lang C OBJC OBJCXX) + if (CMAKE_${lang}_COMPILER_ID_RUN) + foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) + list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) + endforeach() + endif() +endforeach() + +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/export/iusers/lbushi/sycl_workspace/llvm/build/lib;/lib;/usr/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/sycl/source/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin b/sycl/source/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..664580a70798bcd179f72022116532c82bddae5b GIT binary patch literal 16264 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 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if (defined(_MSC_VER) && !defined(__clang__)) \ + || (defined(__ibmxl__) || defined(__IBMC__)) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/a.out b/sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..68d072c0bcc206bf7618682586d87439fe2be9cd GIT binary patch literal 16424 zcmeHOe{3699e=iyChJ`zI1eRN|kZq0uO19Y{#skkBNUm=GHUO38qtg1VaT_uc#2 zzOyU#2SS>3U&;4<-|zc=zVF@V-r3K0?|nIun(+I4jKt55FtntQ!d>=}vDJgz6uv0C zmnm!y+s!tCrwcv`uR(2>NN4?a1?gT97XXd8RZ+j{SHMDBLB;Ol$EKzpqDEX(6j8MG z+n5-HGz-}_;<~XYY$nc+^n;=wq$#e^o`hf!N#Tn0S($ELA};{(ZSIXxl)pc`FUf0 zjGa6-!@GpTfT%?W*3k#;4=VRU;Pwu|`@tu5@H6OV8oM>hG!4sI#nQ``R?u@rHknF} z#kFC1Sbi947Ye1KsMR2o-CG~@68lMfRrloX!Mcx%wl*GBcnP`3IFef}{?_xRdQW={ zcno+9cno+9cno+9cno+9cno+9{JrmE|5lf;_p0Z*|2V{$`qfL8zkXF+zTCUc$-(-_ zUy`-gpHOSRQU#*Y8-{8X0;- z1~(qtfBJ9%`ogL^X4Kj{*Pg1^>#ugtg2y+v-qs$*|M_dpJ|N^u;x=})cIK8^t8QFL zTt`bi*Y)54o=f`Zt-e>fdIO2;wZwJwhC6zr?cQ_(k=>^xg*DMiTim(C^|^H-5c?PV zbn5)!7eB#R>{H3wuVORF+RfN>taf`wJwJE>+>fXBzmM1O+R&YPU0r)WVC{?ix^Lgp z*zHv9Z>idi@!B6^^_{;}m)Cvj!MCb^!s|Ob7yE2%F7`xBYvqt%Kfs~pd4!fXm(x(cUWPG@ID*~sa6Gi_;xnbE6xYc>*@b28z`tvzX$E4fl}Hq0e5D%*u{ zxKTj3Z*Sm{Flc;V|J+~e^%UqIgFXfNiyQU21$xVS_4)<0LH`EyPWYhso;tyNr$fHI zTY7r&9XY;7y$?Q7z~e&!Hr^9LALgG1A72vyWsDhz4}<(?QOAOzXZ`W5oBYd=$*wcN zy$JOt)=vaO-|#1c{a+6xg3|e}L~!7_?(tyw*-dINy4*7vREoi9EEtXj2gZWZSg?OA z7#a)q^8S1u;Lk%IY8%se;xXVc;4$Da;4$Da;4$Da;4$Da;4$!_V*uU-qg)m1t7(lY z=`Fk#4x)amu=}?wytG@`v`%`juxXw19$}w6qVN*_Z$qK_n|JCZw6FOURQ8&0&{F{g zO}@4ob+52DqX81N6|8HwrC;b>LX+wdg^L1D?c)DQ6j-dwh4Ao3miK2x#KX&IZu>+W z{0-#xSy3(1(PcjK>d212gm0qE(d+$|G`kFjD1K_ajSmE zfM+3>JNg5S@ze?mz{+zPM^1ltW4t;2n^>po9AG_+#)mV$m(e(L`eBsO{)Lu`0NdQy zx6$He0T|VEe>wedH;U`$^lxqK1919-?6r>ZeT?o`XMBj!ed_dYW1Yrb09M-5`gUjh z4#pIv)y2yJccaMj6xxal}{fp;mzrKBN0^5OqTxo z&Ve7#7nf9_@Mnyme+r)vjGrl2{_kMCe>0mBgGkE}8b7Lk&Wy*! z!}Fv8-P5#*6S1QSEpcpI)4+0I45p2L=2+}#GVZM5yM(|6`T2?O_ zd6Q|$;}B)!idwZ|8Z1}Llr(x5K#gGAcxp^D@>EwxjEr!-qnj6{XkS(@!ttNPr}nYJPtk#CHz!C0So^ZaMhUq+gAJe zKL!;zcPBi}_FuT!0u(Se;b~rYQQ+zS z2et1$|IdrO)K4aUANUI?sH6W`P~<{+$o>KpuwR6y-xn!lN8H5977^}-=M0ou@iZUp z-)@J{|3Ct`+g}!VI{(JJRk9J^B%sjl_RoPI+b4W;pQ{ZR5jaxr_P-4kt$3OTzb4s; zOSWnpiGOmu2nC!wip$lQFVj9)cRbmoe*oCN7Cg6Zzl49og{S#h zzrYJc@W%a5jyIuzxv2j%Pf-Ps+M#$s2bt_GD51~Y4&hfCk#>Rbt(wMOYv`LI;Z;FA q@-P4&>JRY(GpI)2Tk)%-wzb2RoZ6+>ZFj-H9JM3fr9h$G`2PR|;zEG{ literal 0 HcmV?d00001 diff --git a/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000000000..69cfdba6bc7bc --- /dev/null +++ b/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,660 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# elif defined(__ICCV850__) +# define ARCHITECTURE_ID "V850" + +# elif defined(__ICC8051__) +# define ARCHITECTURE_ID "8051" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L +# if defined(__INTEL_CXX11_MODE__) +# if defined(__cpp_aggregate_nsdmi) +# define CXX_STD 201402L +# else +# define CXX_STD 201103L +# endif +# else +# define CXX_STD 199711L +# endif +#elif defined(_MSC_VER) && defined(_MSVC_LANG) +# define CXX_STD _MSVC_LANG +#else +# define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out b/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..398e0be8c8788e50a84894dc458488a3b11c4757 GIT binary patch literal 16432 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 bK_Tt-WKQLh?xy##Ul|e_zb8eBUi*Iog$ha} literal 0 HcmV?d00001 diff --git a/sycl/source/build/CMakeFiles/CMakeError.log b/sycl/source/build/CMakeFiles/CMakeError.log new file mode 100644 index 0000000000000..146a9191bdab4 --- /dev/null +++ b/sycl/source/build/CMakeFiles/CMakeError.log @@ -0,0 +1,50 @@ +Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: +Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/ninja cmTC_15797 && [1/2] Building C object CMakeFiles/cmTC_15797.dir/src.c.o +[2/2] Linking C executable cmTC_15797 +FAILED: cmTC_15797 +: && /iusers/lbushi/sycl_workspace/llvm/build/bin/clang -DCMAKE_HAVE_LIBC_PTHREAD -rdynamic CMakeFiles/cmTC_15797.dir/src.c.o -o cmTC_15797 && : +/usr/bin/ld: CMakeFiles/cmTC_15797.dir/src.c.o: in function `main': +src.c:(.text+0x35): undefined reference to `pthread_create' +/usr/bin/ld: src.c:(.text+0x3e): undefined reference to `pthread_detach' +/usr/bin/ld: src.c:(.text+0x47): undefined reference to `pthread_cancel' +/usr/bin/ld: src.c:(.text+0x54): undefined reference to `pthread_join' +clang-16: error: linker command failed with exit code 1 (use -v to see invocation) +ninja: build stopped: subcommand failed. + + +Source file was: +#include + +void* test_func(void* data) +{ + return data; +} + +int main(void) +{ + pthread_t thread; + pthread_create(&thread, NULL, test_func, NULL); + pthread_detach(thread); + pthread_cancel(thread); + pthread_join(thread, NULL); + pthread_atfork(NULL, NULL, NULL); + pthread_exit(NULL); + + return 0; +} + +Determining if the function pthread_create exists in the pthreads failed with the following output: +Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/ninja cmTC_ff6c2 && [1/2] Building C object CMakeFiles/cmTC_ff6c2.dir/CheckFunctionExists.c.o +[2/2] Linking C executable cmTC_ff6c2 +FAILED: cmTC_ff6c2 +: && /iusers/lbushi/sycl_workspace/llvm/build/bin/clang -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_ff6c2.dir/CheckFunctionExists.c.o -o cmTC_ff6c2 -lpthreads && : +/usr/bin/ld: cannot find -lpthreads +clang-16: error: linker command failed with exit code 1 (use -v to see invocation) +ninja: build stopped: subcommand failed. + + + diff --git a/sycl/source/build/CMakeFiles/CMakeOutput.log b/sycl/source/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000000000..8224415d9f31c --- /dev/null +++ b/sycl/source/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,387 @@ +The system is: Linux - 5.8.18-vtune - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /iusers/lbushi/sycl_workspace/llvm/build/bin/clang +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is Clang, found in "/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /iusers/lbushi/sycl_workspace/llvm/build/bin/clang++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is Clang, found in "/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/ninja cmTC_a4485 && [1/2] Building C object CMakeFiles/cmTC_a4485.dir/testCCompiler.c.o +[2/2] Linking C executable cmTC_a4485 + + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/ninja cmTC_611bc && [1/2] Building C object CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o +clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81) +Target: x86_64-unknown-linux-gnu +Thread model: posix +InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 +Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 +Candidate multilib: .;@m64 +Candidate multilib: 32;@m32 +Candidate multilib: x32;@mx32 +Selected multilib: .;@m64 + (in-process) + "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -main-file-name CMakeCCompilerABI.c -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -resource-dir /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0 -internal-isystem /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdebug-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fgnuc-version=4.2.1 -no-opaque-pointers -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -x c /usr/share/cmake-3.17/Modules/CMakeCCompilerABI.c +clang -cc1 version 16.0.0 based upon LLVM 16.0.0git default target x86_64-unknown-linux-gnu +ignoring nonexistent directory "/usr/local/include" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" +ignoring nonexistent directory "/include" +#include "..." search starts here: +#include <...> search starts here: + /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +[2/2] Linking C executable cmTC_611bc +clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81) +Target: x86_64-unknown-linux-gnu +Thread model: posix +InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 +Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 +Candidate multilib: .;@m64 +Candidate multilib: 32;@m32 +Candidate multilib: x32;@mx32 +Selected multilib: .;@m64 + "/usr/bin/ld" -export-dynamic -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_611bc /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib -L/lib -L/usr/lib CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o /usr/lib/x86_64-linux-gnu/crtn.o + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] ==> [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include;/usr/include/x86_64-linux-gnu;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/ninja cmTC_611bc && [1/2] Building C object CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o] + ignore line: [clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81)] + ignore line: [Target: x86_64-unknown-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] + ignore line: [Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Candidate multilib: x32] + ignore line: [@mx32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + ignore line: [ (in-process)] + ignore line: [ "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -main-file-name CMakeCCompilerABI.c -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -resource-dir /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0 -internal-isystem /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdebug-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fgnuc-version=4.2.1 -no-opaque-pointers -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -x c /usr/share/cmake-3.17/Modules/CMakeCCompilerABI.c] + ignore line: [clang -cc1 version 16.0.0 based upon LLVM 16.0.0git default target x86_64-unknown-linux-gnu] + ignore line: [ignoring nonexistent directory "/usr/local/include"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] + ignore line: [ignoring nonexistent directory "/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [[2/2] Linking C executable cmTC_611bc] + ignore line: [clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81)] + ignore line: [Target: x86_64-unknown-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] + ignore line: [Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Candidate multilib: x32] + ignore line: [@mx32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + link line: [ "/usr/bin/ld" -export-dynamic -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_611bc /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib -L/lib -L/usr/lib CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o /usr/lib/x86_64-linux-gnu/crtn.o] + arg [/usr/bin/ld] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-zrelro] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-o] ==> ignore + arg [cmTC_611bc] ==> ignore + arg [/usr/lib/x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib64] ==> dir [/lib/../lib64] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] ==> dir [/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtend.o] ==> ignore + arg [/usr/lib/x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib64] ==> [/lib64] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] ==> [/export/iusers/lbushi/sycl_workspace/llvm/build/lib] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/export/iusers/lbushi/sycl_workspace/llvm/build/lib;/lib;/usr/lib] + implicit fwks: [] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/ninja cmTC_0e77e && [1/2] Building CXX object CMakeFiles/cmTC_0e77e.dir/testCXXCompiler.cxx.o +[2/2] Linking CXX executable cmTC_0e77e + + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/ninja cmTC_705fb && [1/2] Building CXX object CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o +clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81) +Target: x86_64-unknown-linux-gnu +Thread model: posix +InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 +Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 +Candidate multilib: .;@m64 +Candidate multilib: 32;@m32 +Candidate multilib: x32;@mx32 +Selected multilib: .;@m64 + (in-process) + "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -resource-dir /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward -internal-isystem /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -fdebug-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fgnuc-version=4.2.1 -no-opaque-pointers -fcxx-exceptions -fexceptions -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp +clang -cc1 version 16.0.0 based upon LLVM 16.0.0git default target x86_64-unknown-linux-gnu +ignoring nonexistent directory "/usr/local/include" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" +ignoring nonexistent directory "/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9 + /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9 + /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward + /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +[2/2] Linking CXX executable cmTC_705fb +clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81) +Target: x86_64-unknown-linux-gnu +Thread model: posix +InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8 +Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 +Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 +Candidate multilib: .;@m64 +Candidate multilib: 32;@m32 +Candidate multilib: x32;@mx32 +Selected multilib: .;@m64 + "/usr/bin/ld" -export-dynamic -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_705fb /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib -L/lib -L/usr/lib CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o /usr/lib/x86_64-linux-gnu/crtn.o + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9] + add: [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9] + add: [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward] + add: [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9] ==> [/usr/include/c++/9] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9] ==> [/usr/include/x86_64-linux-gnu/c++/9] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward] ==> [/usr/include/c++/9/backward] + collapse include dir [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] ==> [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include;/usr/include/x86_64-linux-gnu;/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/ninja cmTC_705fb && [1/2] Building CXX object CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81)] + ignore line: [Target: x86_64-unknown-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] + ignore line: [Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Candidate multilib: x32] + ignore line: [@mx32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + ignore line: [ (in-process)] + ignore line: [ "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -resource-dir /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward -internal-isystem /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -fdebug-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fgnuc-version=4.2.1 -no-opaque-pointers -fcxx-exceptions -fexceptions -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [clang -cc1 version 16.0.0 based upon LLVM 16.0.0git default target x86_64-unknown-linux-gnu] + ignore line: [ignoring nonexistent directory "/usr/local/include"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] + ignore line: [ignoring nonexistent directory "/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward] + ignore line: [ /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [[2/2] Linking CXX executable cmTC_705fb] + ignore line: [clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81)] + ignore line: [Target: x86_64-unknown-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8] + ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] + ignore line: [Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] + ignore line: [Candidate multilib: .] + ignore line: [@m64] + ignore line: [Candidate multilib: 32] + ignore line: [@m32] + ignore line: [Candidate multilib: x32] + ignore line: [@mx32] + ignore line: [Selected multilib: .] + ignore line: [@m64] + link line: [ "/usr/bin/ld" -export-dynamic -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_705fb /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib -L/lib -L/usr/lib CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o /usr/lib/x86_64-linux-gnu/crtn.o] + arg [/usr/bin/ld] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-zrelro] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-o] ==> ignore + arg [cmTC_705fb] ==> ignore + arg [/usr/lib/x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib64] ==> dir [/lib/../lib64] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] ==> dir [/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] + arg [-L/lib] ==> dir [/lib] + arg [-L/usr/lib] ==> dir [/usr/lib] + arg [CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtend.o] ==> ignore + arg [/usr/lib/x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib64] ==> [/lib64] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] ==> [/export/iusers/lbushi/sycl_workspace/llvm/build/lib] + collapse library dir [/lib] ==> [/lib] + collapse library dir [/usr/lib] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/export/iusers/lbushi/sycl_workspace/llvm/build/lib;/lib;/usr/lib] + implicit fwks: [] + + +Determining if the include file pthread.h exists passed with the following output: +Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/ninja cmTC_97c6d && [1/2] Building C object CMakeFiles/cmTC_97c6d.dir/CheckIncludeFile.c.o +[2/2] Linking C executable cmTC_97c6d + + + +Determining if the function pthread_create exists in the pthread passed with the following output: +Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/ninja cmTC_6584e && [1/2] Building C object CMakeFiles/cmTC_6584e.dir/CheckFunctionExists.c.o +[2/2] Linking C executable cmTC_6584e + + + diff --git a/sycl/source/build/CMakeFiles/cmake.check_cache b/sycl/source/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000000000..3dccd731726d7 --- /dev/null +++ b/sycl/source/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/sycl/source/build/version.rc b/sycl/source/build/version.rc new file mode 100644 index 0000000000000..da30120e22690 --- /dev/null +++ b/sycl/source/build/version.rc @@ -0,0 +1,26 @@ +#define VER_FILEVERSION ,,, +#define VER_FILEVERSION_STR "\0" + +#define VER_PRODUCTVERSION ,,0,0 +#define VER_PRODUCTVERSION_STR ".\0" + +1 VERSIONINFO +FILEVERSION VER_FILEVERSION +PRODUCTVERSION VER_PRODUCTVERSION +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904E4" + BEGIN + VALUE "FileVersion", VER_FILEVERSION_STR + VALUE "ProductVersion", VER_PRODUCTVERSION_STR + END + END + /* For some reason the ProductVersion would not appear unless I add */ + /* the following section: VarFileInfo */ + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0409, 1252 + END +END + diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index 8cd70a29f0e82..c694a7b5fbb60 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -79,10 +79,11 @@ device select_device(DSelectorInvocableType DeviceSelectorInvocable, std::vector &Devices) { int score = detail::REJECT_DEVICE_SCORE; const device *res = nullptr; - for (const auto &dev : Devices) { int dev_score = DeviceSelectorInvocable(dev); - + if (dev_score == detail::REJECT_DEVICE_SCORE && dev.get_info().find("ESIMD_EMULATOR") != std::string::npos && Devices.size() == 1) { + dev_score = 0; + } traceDeviceSelection(dev, dev_score, false); // A negative score means that a device must not be selected. @@ -142,9 +143,14 @@ select_device(const DSelectorInvocableType &DeviceSelectorInvocable, /// 3. Host /// 4. Accelerator __SYCL_EXPORT int default_selector_v(const device &dev) { - // The default selector doesn't reject any devices. + // The default selector doesn't reject any devices except for the case where an ESIMD emulator device is observed + // and it is not the only device available in which case the default selector does not choose it. + std::string deviceName = dev.get_info(); + if (deviceName.find("ESIMD") != std::string::npos) { + // Reject the ESIMD device + return -1; + } int Score = 0; - if (dev.get_info() == detail::get_forced_type()) Score += 2000; @@ -171,7 +177,11 @@ __SYCL_EXPORT int default_selector_v(const device &dev) { __SYCL_EXPORT int gpu_selector_v(const device &dev) { int Score = detail::REJECT_DEVICE_SCORE; - + std::string deviceName = dev.get_info(); + if (deviceName.find("ESIMD") != std::string::npos) { + // Reject the ESIMD device + return Score; + } if (dev.is_gpu()) { Score = 1000; Score += detail::getDevicePreference(dev); From 9fa6dc43da710f66f6c60879cd059b7e0206268d Mon Sep 17 00:00:00 2001 From: "lorenc.bushi" Date: Fri, 23 Sep 2022 14:18:46 -0700 Subject: [PATCH 02/18] Revert "Fix ESIMD_EMULATOR being picked up as default device" This reverts commit e188c01c9db53aeead7146a846923605362f6799. --- .../api/v1/query/client-vscode/query.json | 1 - sycl/source/build/CMakeCache.txt | 379 ---------- .../CMakeFiles/3.17.3/CMakeCCompiler.cmake | 76 -- .../CMakeFiles/3.17.3/CMakeCXXCompiler.cmake | 88 --- .../3.17.3/CMakeDetermineCompilerABI_C.bin | Bin 16264 -> 0 bytes .../3.17.3/CMakeDetermineCompilerABI_CXX.bin | Bin 16272 -> 0 bytes .../build/CMakeFiles/3.17.3/CMakeSystem.cmake | 15 - .../3.17.3/CompilerIdC/CMakeCCompilerId.c | 671 ------------------ .../build/CMakeFiles/3.17.3/CompilerIdC/a.out | Bin 16424 -> 0 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 660 ----------------- .../CMakeFiles/3.17.3/CompilerIdCXX/a.out | Bin 16432 -> 0 bytes sycl/source/build/CMakeFiles/CMakeError.log | 50 -- sycl/source/build/CMakeFiles/CMakeOutput.log | 387 ---------- .../source/build/CMakeFiles/cmake.check_cache | 1 - sycl/source/build/version.rc | 26 - sycl/source/device_selector.cpp | 20 +- 16 files changed, 5 insertions(+), 2369 deletions(-) delete mode 100644 sycl/source/build/.cmake/api/v1/query/client-vscode/query.json delete mode 100644 sycl/source/build/CMakeCache.txt delete mode 100644 sycl/source/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake delete mode 100644 sycl/source/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake delete mode 100755 sycl/source/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin delete mode 100755 sycl/source/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_CXX.bin delete mode 100644 sycl/source/build/CMakeFiles/3.17.3/CMakeSystem.cmake delete mode 100644 sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/CMakeCCompilerId.c delete mode 100755 sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/a.out delete mode 100644 sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp delete mode 100755 sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out delete mode 100644 sycl/source/build/CMakeFiles/CMakeError.log delete mode 100644 sycl/source/build/CMakeFiles/CMakeOutput.log delete mode 100644 sycl/source/build/CMakeFiles/cmake.check_cache delete mode 100644 sycl/source/build/version.rc diff --git a/sycl/source/build/.cmake/api/v1/query/client-vscode/query.json b/sycl/source/build/.cmake/api/v1/query/client-vscode/query.json deleted file mode 100644 index 82bb964246a19..0000000000000 --- a/sycl/source/build/.cmake/api/v1/query/client-vscode/query.json +++ /dev/null @@ -1 +0,0 @@ -{"requests":[{"kind":"cache","version":2},{"kind":"codemodel","version":2},{"kind":"toolchains","version":1},{"kind":"cmakeFiles","version":1}]} \ No newline at end of file diff --git a/sycl/source/build/CMakeCache.txt b/sycl/source/build/CMakeCache.txt deleted file mode 100644 index 03d252fed9cf1..0000000000000 --- a/sycl/source/build/CMakeCache.txt +++ /dev/null @@ -1,379 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build -# It was generated by CMake: /usr/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//For backwards compatibility, what version of CMake commands and -// syntax should this version of CMake try to support. -CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4 - -//No help, variable specified on the command line. -CMAKE_BUILD_TYPE:STRING=Debug - -//No help, variable specified on the command line. -CMAKE_CXX_COMPILER:FILEPATH=/iusers/lbushi/sycl_workspace/llvm/build/bin/clang++ - -//LLVM archiver -CMAKE_CXX_COMPILER_AR:FILEPATH=/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ar - -//Generate index for LLVM archive -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ranlib - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//No help, variable specified on the command line. -CMAKE_C_COMPILER:FILEPATH=/iusers/lbushi/sycl_workspace/llvm/build/bin/clang - -//LLVM archiver -CMAKE_C_COMPILER_AR:FILEPATH=/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ar - -//Generate index for LLVM archive -CMAKE_C_COMPILER_RANLIB:FILEPATH=/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ranlib - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-dlltool - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//No help, variable specified on the command line. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE - -//Install path prefix, prepended onto install directories. -CMAKE_INSTALL_PREFIX:PATH=/usr/local - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//Program used to build from build.ninja files. -CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/ninja - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=Project - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Single output directory for building all executables. -EXECUTABLE_OUTPUT_PATH:PATH= - -//Single output directory for building all libraries. -LIBRARY_OUTPUT_PATH:PATH= - -//Value Computed by CMake -Project_BINARY_DIR:STATIC=/iusers/lbushi/sycl_workspace/llvm/sycl/source/build - -//Value Computed by CMake -Project_SOURCE_DIR:STATIC=/iusers/lbushi/sycl_workspace/llvm/sycl/source - -//Dependencies for the target -sycl_LIB_DEPENDS:STATIC=general;-Wl,--version-script=/iusers/lbushi/sycl_workspace/llvm/sycl/source/ld-version-script.txt;general;dl;general;-lpthread; - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/iusers/lbushi/sycl_workspace/llvm/sycl/source/build -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=17 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=3 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/usr/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Ninja -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Test CMAKE_HAVE_LIBC_PTHREAD -CMAKE_HAVE_LIBC_PTHREAD:INTERNAL= -//Have library pthreads -CMAKE_HAVE_PTHREADS_CREATE:INTERNAL= -//Have library pthread -CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1 -//Have include pthread.h -CMAKE_HAVE_PTHREAD_H:INTERNAL=1 -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/iusers/lbushi/sycl_workspace/llvm/sycl/source -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MAKE_PROGRAM -CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.17 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//Details about finding Threads -FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] - diff --git a/sycl/source/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake b/sycl/source/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake deleted file mode 100644 index 128a9e33e28c3..0000000000000 --- a/sycl/source/build/CMakeFiles/3.17.3/CMakeCCompiler.cmake +++ /dev/null @@ -1,76 +0,0 @@ -set(CMAKE_C_COMPILER "/iusers/lbushi/sycl_workspace/llvm/build/bin/clang") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "Clang") -set(CMAKE_C_COMPILER_VERSION "16.0.0") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") - -set(CMAKE_C_PLATFORM_ID "Linux") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_C_SIMULATE_VERSION "") - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCC ) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) -set(CMAKE_COMPILER_IS_MINGW ) -set(CMAKE_COMPILER_IS_CYGWIN ) -if(CMAKE_COMPILER_IS_CYGWIN) - set(CYGWIN 1) - set(UNIX 1) -endif() - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -if(CMAKE_COMPILER_IS_MINGW) - set(MINGW 1) -endif() -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/export/iusers/lbushi/sycl_workspace/llvm/build/lib;/lib;/usr/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/sycl/source/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake b/sycl/source/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake deleted file mode 100644 index 7a26ef504b8d7..0000000000000 --- a/sycl/source/build/CMakeFiles/3.17.3/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,88 +0,0 @@ -set(CMAKE_CXX_COMPILER "/iusers/lbushi/sycl_workspace/llvm/build/bin/clang++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "Clang") -set(CMAKE_CXX_COMPILER_VERSION "16.0.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "GNU") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ar") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/llvm-ranlib") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCXX ) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) -set(CMAKE_COMPILER_IS_MINGW ) -set(CMAKE_COMPILER_IS_CYGWIN ) -if(CMAKE_COMPILER_IS_CYGWIN) - set(CYGWIN 1) - set(UNIX 1) -endif() - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -if(CMAKE_COMPILER_IS_MINGW) - set(MINGW 1) -endif() -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/9;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/export/iusers/lbushi/sycl_workspace/llvm/build/lib;/lib;/usr/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/sycl/source/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin b/sycl/source/build/CMakeFiles/3.17.3/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index 664580a70798bcd179f72022116532c82bddae5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16264 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 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) -# define COMPILER_ID "Fujitsu" - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -# define COMPILER_ID "ADSP" -#if defined(__VISUALDSPVERSION__) - /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXE) || defined(__CRAYXC) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number components. */ -#ifdef COMPILER_VERSION_MAJOR -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - - -#if !defined(__STDC__) -# if (defined(_MSC_VER) && !defined(__clang__)) \ - || (defined(__ibmxl__) || defined(__IBMC__)) -# define C_DIALECT "90" -# else -# define C_DIALECT -# endif -#elif __STDC_VERSION__ >= 201000L -# define C_DIALECT "11" -#elif __STDC_VERSION__ >= 199901L -# define C_DIALECT "99" -#else -# define C_DIALECT "90" -#endif -const char* info_language_dialect_default = - "INFO" ":" "dialect_default[" C_DIALECT "]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXE) || defined(__CRAYXC) - require += info_cray[argc]; -#endif - require += info_language_dialect_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/a.out b/sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/a.out deleted file mode 100755 index 68d072c0bcc206bf7618682586d87439fe2be9cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16424 zcmeHOe{3699e=iyChJ`zI1eRN|kZq0uO19Y{#skkBNUm=GHUO38qtg1VaT_uc#2 zzOyU#2SS>3U&;4<-|zc=zVF@V-r3K0?|nIun(+I4jKt55FtntQ!d>=}vDJgz6uv0C zmnm!y+s!tCrwcv`uR(2>NN4?a1?gT97XXd8RZ+j{SHMDBLB;Ol$EKzpqDEX(6j8MG z+n5-HGz-}_;<~XYY$nc+^n;=wq$#e^o`hf!N#Tn0S($ELA};{(ZSIXxl)pc`FUf0 zjGa6-!@GpTfT%?W*3k#;4=VRU;Pwu|`@tu5@H6OV8oM>hG!4sI#nQ``R?u@rHknF} z#kFC1Sbi947Ye1KsMR2o-CG~@68lMfRrloX!Mcx%wl*GBcnP`3IFef}{?_xRdQW={ zcno+9cno+9cno+9cno+9cno+9{JrmE|5lf;_p0Z*|2V{$`qfL8zkXF+zTCUc$-(-_ zUy`-gpHOSRQU#*Y8-{8X0;- z1~(qtfBJ9%`ogL^X4Kj{*Pg1^>#ugtg2y+v-qs$*|M_dpJ|N^u;x=})cIK8^t8QFL zTt`bi*Y)54o=f`Zt-e>fdIO2;wZwJwhC6zr?cQ_(k=>^xg*DMiTim(C^|^H-5c?PV zbn5)!7eB#R>{H3wuVORF+RfN>taf`wJwJE>+>fXBzmM1O+R&YPU0r)WVC{?ix^Lgp z*zHv9Z>idi@!B6^^_{;}m)Cvj!MCb^!s|Ob7yE2%F7`xBYvqt%Kfs~pd4!fXm(x(cUWPG@ID*~sa6Gi_;xnbE6xYc>*@b28z`tvzX$E4fl}Hq0e5D%*u{ zxKTj3Z*Sm{Flc;V|J+~e^%UqIgFXfNiyQU21$xVS_4)<0LH`EyPWYhso;tyNr$fHI zTY7r&9XY;7y$?Q7z~e&!Hr^9LALgG1A72vyWsDhz4}<(?QOAOzXZ`W5oBYd=$*wcN zy$JOt)=vaO-|#1c{a+6xg3|e}L~!7_?(tyw*-dINy4*7vREoi9EEtXj2gZWZSg?OA z7#a)q^8S1u;Lk%IY8%se;xXVc;4$Da;4$Da;4$Da;4$Da;4$!_V*uU-qg)m1t7(lY z=`Fk#4x)amu=}?wytG@`v`%`juxXw19$}w6qVN*_Z$qK_n|JCZw6FOURQ8&0&{F{g zO}@4ob+52DqX81N6|8HwrC;b>LX+wdg^L1D?c)DQ6j-dwh4Ao3miK2x#KX&IZu>+W z{0-#xSy3(1(PcjK>d212gm0qE(d+$|G`kFjD1K_ajSmE zfM+3>JNg5S@ze?mz{+zPM^1ltW4t;2n^>po9AG_+#)mV$m(e(L`eBsO{)Lu`0NdQy zx6$He0T|VEe>wedH;U`$^lxqK1919-?6r>ZeT?o`XMBj!ed_dYW1Yrb09M-5`gUjh z4#pIv)y2yJccaMj6xxal}{fp;mzrKBN0^5OqTxo z&Ve7#7nf9_@Mnyme+r)vjGrl2{_kMCe>0mBgGkE}8b7Lk&Wy*! z!}Fv8-P5#*6S1QSEpcpI)4+0I45p2L=2+}#GVZM5yM(|6`T2?O_ zd6Q|$;}B)!idwZ|8Z1}Llr(x5K#gGAcxp^D@>EwxjEr!-qnj6{XkS(@!ttNPr}nYJPtk#CHz!C0So^ZaMhUq+gAJe zKL!;zcPBi}_FuT!0u(Se;b~rYQQ+zS z2et1$|IdrO)K4aUANUI?sH6W`P~<{+$o>KpuwR6y-xn!lN8H5977^}-=M0ou@iZUp z-)@J{|3Ct`+g}!VI{(JJRk9J^B%sjl_RoPI+b4W;pQ{ZR5jaxr_P-4kt$3OTzb4s; zOSWnpiGOmu2nC!wip$lQFVj9)cRbmoe*oCN7Cg6Zzl49og{S#h zzrYJc@W%a5jyIuzxv2j%Pf-Ps+M#$s2bt_GD51~Y4&hfCk#>Rbt(wMOYv`LI;Z;FA q@-P4&>JRY(GpI)2Tk)%-wzb2RoZ6+>ZFj-H9JM3fr9h$G`2PR|;zEG{ diff --git a/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index 69cfdba6bc7bc..0000000000000 --- a/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,660 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__COMO__) -# define COMPILER_ID "Comeau" - /* __COMO_VERSION__ = VRR */ -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) - -#elif defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) -# define COMPILER_ID "Fujitsu" - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) -# define COMPILER_ID "ADSP" -#if defined(__VISUALDSPVERSION__) - /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ -# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) -# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXE) || defined(__CRAYXC) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number components. */ -#ifdef COMPILER_VERSION_MAJOR -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_dialect_default = "INFO" ":" "dialect_default[" -#if CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXE) || defined(__CRAYXC) - require += info_cray[argc]; -#endif - require += info_language_dialect_default[argc]; - (void)argv; - return require; -} diff --git a/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out b/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out deleted file mode 100755 index 398e0be8c8788e50a84894dc458488a3b11c4757..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16432 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 bK_Tt-WKQLh?xy##Ul|e_zb8eBUi*Iog$ha} diff --git a/sycl/source/build/CMakeFiles/CMakeError.log b/sycl/source/build/CMakeFiles/CMakeError.log deleted file mode 100644 index 146a9191bdab4..0000000000000 --- a/sycl/source/build/CMakeFiles/CMakeError.log +++ /dev/null @@ -1,50 +0,0 @@ -Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: -Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/ninja cmTC_15797 && [1/2] Building C object CMakeFiles/cmTC_15797.dir/src.c.o -[2/2] Linking C executable cmTC_15797 -FAILED: cmTC_15797 -: && /iusers/lbushi/sycl_workspace/llvm/build/bin/clang -DCMAKE_HAVE_LIBC_PTHREAD -rdynamic CMakeFiles/cmTC_15797.dir/src.c.o -o cmTC_15797 && : -/usr/bin/ld: CMakeFiles/cmTC_15797.dir/src.c.o: in function `main': -src.c:(.text+0x35): undefined reference to `pthread_create' -/usr/bin/ld: src.c:(.text+0x3e): undefined reference to `pthread_detach' -/usr/bin/ld: src.c:(.text+0x47): undefined reference to `pthread_cancel' -/usr/bin/ld: src.c:(.text+0x54): undefined reference to `pthread_join' -clang-16: error: linker command failed with exit code 1 (use -v to see invocation) -ninja: build stopped: subcommand failed. - - -Source file was: -#include - -void* test_func(void* data) -{ - return data; -} - -int main(void) -{ - pthread_t thread; - pthread_create(&thread, NULL, test_func, NULL); - pthread_detach(thread); - pthread_cancel(thread); - pthread_join(thread, NULL); - pthread_atfork(NULL, NULL, NULL); - pthread_exit(NULL); - - return 0; -} - -Determining if the function pthread_create exists in the pthreads failed with the following output: -Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/ninja cmTC_ff6c2 && [1/2] Building C object CMakeFiles/cmTC_ff6c2.dir/CheckFunctionExists.c.o -[2/2] Linking C executable cmTC_ff6c2 -FAILED: cmTC_ff6c2 -: && /iusers/lbushi/sycl_workspace/llvm/build/bin/clang -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_ff6c2.dir/CheckFunctionExists.c.o -o cmTC_ff6c2 -lpthreads && : -/usr/bin/ld: cannot find -lpthreads -clang-16: error: linker command failed with exit code 1 (use -v to see invocation) -ninja: build stopped: subcommand failed. - - - diff --git a/sycl/source/build/CMakeFiles/CMakeOutput.log b/sycl/source/build/CMakeFiles/CMakeOutput.log deleted file mode 100644 index 8224415d9f31c..0000000000000 --- a/sycl/source/build/CMakeFiles/CMakeOutput.log +++ /dev/null @@ -1,387 +0,0 @@ -The system is: Linux - 5.8.18-vtune - x86_64 -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /iusers/lbushi/sycl_workspace/llvm/build/bin/clang -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - -The C compiler identification is Clang, found in "/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/3.17.3/CompilerIdC/a.out" - -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /iusers/lbushi/sycl_workspace/llvm/build/bin/clang++ -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - -The CXX compiler identification is Clang, found in "/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/3.17.3/CompilerIdCXX/a.out" - -Determining if the C compiler works passed with the following output: -Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/ninja cmTC_a4485 && [1/2] Building C object CMakeFiles/cmTC_a4485.dir/testCCompiler.c.o -[2/2] Linking C executable cmTC_a4485 - - - -Detecting C compiler ABI info compiled with the following output: -Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/ninja cmTC_611bc && [1/2] Building C object CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81) -Target: x86_64-unknown-linux-gnu -Thread model: posix -InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 -Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 -Candidate multilib: .;@m64 -Candidate multilib: 32;@m32 -Candidate multilib: x32;@mx32 -Selected multilib: .;@m64 - (in-process) - "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -main-file-name CMakeCCompilerABI.c -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -resource-dir /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0 -internal-isystem /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdebug-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fgnuc-version=4.2.1 -no-opaque-pointers -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -x c /usr/share/cmake-3.17/Modules/CMakeCCompilerABI.c -clang -cc1 version 16.0.0 based upon LLVM 16.0.0git default target x86_64-unknown-linux-gnu -ignoring nonexistent directory "/usr/local/include" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" -ignoring nonexistent directory "/include" -#include "..." search starts here: -#include <...> search starts here: - /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -[2/2] Linking C executable cmTC_611bc -clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81) -Target: x86_64-unknown-linux-gnu -Thread model: posix -InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 -Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 -Candidate multilib: .;@m64 -Candidate multilib: 32;@m32 -Candidate multilib: x32;@mx32 -Selected multilib: .;@m64 - "/usr/bin/ld" -export-dynamic -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_611bc /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib -L/lib -L/usr/lib CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o /usr/lib/x86_64-linux-gnu/crtn.o - - - -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] ==> [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include;/usr/include/x86_64-linux-gnu;/usr/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/ninja cmTC_611bc && [1/2] Building C object CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o] - ignore line: [clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81)] - ignore line: [Target: x86_64-unknown-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] - ignore line: [Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] - ignore line: [Candidate multilib: .] - ignore line: [@m64] - ignore line: [Candidate multilib: 32] - ignore line: [@m32] - ignore line: [Candidate multilib: x32] - ignore line: [@mx32] - ignore line: [Selected multilib: .] - ignore line: [@m64] - ignore line: [ (in-process)] - ignore line: [ "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -main-file-name CMakeCCompilerABI.c -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -resource-dir /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0 -internal-isystem /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdebug-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fgnuc-version=4.2.1 -no-opaque-pointers -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -x c /usr/share/cmake-3.17/Modules/CMakeCCompilerABI.c] - ignore line: [clang -cc1 version 16.0.0 based upon LLVM 16.0.0git default target x86_64-unknown-linux-gnu] - ignore line: [ignoring nonexistent directory "/usr/local/include"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] - ignore line: [ignoring nonexistent directory "/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [[2/2] Linking C executable cmTC_611bc] - ignore line: [clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81)] - ignore line: [Target: x86_64-unknown-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] - ignore line: [Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] - ignore line: [Candidate multilib: .] - ignore line: [@m64] - ignore line: [Candidate multilib: 32] - ignore line: [@m32] - ignore line: [Candidate multilib: x32] - ignore line: [@mx32] - ignore line: [Selected multilib: .] - ignore line: [@m64] - link line: [ "/usr/bin/ld" -export-dynamic -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_611bc /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib -L/lib -L/usr/lib CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o /usr/lib/x86_64-linux-gnu/crtn.o] - arg [/usr/bin/ld] ==> ignore - arg [-export-dynamic] ==> ignore - arg [-zrelro] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-export-dynamic] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-o] ==> ignore - arg [cmTC_611bc] ==> ignore - arg [/usr/lib/x86_64-linux-gnu/crt1.o] ==> ignore - arg [/usr/lib/x86_64-linux-gnu/crti.o] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o] ==> ignore - arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib64] ==> dir [/lib/../lib64] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] ==> dir [/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] - arg [-L/lib] ==> dir [/lib] - arg [-L/usr/lib] ==> dir [/usr/lib] - arg [CMakeFiles/cmTC_611bc.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--no-as-needed] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--no-as-needed] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtend.o] ==> ignore - arg [/usr/lib/x86_64-linux-gnu/crtn.o] ==> ignore - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib64] ==> [/lib64] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] ==> [/export/iusers/lbushi/sycl_workspace/llvm/build/lib] - collapse library dir [/lib] ==> [/lib] - collapse library dir [/usr/lib] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/export/iusers/lbushi/sycl_workspace/llvm/build/lib;/lib;/usr/lib] - implicit fwks: [] - - -Determining if the CXX compiler works passed with the following output: -Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/ninja cmTC_0e77e && [1/2] Building CXX object CMakeFiles/cmTC_0e77e.dir/testCXXCompiler.cxx.o -[2/2] Linking CXX executable cmTC_0e77e - - - -Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/ninja cmTC_705fb && [1/2] Building CXX object CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81) -Target: x86_64-unknown-linux-gnu -Thread model: posix -InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 -Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 -Candidate multilib: .;@m64 -Candidate multilib: 32;@m32 -Candidate multilib: x32;@mx32 -Selected multilib: .;@m64 - (in-process) - "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -resource-dir /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward -internal-isystem /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -fdebug-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fgnuc-version=4.2.1 -no-opaque-pointers -fcxx-exceptions -fexceptions -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp -clang -cc1 version 16.0.0 based upon LLVM 16.0.0git default target x86_64-unknown-linux-gnu -ignoring nonexistent directory "/usr/local/include" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include" -ignoring nonexistent directory "/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9 - /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9 - /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward - /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -[2/2] Linking CXX executable cmTC_705fb -clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81) -Target: x86_64-unknown-linux-gnu -Thread model: posix -InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8 -Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 -Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9 -Candidate multilib: .;@m64 -Candidate multilib: 32;@m32 -Candidate multilib: x32;@mx32 -Selected multilib: .;@m64 - "/usr/bin/ld" -export-dynamic -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_705fb /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib -L/lib -L/usr/lib CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o /usr/lib/x86_64-linux-gnu/crtn.o - - - -Parsed CXX implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9] - add: [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9] - add: [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward] - add: [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9] ==> [/usr/include/c++/9] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9] ==> [/usr/include/x86_64-linux-gnu/c++/9] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward] ==> [/usr/include/c++/9/backward] - collapse include dir [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] ==> [/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/include/c++/9;/usr/include/x86_64-linux-gnu/c++/9;/usr/include/c++/9/backward;/export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include;/usr/include/x86_64-linux-gnu;/usr/include] - - -Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp] - ignore line: [] - ignore line: [Run Build Command(s):/usr/bin/ninja cmTC_705fb && [1/2] Building CXX object CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81)] - ignore line: [Target: x86_64-unknown-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] - ignore line: [Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] - ignore line: [Candidate multilib: .] - ignore line: [@m64] - ignore line: [Candidate multilib: 32] - ignore line: [@m32] - ignore line: [Candidate multilib: x32] - ignore line: [@mx32] - ignore line: [Selected multilib: .] - ignore line: [@m64] - ignore line: [ (in-process)] - ignore line: [ "/export/iusers/lbushi/sycl_workspace/llvm/build/bin/clang-16" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all --mrelax-relocations -disable-free -clear-ast-before-backend -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model static -mframe-pointer=all -fmath-errno -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=2 -target-cpu x86-64 -tune-cpu generic -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -fcoverage-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -resource-dir /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9 -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward -internal-isystem /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include -internal-isystem /usr/local/include -internal-isystem /usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -fdebug-compilation-dir=/export/iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fgnuc-version=4.2.1 -no-opaque-pointers -fcxx-exceptions -fexceptions -faddrsig -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -x c++ /usr/share/cmake-3.17/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [clang -cc1 version 16.0.0 based upon LLVM 16.0.0git default target x86_64-unknown-linux-gnu] - ignore line: [ignoring nonexistent directory "/usr/local/include"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/9/../../../../x86_64-linux-gnu/include"] - ignore line: [ignoring nonexistent directory "/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/x86_64-linux-gnu/c++/9] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/9/../../../../include/c++/9/backward] - ignore line: [ /export/iusers/lbushi/sycl_workspace/llvm/build/lib/clang/16.0.0/include] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [[2/2] Linking CXX executable cmTC_705fb] - ignore line: [clang version 16.0.0 (https://github.com/lbushi25/llvm.git 2cefad19dfb7bdfd0ec4db81f4d37a46d3966c81)] - ignore line: [Target: x86_64-unknown-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [InstalledDir: /iusers/lbushi/sycl_workspace/llvm/build/bin] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.5.0] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8] - ignore line: [Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] - ignore line: [Selected GCC installation: /usr/lib/gcc/x86_64-linux-gnu/9] - ignore line: [Candidate multilib: .] - ignore line: [@m64] - ignore line: [Candidate multilib: 32] - ignore line: [@m32] - ignore line: [Candidate multilib: x32] - ignore line: [@mx32] - ignore line: [Selected multilib: .] - ignore line: [@m64] - link line: [ "/usr/bin/ld" -export-dynamic -z relro --hash-style=gnu --eh-frame-hdr -m elf_x86_64 -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o cmTC_705fb /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/9 -L/lib/x86_64-linux-gnu -L/lib/../lib64 -L/usr/lib/x86_64-linux-gnu -L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib -L/lib -L/usr/lib CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/9/crtend.o /usr/lib/x86_64-linux-gnu/crtn.o] - arg [/usr/bin/ld] ==> ignore - arg [-export-dynamic] ==> ignore - arg [-zrelro] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [-export-dynamic] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-o] ==> ignore - arg [cmTC_705fb] ==> ignore - arg [/usr/lib/x86_64-linux-gnu/crt1.o] ==> ignore - arg [/usr/lib/x86_64-linux-gnu/crti.o] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtbegin.o] ==> ignore - arg [-L/usr/lib/gcc/x86_64-linux-gnu/9] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/9] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib64] ==> dir [/lib/../lib64] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] ==> dir [/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] - arg [-L/lib] ==> dir [/lib] - arg [-L/usr/lib] ==> dir [/usr/lib] - arg [CMakeFiles/cmTC_705fb.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-linux-gnu/9/crtend.o] ==> ignore - arg [/usr/lib/x86_64-linux-gnu/crtn.o] ==> ignore - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/9] ==> [/usr/lib/gcc/x86_64-linux-gnu/9] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib64] ==> [/lib64] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/export/iusers/lbushi/sycl_workspace/llvm/build/bin/../lib] ==> [/export/iusers/lbushi/sycl_workspace/llvm/build/lib] - collapse library dir [/lib] ==> [/lib] - collapse library dir [/usr/lib] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/9;/lib/x86_64-linux-gnu;/lib64;/usr/lib/x86_64-linux-gnu;/export/iusers/lbushi/sycl_workspace/llvm/build/lib;/lib;/usr/lib] - implicit fwks: [] - - -Determining if the include file pthread.h exists passed with the following output: -Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/ninja cmTC_97c6d && [1/2] Building C object CMakeFiles/cmTC_97c6d.dir/CheckIncludeFile.c.o -[2/2] Linking C executable cmTC_97c6d - - - -Determining if the function pthread_create exists in the pthread passed with the following output: -Change Dir: /iusers/lbushi/sycl_workspace/llvm/sycl/source/build/CMakeFiles/CMakeTmp - -Run Build Command(s):/usr/bin/ninja cmTC_6584e && [1/2] Building C object CMakeFiles/cmTC_6584e.dir/CheckFunctionExists.c.o -[2/2] Linking C executable cmTC_6584e - - - diff --git a/sycl/source/build/CMakeFiles/cmake.check_cache b/sycl/source/build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd731726d7..0000000000000 --- a/sycl/source/build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/sycl/source/build/version.rc b/sycl/source/build/version.rc deleted file mode 100644 index da30120e22690..0000000000000 --- a/sycl/source/build/version.rc +++ /dev/null @@ -1,26 +0,0 @@ -#define VER_FILEVERSION ,,, -#define VER_FILEVERSION_STR "\0" - -#define VER_PRODUCTVERSION ,,0,0 -#define VER_PRODUCTVERSION_STR ".\0" - -1 VERSIONINFO -FILEVERSION VER_FILEVERSION -PRODUCTVERSION VER_PRODUCTVERSION -BEGIN - BLOCK "StringFileInfo" - BEGIN - BLOCK "040904E4" - BEGIN - VALUE "FileVersion", VER_FILEVERSION_STR - VALUE "ProductVersion", VER_PRODUCTVERSION_STR - END - END - /* For some reason the ProductVersion would not appear unless I add */ - /* the following section: VarFileInfo */ - BLOCK "VarFileInfo" - BEGIN - VALUE "Translation", 0x0409, 1252 - END -END - diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index c694a7b5fbb60..8cd70a29f0e82 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -79,11 +79,10 @@ device select_device(DSelectorInvocableType DeviceSelectorInvocable, std::vector &Devices) { int score = detail::REJECT_DEVICE_SCORE; const device *res = nullptr; + for (const auto &dev : Devices) { int dev_score = DeviceSelectorInvocable(dev); - if (dev_score == detail::REJECT_DEVICE_SCORE && dev.get_info().find("ESIMD_EMULATOR") != std::string::npos && Devices.size() == 1) { - dev_score = 0; - } + traceDeviceSelection(dev, dev_score, false); // A negative score means that a device must not be selected. @@ -143,14 +142,9 @@ select_device(const DSelectorInvocableType &DeviceSelectorInvocable, /// 3. Host /// 4. Accelerator __SYCL_EXPORT int default_selector_v(const device &dev) { - // The default selector doesn't reject any devices except for the case where an ESIMD emulator device is observed - // and it is not the only device available in which case the default selector does not choose it. - std::string deviceName = dev.get_info(); - if (deviceName.find("ESIMD") != std::string::npos) { - // Reject the ESIMD device - return -1; - } + // The default selector doesn't reject any devices. int Score = 0; + if (dev.get_info() == detail::get_forced_type()) Score += 2000; @@ -177,11 +171,7 @@ __SYCL_EXPORT int default_selector_v(const device &dev) { __SYCL_EXPORT int gpu_selector_v(const device &dev) { int Score = detail::REJECT_DEVICE_SCORE; - std::string deviceName = dev.get_info(); - if (deviceName.find("ESIMD") != std::string::npos) { - // Reject the ESIMD device - return Score; - } + if (dev.is_gpu()) { Score = 1000; Score += detail::getDevicePreference(dev); From 3b8fccf0f2f84c988319d5d5f03cd3dd65419489 Mon Sep 17 00:00:00 2001 From: "lorenc.bushi" Date: Fri, 23 Sep 2022 14:27:42 -0700 Subject: [PATCH 03/18] Fix ESIMD_EMULATOR being picked up as default device --- sycl/source/device_selector.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index 8cd70a29f0e82..39ccb720558e7 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -82,7 +82,9 @@ device select_device(DSelectorInvocableType DeviceSelectorInvocable, for (const auto &dev : Devices) { int dev_score = DeviceSelectorInvocable(dev); - + if (dev_score < 0 && dev.get_info().find("ESIMD_EMULATOR") != std::string::npos && Devices.size() == 1) { + dev_score = 0; + } traceDeviceSelection(dev, dev_score, false); // A negative score means that a device must not be selected. @@ -144,7 +146,9 @@ select_device(const DSelectorInvocableType &DeviceSelectorInvocable, __SYCL_EXPORT int default_selector_v(const device &dev) { // The default selector doesn't reject any devices. int Score = 0; - + if (dev.get_info().find("ESIMD_EMULATOR") != std::string::npos) { + return -1; + } if (dev.get_info() == detail::get_forced_type()) Score += 2000; @@ -171,7 +175,9 @@ __SYCL_EXPORT int default_selector_v(const device &dev) { __SYCL_EXPORT int gpu_selector_v(const device &dev) { int Score = detail::REJECT_DEVICE_SCORE; - + if (dev.get_info().find("ESIMD_EMULATOR") != std::string::npos) { + return -1; + } if (dev.is_gpu()) { Score = 1000; Score += detail::getDevicePreference(dev); From 3d6df0a5dc89d3e1b9ae8e5b18ea10788073426f Mon Sep 17 00:00:00 2001 From: "lorenc.bushi" Date: Wed, 28 Sep 2022 11:01:29 -0700 Subject: [PATCH 04/18] Simplify the selection logic for ESIMD_EMULATOR --- sycl/source/device_selector.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index 39ccb720558e7..9c7604153676c 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -82,9 +82,6 @@ device select_device(DSelectorInvocableType DeviceSelectorInvocable, for (const auto &dev : Devices) { int dev_score = DeviceSelectorInvocable(dev); - if (dev_score < 0 && dev.get_info().find("ESIMD_EMULATOR") != std::string::npos && Devices.size() == 1) { - dev_score = 0; - } traceDeviceSelection(dev, dev_score, false); // A negative score means that a device must not be selected. @@ -146,8 +143,8 @@ select_device(const DSelectorInvocableType &DeviceSelectorInvocable, __SYCL_EXPORT int default_selector_v(const device &dev) { // The default selector doesn't reject any devices. int Score = 0; - if (dev.get_info().find("ESIMD_EMULATOR") != std::string::npos) { - return -1; + if (dev.get_backend() == backend::ext_intel_esimd_emulator) { + return 0; } if (dev.get_info() == detail::get_forced_type()) Score += 2000; @@ -176,7 +173,7 @@ __SYCL_EXPORT int default_selector_v(const device &dev) { __SYCL_EXPORT int gpu_selector_v(const device &dev) { int Score = detail::REJECT_DEVICE_SCORE; if (dev.get_info().find("ESIMD_EMULATOR") != std::string::npos) { - return -1; + return 0; } if (dev.is_gpu()) { Score = 1000; From 27b9f8f881be430f4d38632ce849e646d0268924 Mon Sep 17 00:00:00 2001 From: "lorenc.bushi" Date: Wed, 28 Sep 2022 11:06:27 -0700 Subject: [PATCH 05/18] Simplify the selection logic for ESIMD_EMULATOR --- sycl/source/device_selector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index 9c7604153676c..714bb42da9225 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -172,7 +172,7 @@ __SYCL_EXPORT int default_selector_v(const device &dev) { __SYCL_EXPORT int gpu_selector_v(const device &dev) { int Score = detail::REJECT_DEVICE_SCORE; - if (dev.get_info().find("ESIMD_EMULATOR") != std::string::npos) { + if (dev.get_backend() == backend::ext_intel_esimd_emulator) { return 0; } if (dev.is_gpu()) { From b67d9e11861a0c341675a8373c907d9e73fc4234 Mon Sep 17 00:00:00 2001 From: "lorenc.bushi" Date: Fri, 30 Sep 2022 14:27:56 -0700 Subject: [PATCH 06/18] Extend filter_selector to recognize esimd_emulator device --- sycl/source/detail/filter_selector_impl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sycl/source/detail/filter_selector_impl.cpp b/sycl/source/detail/filter_selector_impl.cpp index eb7e5c3fbca5c..6bb800dc9258c 100644 --- a/sycl/source/detail/filter_selector_impl.cpp +++ b/sycl/source/detail/filter_selector_impl.cpp @@ -83,6 +83,9 @@ filter create_filter(const std::string &Input) { } else if (Token == "hip" && !Result.HasBackend) { Result.Backend = backend::ext_oneapi_hip; Result.HasBackend = true; + } else if (Token == "esimd_emulator" && !Result.HasBackend) { + Result.Backend = backend::ext_intel_esimd_emulator; + Result.HasBackend = true; } else if (Token == "host") { if (!Result.HasBackend) { Result.Backend = backend::host; From 2a05b261f2b3a98969fd2806630fe7ff12b5df2e Mon Sep 17 00:00:00 2001 From: "lorenc.bushi" Date: Fri, 30 Sep 2022 17:14:46 -0700 Subject: [PATCH 07/18] Run clang-format --- sycl/source/device_selector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index d1a16529eea29..3d888d75c8529 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -167,7 +167,7 @@ static void traceDeviceSelector(const std::string &DeviceType) { __SYCL_EXPORT int default_selector_v(const device &dev) { // The default selector doesn't reject any devices. int Score = 0; - + if (dev.get_backend() == backend::ext_intel_esimd_emulator) { return 0; } From f9c0185167b57356ac50f5b49e89dc01f0a88717 Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Mon, 3 Oct 2022 08:45:20 -0700 Subject: [PATCH 08/18] Do not load ESIMD_EMULATOR plugin by default --- sycl/source/detail/pi.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/sycl/source/detail/pi.cpp b/sycl/source/detail/pi.cpp index f81b20bb9d92d..40e47d35e3a48 100644 --- a/sycl/source/detail/pi.cpp +++ b/sycl/source/detail/pi.cpp @@ -283,8 +283,6 @@ std::vector> findPlugins() { backend::ext_oneapi_level_zero); PluginNames.emplace_back(__SYCL_CUDA_PLUGIN_NAME, backend::ext_oneapi_cuda); PluginNames.emplace_back(__SYCL_HIP_PLUGIN_NAME, backend::ext_oneapi_hip); - PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, - backend::ext_intel_esimd_emulator); } else { std::vector Filters = FilterList->get(); bool OpenCLFound = false; From 73933959add90dfc39022cf47ec95066ad8e1762 Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Mon, 3 Oct 2022 13:54:21 -0700 Subject: [PATCH 09/18] Check if esimd_emulator appears in filter before loading plugin --- sycl/source/detail/pi.cpp | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/sycl/source/detail/pi.cpp b/sycl/source/detail/pi.cpp index 40e47d35e3a48..6aaaf5f9ef815 100644 --- a/sycl/source/detail/pi.cpp +++ b/sycl/source/detail/pi.cpp @@ -310,10 +310,14 @@ std::vector> findPlugins() { CudaFound = true; } if (!EsimdCpuFound && (Backend == backend::ext_intel_esimd_emulator || - Backend == backend::all)) { - PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, - backend::ext_intel_esimd_emulator); - EsimdCpuFound = true; + Backend == backend::all)) { + std::string env = std::string(std::getenv("SYCL_DEVICE_FILTER")); + std::transform(env.begin(), env.end(), env.begin(), ::tolower); + if (env.find("esimd_emulator") != std::string::npos) { + PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, + backend::ext_intel_esimd_emulator); + EsimdCpuFound = true; + } } if (!HIPFound && (Backend == backend::ext_oneapi_hip || Backend == backend::all)) { From 3e3c4b0ac0a8c45eb9d740c30938916ca98c7f25 Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Mon, 3 Oct 2022 13:59:21 -0700 Subject: [PATCH 10/18] Check if esimd_emulator appears in filter before loading plugin --- sycl/source/detail/pi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/source/detail/pi.cpp b/sycl/source/detail/pi.cpp index 6aaaf5f9ef815..ea17fba5935d6 100644 --- a/sycl/source/detail/pi.cpp +++ b/sycl/source/detail/pi.cpp @@ -310,7 +310,7 @@ std::vector> findPlugins() { CudaFound = true; } if (!EsimdCpuFound && (Backend == backend::ext_intel_esimd_emulator || - Backend == backend::all)) { + Backend == backend::all)) { std::string env = std::string(std::getenv("SYCL_DEVICE_FILTER")); std::transform(env.begin(), env.end(), env.begin(), ::tolower); if (env.find("esimd_emulator") != std::string::npos) { From 53c4ee3290e47f7f043db444faf618d33e03e406 Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Tue, 4 Oct 2022 09:29:12 -0700 Subject: [PATCH 11/18] Update pi.cpp --- sycl/source/detail/pi.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/sycl/source/detail/pi.cpp b/sycl/source/detail/pi.cpp index ea17fba5935d6..f3c58dbe1e2ec 100644 --- a/sycl/source/detail/pi.cpp +++ b/sycl/source/detail/pi.cpp @@ -309,16 +309,11 @@ std::vector> findPlugins() { backend::ext_oneapi_cuda); CudaFound = true; } - if (!EsimdCpuFound && (Backend == backend::ext_intel_esimd_emulator || - Backend == backend::all)) { - std::string env = std::string(std::getenv("SYCL_DEVICE_FILTER")); - std::transform(env.begin(), env.end(), env.begin(), ::tolower); - if (env.find("esimd_emulator") != std::string::npos) { + if (!EsimdCpuFound && Backend == backend::ext_intel_esimd_emulator) { PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, - backend::ext_intel_esimd_emulator); + backend::ext_intel_esimd_emulator); EsimdCpuFound = true; } - } if (!HIPFound && (Backend == backend::ext_oneapi_hip || Backend == backend::all)) { PluginNames.emplace_back(__SYCL_HIP_PLUGIN_NAME, From 05e8e6c5c5b2c77839c0e5f9ef0d8aea22f3fd7a Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Tue, 4 Oct 2022 09:55:18 -0700 Subject: [PATCH 12/18] Document changes --- sycl/source/detail/pi.cpp | 2 ++ sycl/source/device_selector.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sycl/source/detail/pi.cpp b/sycl/source/detail/pi.cpp index f3c58dbe1e2ec..254a2df3c4b43 100644 --- a/sycl/source/detail/pi.cpp +++ b/sycl/source/detail/pi.cpp @@ -310,6 +310,8 @@ std::vector> findPlugins() { CudaFound = true; } if (!EsimdCpuFound && Backend == backend::ext_intel_esimd_emulator) { + // for ESIMD_EMULATOR device we require the backend to be set explicitly to ext_intel_esimd_emulator and not just backend:all + // and the if statement condition above reflects this PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, backend::ext_intel_esimd_emulator); EsimdCpuFound = true; diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index 8af867f2a0444..6f648735557df 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -171,6 +171,8 @@ __SYCL_EXPORT int default_selector_v(const device &dev) { // The default selector doesn't reject any devices. int Score = 0; + // we give the esimd_emulator device a score of zero to prevent it from being chosen among other devices. + // The same thing is done for gpu_selector_v below. if (dev.get_backend() == backend::ext_intel_esimd_emulator) { return 0; } From 3d33e39b4a44ab1c49028430fc10f00e19a7c860 Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Tue, 4 Oct 2022 12:01:03 -0700 Subject: [PATCH 13/18] Fix formatting --- sycl/source/detail/pi.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sycl/source/detail/pi.cpp b/sycl/source/detail/pi.cpp index 254a2df3c4b43..591a2e4d6a53f 100644 --- a/sycl/source/detail/pi.cpp +++ b/sycl/source/detail/pi.cpp @@ -312,10 +312,10 @@ std::vector> findPlugins() { if (!EsimdCpuFound && Backend == backend::ext_intel_esimd_emulator) { // for ESIMD_EMULATOR device we require the backend to be set explicitly to ext_intel_esimd_emulator and not just backend:all // and the if statement condition above reflects this - PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, - backend::ext_intel_esimd_emulator); - EsimdCpuFound = true; - } + PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, + backend::ext_intel_esimd_emulator); + EsimdCpuFound = true; + } if (!HIPFound && (Backend == backend::ext_oneapi_hip || Backend == backend::all)) { PluginNames.emplace_back(__SYCL_HIP_PLUGIN_NAME, From bfb3956ab8b1ea7b145f0393cb446b29207a767c Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Wed, 5 Oct 2022 07:27:45 -0700 Subject: [PATCH 14/18] Formatting updates --- sycl/source/detail/filter_selector_impl.cpp | 10 ---------- sycl/source/device_selector.cpp | 1 + 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/sycl/source/detail/filter_selector_impl.cpp b/sycl/source/detail/filter_selector_impl.cpp index f920b9c2c99f0..d88d49d9e3b78 100644 --- a/sycl/source/detail/filter_selector_impl.cpp +++ b/sycl/source/detail/filter_selector_impl.cpp @@ -86,16 +86,6 @@ filter create_filter(const std::string &Input) { } else if (Token == "esimd_emulator" && !Result.HasBackend) { Result.Backend = backend::ext_intel_esimd_emulator; Result.HasBackend = true; - } else if (Token == "host") { - if (!Result.HasBackend) { - Result.Backend = backend::host; - Result.HasBackend = true; - } else if (!Result.HasDeviceType && Result.Backend != backend::host) { - // We already set everything earlier or it's an error. - throw sycl::runtime_error( - "Cannot specify host device with non-host backend.", - PI_ERROR_INVALID_VALUE); - } } else if (std::regex_match(Token, IntegerExpr) && !Result.HasDeviceNum) { try { Result.DeviceNum = std::stoi(Token); diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index 6f648735557df..c83278c922c18 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -78,6 +78,7 @@ device select_device(DSelectorInvocableType DeviceSelectorInvocable, for (const auto &dev : Devices) { int dev_score = DeviceSelectorInvocable(dev); + traceDeviceSelection(dev, dev_score, false); // A negative score means that a device must not be selected. From 79efa48f686bbaa95e5671f53d70dfa3a229dac0 Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Wed, 5 Oct 2022 07:43:53 -0700 Subject: [PATCH 15/18] Formatting --- sycl/source/device_selector.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sycl/source/device_selector.cpp b/sycl/source/device_selector.cpp index c83278c922c18..414c0ecb732af 100644 --- a/sycl/source/device_selector.cpp +++ b/sycl/source/device_selector.cpp @@ -164,7 +164,8 @@ static void traceDeviceSelector(const std::string &DeviceType) { bool ShouldTrace = false; ShouldTrace = detail::pi::trace(detail::pi::TraceLevel::PI_TRACE_BASIC); if (ShouldTrace) { - std::cout << "SYCL_PI_TRACE[all]: Requested device_type: " << DeviceType << std::endl; + std::cout << "SYCL_PI_TRACE[all]: Requested device_type: " << DeviceType + << std::endl; } } @@ -172,8 +173,9 @@ __SYCL_EXPORT int default_selector_v(const device &dev) { // The default selector doesn't reject any devices. int Score = 0; - // we give the esimd_emulator device a score of zero to prevent it from being chosen among other devices. - // The same thing is done for gpu_selector_v below. + // we give the esimd_emulator device a score of zero to prevent it from being + // chosen among other devices. The same thing is done for gpu_selector_v + // below. if (dev.get_backend() == backend::ext_intel_esimd_emulator) { return 0; } From 6e95993d01d4ab6f1a02bef4dc04913a0eaa93ee Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Wed, 5 Oct 2022 08:47:48 -0700 Subject: [PATCH 16/18] Formatting --- sycl/source/detail/pi.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sycl/source/detail/pi.cpp b/sycl/source/detail/pi.cpp index 591a2e4d6a53f..79466880d9b14 100644 --- a/sycl/source/detail/pi.cpp +++ b/sycl/source/detail/pi.cpp @@ -310,8 +310,9 @@ std::vector> findPlugins() { CudaFound = true; } if (!EsimdCpuFound && Backend == backend::ext_intel_esimd_emulator) { - // for ESIMD_EMULATOR device we require the backend to be set explicitly to ext_intel_esimd_emulator and not just backend:all - // and the if statement condition above reflects this + // for ESIMD_EMULATOR device we require the backend to be set explicitly + // to ext_intel_esimd_emulator and not just backend:all and the if + // statement condition above reflects this PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, backend::ext_intel_esimd_emulator); EsimdCpuFound = true; From b13042727bcec482b54ea960b28fd3c029784f17 Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Thu, 6 Oct 2022 13:52:44 -0700 Subject: [PATCH 17/18] Formatting --- sycl/source/detail/pi.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sycl/source/detail/pi.cpp b/sycl/source/detail/pi.cpp index 79466880d9b14..b21423d169c38 100644 --- a/sycl/source/detail/pi.cpp +++ b/sycl/source/detail/pi.cpp @@ -310,10 +310,7 @@ std::vector> findPlugins() { CudaFound = true; } if (!EsimdCpuFound && Backend == backend::ext_intel_esimd_emulator) { - // for ESIMD_EMULATOR device we require the backend to be set explicitly - // to ext_intel_esimd_emulator and not just backend:all and the if - // statement condition above reflects this - PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, + PluginNames.emplace_back(__SYCL_ESIMD_EMULATOR_PLUGIN_NAME, backend::ext_intel_esimd_emulator); EsimdCpuFound = true; } From 2bc9ba5b320ff9c21282671b5a9e24d9f12bfc25 Mon Sep 17 00:00:00 2001 From: Lorenc Bushi Date: Thu, 6 Oct 2022 15:51:04 -0700 Subject: [PATCH 18/18] Update filter_selector --- sycl/source/detail/filter_selector_impl.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/sycl/source/detail/filter_selector_impl.cpp b/sycl/source/detail/filter_selector_impl.cpp index b6f0c6940267c..5ed55aff47db2 100644 --- a/sycl/source/detail/filter_selector_impl.cpp +++ b/sycl/source/detail/filter_selector_impl.cpp @@ -76,11 +76,9 @@ filter create_filter(const std::string &Input) { Result.Backend = backend::ext_oneapi_cuda; } else if (Token == "hip" && !Result.Backend) { Result.Backend = backend::ext_oneapi_hip; - Result.HasBackend = true; - } else if (Token == "esimd_emulator" && !Result.HasBackend) { + } else if (Token == "esimd_emulator" && !Result.Backend) { Result.Backend = backend::ext_intel_esimd_emulator; - Result.HasBackend = true; - } else if (std::regex_match(Token, IntegerExpr) && !Result.HasDeviceNum) { + } else if (std::regex_match(Token, IntegerExpr) && !Result.DeviceNum) { try { Result.DeviceNum = std::stoi(Token); } catch (std::logic_error &) {