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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
#!/bin/sh
CR="
"
LIT_VERSION="$(sed -n -r '/^Build/,/^$/s/.*llvm-([0-9]+)-tools.*/\1/p' debian/control)"
cat <<EoF
# Generated from debian/tests/control.sh, do not edit manually!
Test-Command: cmake -Wno-dev -B \$AUTOPKGTEST_TMP -S debian/tests/cmake/libcudacxx
Features: test-name=cmake_find_package_libcudacxx
Depends:
libcu++-dev,
cmake,
make,
g++,
Restrictions:
superficial,
Test-Command: cmake -Wno-dev -B \$AUTOPKGTEST_TMP -S debian/tests/cmake/cub
Features: test-name=cmake_find_package_CUB
Depends:
libcub-dev,
cmake,
make,
g++,
Restrictions:
superficial,
Test-Command: cmake -Wno-dev -B \$AUTOPKGTEST_TMP -S debian/tests/cmake/thrust
Features: test-name=cmake_find_package_Thrust
Depends:
libthrust-dev,
cmake,
make,
g++,
libtbb-dev,
Restrictions:
superficial,
Test-Command: cmake -Wno-dev -B \$AUTOPKGTEST_TMP -S debian/tests/cmake/cccl
Features: test-name=cmake_find_package_cccl
Depends:
libcccl-dev,
cmake,
make,
g++,
Restrictions:
superficial,
Test-Command: debian/tests/upstream-testsuite-cpp
Features: test-name=upstream-testsuite-cpp
Architecture: amd64 arm64 ppc64el
Depends:
libcccl-dev,
cmake,
make,
llvm-${LIT_VERSION}-tools,
python3,
g++,
Restrictions:
superficial,
allow-stderr,
Test-Command: debian/tests/compile-upstream-testsuite-cuda
Features: test-name=compile-upstream-testsuite-cuda
Architecture: amd64
Depends:
libcccl-dev,
cmake,
make,
llvm-${LIT_VERSION}-tools,
python3,
nvidia-cuda-toolkit-gcc,
git,
Restrictions:
superficial,
allow-stderr,
needs-internet,
EoF
emit_normal()
{
local dev="$1"
local std="${2:-17}"
local cxx="$3"
local dep="${cxx:-g++}"
local name=$(echo "run_testsuite_${dev}_C++${std}${cxx:+_$cxx}" | tr / _)
cat <<EoF
Test-Command: debian/tests/upstream-testsuite ${dev} ${std}${cxx:+ $cxx}
Features: test-name=${name}
Depends:
@,
cmake,
make,
libtbb-dev,
$dep,
Restrictions:
powerful-cuda-machine,
superficial,
allow-stderr,
flaky,
EoF
}
emit_cuda()
{
local dev="$1"
local std="${2:-17}"
local cxx="$3"
local dep="${cxx:-g++},${CR} nvidia-cuda-toolkit-gcc"
local flaky="${CR} flaky,"
local skippable="${CR} skippable,"
case $cxx in
cuda-g++)
dep="nvidia-cuda-toolkit-gcc"
test "$dev" = "TBB/CUDA" || flaky=
skippable=
;;
esac
local name=$(echo "compile_testsuite_${dev}_C++${std}${cxx:+_$cxx}" | tr / _)
cat <<EoF
Test-Command: debian/tests/upstream-testsuite ${dev} ${std}${cxx:+ $cxx}
Features: test-name=${name}
Architecture: amd64
Depends:
@,
cmake,
make,
libtbb-dev,
${dep},
Restrictions:
powerful-cuda-machine,
superficial,
allow-stderr,${flaky}${skippable}
EoF
}
emit_normal CPP 17 g++-13
emit_normal TBB
for DEVICE in CUDA; do
for CXX in cuda-g++ ; do
for STD in 17 ; do
for HOST in CPP TBB ; do
emit_cuda ${HOST}/${DEVICE} ${STD} ${CXX}
done
done
done
done
|