Skip to content
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

Install Intel Compiler(ICX/ICPX) #31

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
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 docker/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,11 @@ RUN if [ "$(uname -m)" == "aarch64" ]; then \
./rustup-init -y --no-modify-path --profile minimal --default-toolchain ${RUST_VERSION} --default-host ${RUST_ARCH} && \
rm -rf /tmp/*

# build/install Intel Compiler(ICX/ICPX)
RUN wget --progress=bar:force https://registrationcenter-download.intel.com/akdlm/irc_nas/18679/l_HPCKit_p_2022.2.0.191_offline.sh && \
sh ./l_HPCKit_p_2022.2.0.191_offline.sh -a -s --eula accept && \
Copy link
Contributor

Choose a reason for hiding this comment

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

what is in this EULA? Something about this change makes me think I would need to consult a legal department.. I'm willing to be wrong, but at the moment I'm not sure about this.

Copy link
Author

Choose a reason for hiding this comment

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

Hi! The latest EULA can be found here. Did you have any discussion with the legal department?

rm l_HPCKit_p_2022.2.0.191_offline.sh

# =========================== END OF LAYER: build ==============================
FROM build as devel

Expand Down