You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when compiling a simple program with CUDA backend against d9b178f :
/home/leggett/intel/git/build/bin/clang++ -std=c++14 -fsycl -pthread -g -O2 -fsycl-targets=nvptx64-nvidia-cuda-sycldevice -o prog.o -c prog.cpp
clang-11: warning: Unknown CUDA version 10.2. Assuming the latest supported version 10.1 [-Wunknown-cuda-version]
In file included from FindPrimesSYCL.cpp:1:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl.hpp:11:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl/accessor.hpp:13:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl/buffer.hpp:10:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl/detail/buffer_impl.hpp:17:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl/handler.hpp:13:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl/detail/cg.hpp:17:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl/group.hpp:15:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl/detail/generic_type_traits.hpp:16:
In file included from /home/leggett/intel/git/build/bin/../include/sycl/CL/sycl/half_type.hpp:15:
In file included from /opt/rh/devtoolset-8/root/usr/lib/gcc/x86_64-redhat-linux/8/../../../../include/c++/8/cmath:45:
In file included from /usr/include/math.h:413:
/usr/include/bits/mathinline.h:131:43: error: invalid input constraint 'x' in asm
__asm ("pmovmskb %1, %0" : "=r" (__m) : "x" (__x));
^
/usr/include/bits/mathinline.h:143:43: error: invalid input constraint 'x' in asm
__asm ("pmovmskb %1, %0" : "=r" (__m) : "x" (__x));
^
2 errors generated.
The text was updated successfully, but these errors were encountered:
…ntel#1353)
A number of tests currently use double and sycl::half despite them not
being supported by the used device. Although it does not necessarily
fail to run on those devices, they are not considered supported by the
SYCL specification and should not be used in testing on those devices.
This commit prevent parts of a selection of tests from running on
devices that do not support the types used.
Signed-off-by: Larsen, Steffen <steffen.larsen@intel.com>
when compiling a simple program with CUDA backend against d9b178f :
The text was updated successfully, but these errors were encountered: