We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 503806a commit 93d1f8eCopy full SHA for 93d1f8e
1 file changed
ci/common/build.bash
@@ -182,6 +182,12 @@ if [[ "${BUILD_TYPE}" == "cpu" ]]; then
182
append CTEST_FLAGS "-E ^cub|^thrust.*cuda"
183
fi
184
185
+if [[ "${CXX_TYPE}" == "icc" ]]; then
186
+ # The free version of icpc used in gpuCI seems to have a compiler bug that
187
+ # causes a scan test to produce incorrect output.
188
+ append CTEST_FLAGS "-E thrust\\.cpp\\.tbb\\.cpp..\\.test\\.scan$"
189
+fi
190
+
191
if [[ -n "${@}" ]]; then
192
for arg in "${@}"
193
do
0 commit comments