1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
#=============================================================================
# CMake build system files
#
# Copyright (c) 2023 Michal Babej / Intel Finland Oy
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
#=============================================================================
set(TS_NAME "oneapi-samples")
set(TS_BASEDIR "${TESTSUITE_BASEDIR}/${TS_NAME}")
set(TS_BUILDDIR "${TS_BASEDIR}/src/${TS_NAME}-build")
set(TS_SRCDIR "${CMAKE_CURRENT_SOURCE_DIR}/src")
if((NOT SYCL_CXX_COMPILER) OR (NOT SYCL_LIBDIR))
message(STATUS "Disabling testsuite ${TS_NAME}, requires a SYCL compiler (-DSYCL_CXX_COMPILER=...) and also SYCL_LIBDIR (path to libsycl.so)")
return()
endif()
message(STATUS "Enabling testsuite ${TS_NAME}")
list(APPEND ACTUALLY_ENABLED_TESTSUITES "${TS_NAME}")
set(ACTUALLY_ENABLED_TESTSUITES ${ACTUALLY_ENABLED_TESTSUITES} PARENT_SCOPE)
# The reason we don't use git repo of oneapi-samples:
# The git repo has an unusable (for PoCL) buildsystem (Cmake files with hardcoded
# icpx compiler, sometimes not even CMake just plain handwritten Makefile,
# each sample directory is a separate CMake / Make project ... etc),
# so we have to use our own CMake files anyway.
#
# If the oneapi-samples buildsystem is fixed someday, then we could use the repo directly.
ExternalProject_Add(
${TS_NAME}
PREFIX "${TS_BASEDIR}"
SOURCE_DIR "${TS_SRCDIR}"
BINARY_DIR "${TS_BUILDDIR}"
CMAKE_ARGS
-DCMAKE_CXX_COMPILER=${SYCL_CXX_COMPILER}
-DCL_LIB_DIR=${OPENCL_LIBDIR}
-DCL_LIB_NAME=${OPENCL_LIBNAME}
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
"${TS_SRCDIR}"
INSTALL_COMMAND /bin/true
)
set_target_properties(${TS_NAME} PROPERTIES EXCLUDE_FROM_ALL TRUE)
add_dependencies(prepare_examples ${TS_NAME})
# oneapi_nbody fails on CPU due to:
# 3: Error(s) while linking:
# 3: Cannot find symbol _Z21work_group_reduce_addf in kernel library
add_test(NAME oneapi-samples
COMMAND "${CMAKE_CTEST_COMMAND}" --output-on-failure -E "nbody|multidevice"
WORKING_DIRECTORY "${TS_BUILDDIR}")
add_test(NAME oneapi-multidev-local-samples
COMMAND "${CMAKE_CTEST_COMMAND}" --output-on-failure -L "multidevice_local"
WORKING_DIRECTORY "${TS_BUILDDIR}")
add_test(NAME oneapi-multidev-remote-samples
COMMAND "${CMAKE_CTEST_COMMAND}" --output-on-failure -L "multidevice_remote"
WORKING_DIRECTORY "${TS_BUILDDIR}")
set_tests_properties(oneapi-samples
PROPERTIES LABELS "oneapi-samples")
set_tests_properties(oneapi-multidev-local-samples
PROPERTIES LABELS "oneapi-multidev-local-samples")
set_tests_properties(oneapi-multidev-remote-samples
PROPERTIES LABELS "oneapi-multidev-remote-samples")
|