We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Step to reproduce the error:
git clone -b intrinsic-llvm [email protected]:AuroraPerego/pixeltrack-standalone.git cd pixeltrack-standalone/
in the Makefile change the ONEAPI_BASE to ours
make environment . env.sh make -j `nproc` sycl
The error is the following:
InvalidFunctionCall: Unexpected llvm intrinsic: llvm.uadd.sat.i8 llvm-foreach: dpcpp: fatal error: llvm-spirv command failed with exit code 6 (use -v to see invocation)
The line that gives the error is in src/sycl/plugin-PixelVertexFinding/gpuClusterTracksIterative.h line 155:
src/sycl/plugin-PixelVertexFinding/gpuClusterTracksIterative.h
for (; p < hist->end(be); ++p)
A workaround is to use the flag -fno-sycl-early-optimizations
-fno-sycl-early-optimizations
Note that the same happens with the open source compiler (clang 16.0.0), but didn't happen with dpcpp 2022.1.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Step to reproduce the error:
in the Makefile change the ONEAPI_BASE to ours
The error is the following:
The line that gives the error is in
src/sycl/plugin-PixelVertexFinding/gpuClusterTracksIterative.h
line 155:A workaround is to use the flag
-fno-sycl-early-optimizations
Note that the same happens with the open source compiler (clang 16.0.0), but didn't happen with dpcpp 2022.1.0
The text was updated successfully, but these errors were encountered: