-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
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
[CI] Uplift DPC++ compiler version #1012
Conversation
@illuhad, I'm trying to uplift AdaptiveCpp version in Khronos SYCL-CTS CI, but installation fails due to missing dependency on LLVM. What would you recommend to fix this issue? |
@bader The AdaptiveCpp main compiler is the generic JIT compiler ( Now I don't know what is possible in the CTS CI image, or if there are any challenges around this. Perhaps @psalz knows more? Otherwise it is indeed possible to install a library-only configuration using |
docker/hipsycl/Dockerfile
Outdated
RUN wget https://apt.llvm.org/llvm.sh && \ | ||
chmod +x llvm.sh && \ | ||
./llvm.sh 18 && \ | ||
apt update && \ | ||
apt install -y --no-install-recommends \ | ||
libclang-18-dev clang-tools-18 libomp-18-dev |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After the switch to 24.04 as the base image in #874 we can just install LLVM 18 though apt
.
#874 already updates the ACpp image to a revision from last week; why do we need another PR for this? |
First, I forgot that #874 apart from renaming uplifts the compiler version. I agree that merging #874 should be enough to pass #989 with ACpp. I'll leave only DPC++ related changes. |
No description provided.