Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
f70bccac
Unverified
Commit
f70bccac
authored
Sep 26, 2024
by
Tyler Michael Smith
Committed by
GitHub
Sep 26, 2024
Browse files
[Build/CI] Upgrade to gcc 10 in the base build Docker image (#8814)
parent
4bb98f21
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
Dockerfile
Dockerfile
+8
-0
No files found.
Dockerfile
View file @
f70bccac
...
@@ -27,6 +27,14 @@ RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \
...
@@ -27,6 +27,14 @@ RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \
&&
curl
-sS
https://bootstrap.pypa.io/get-pip.py | python
${
PYTHON_VERSION
}
\
&&
curl
-sS
https://bootstrap.pypa.io/get-pip.py | python
${
PYTHON_VERSION
}
\
&&
python3
--version
&&
python3
-m
pip
--version
&&
python3
--version
&&
python3
-m
pip
--version
# Upgrade to GCC 10 to avoid https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92519
# as it was causing spam when compiling the CUTLASS kernels
RUN
apt-get
install
-y
gcc-10 g++-10
RUN
update-alternatives
--install
/usr/bin/gcc gcc /usr/bin/gcc-10 110
--slave
/usr/bin/g++ g++ /usr/bin/g++-10
RUN
<<
EOF
gcc --version
EOF
# Workaround for https://github.com/openai/triton/issues/2507 and
# Workaround for https://github.com/openai/triton/issues/2507 and
# https://github.com/pytorch/pytorch/issues/107960 -- hopefully
# https://github.com/pytorch/pytorch/issues/107960 -- hopefully
# this won't be needed for future versions of this docker image
# this won't be needed for future versions of this docker image
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment