-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#! /bin/bash | ||
# Copyright (C) 2023 Intel Corporation | ||
|
||
# Part of the Unified-Runtime Project, under the Apache License v2.0 with LLVM Exceptions. | ||
# See LICENSE.TXT | ||
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
|
||
workspace=$1 | ||
compiler_c=$2 | ||
compiler_cxx=$3 | ||
build_type=$4 | ||
|
||
set -e | ||
echo "Hostname: $(hostname)" | ||
|
||
# SLURM/MPI integration is broken | ||
unset SLURM_TASKS_PER_NODE | ||
unset SLURM_JOBID | ||
|
||
source /opt/intel/oneapi/setvars.sh | ||
export PATH=${workspace}/dpcpp_compiler/bin:$PATH | ||
export CPATH=${workspace}/dpcpp_compiler/include:$CPATH | ||
export LIBRARY_PATH=${workspace}/dpcpp_compiler/lib:$LIBRARY_PATH | ||
export LD_LIBRARY_PATH=${workspace}/dpcpp_compiler/lib:$LD_LIBRARY_PATH | ||
|
||
cmake \ | ||
-B${workspace}/build \ | ||
-DCMAKE_C_COMPILER=${compiler_c} \ | ||
-DCMAKE_CXX_COMPILER=${compiler_cxx} \ | ||
-DUR_ENABLE_TRACING=ON \ | ||
-DUR_DEVELOPER_MODE=ON \ | ||
-DCMAKE_BUILD_TYPE=${build_type} \ | ||
-DUR_BUILD_TESTS=ON \ | ||
-DUR_FORMAT_CPP_STYLE=OFF \ | ||
-DUR_BUILD_ADAPTER_L0=ON | ||
|
||
cmake --build ${workspace}/build -j $(nproc) | ||
|
||
# Unset these variables is needed for the conformance test | ||
unset LD_LIBRARY_PATH | ||
unset LIBRARY_PATH | ||
# Temporarily disabling platform test for L0, because of hang | ||
# See issue: #824 | ||
cd ${workspace}/build | ||
ctest -C ${build_type} --output-on-failure -L "conformance" -E "platform-adapter_level_zero" --timeout 180 |