Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions devops/containers/ubuntu2404_blender.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ RUN wget https://launchpadlibrarian.net/847063136/libze-intel-gpu-raytracing_1.2
dpkg --force-all -i rt.deb && \
rm rt.deb

# Install ISPC which is a dep for Blender's CPU device.
RUN wget https://github.com/ispc/ispc/releases/download/v1.30.0/ispc-v1.30.0-linux.tar.gz -O ispc.tar.gz && \

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does Windows machines also have ISPC v1.30.0, installed?
Since we didn't install ISPC ourselves on Windows, should we somewhere check the ISPC version? To make sure that ISPC on Windows machines doesn't change abruptly.

@sarnex sarnex May 6, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry I did install ISPC myself on the Windows machine and it won't change abruptly because we don't use the bundled Blender one. I think its 1.29.0, I will update it before merging this PR, thanks

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sounds good. Thanks!

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just checked, Window is already using 1.30.0, lucky :P

tar xf ispc.tar.gz && cp -r ispc-v1.30.0-linux/bin /usr/ && cp -r ispc-v1.30.0-linux/include /usr/ && \
cp -r ispc-v1.30.0-linux/lib /usr/ && rm -rf ispc-v1.30.0-linux ispc.tar.gz

USER sycl

ENTRYPOINT ["/bin/bash", "/drivers_entrypoint.sh"]
Loading