We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a07c7c commit a15aaf7Copy full SHA for a15aaf7
1 file changed
scripts/ci/sycl-configure.sh
@@ -4,6 +4,7 @@ set -euo pipefail
4
build_type="${1:?build type is required}"
5
sycl_targets="${2:?sycl targets are required}"
6
opencv_apps="${3:?opencv apps toggle is required}"
7
+openmp_enabled="${ITLABAI_ENABLE_OPENMP:-ON}"
8
9
launcher_args=()
10
if [[ "${RUNNER_OS}" != "Windows" ]]; then
@@ -19,7 +20,7 @@ cmake -S . -B build -G Ninja \
19
20
-DCMAKE_CXX_COMPILER="${ITLABAI_CXX}" \
21
-DCMAKE_BUILD_TYPE="${build_type}" \
22
-DCMAKE_PREFIX_PATH="${ITLABAI_CMAKE_PREFIX_PATH}" \
- -DITLABAI_ENABLE_OPENMP=OFF \
23
+ -DITLABAI_ENABLE_OPENMP="${openmp_enabled}" \
24
-DITLABAI_ENABLE_OPENCV_APPS="${opencv_apps}" \
25
-DITLABAI_BUILD_TESTS=ON \
26
-DITLABAI_OPENCV_DIR="${ITLABAI_OPENCV_DIR:-}" \
0 commit comments