Skip to content

Commit 67c5040

Browse files
authored
Merge branch 'master' into tensorflow-inference-2.16.1-ec2-ML-1725989303
2 parents 29f4284 + ed09ea4 commit 67c5040

File tree

312 files changed

+45985
-4461
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

312 files changed

+45985
-4461
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dgl_tests/ @aws/dlc-dgl-reviewers
4141
*inductor* @aws/dlc-trcomp-reviewers
4242

4343
# Any PR with a file with "smdataparallel" in it will be assigned to the SM DataParallel team
44-
*smdataparallel* @aws/dlc-sm-data-parallel-reviewers
44+
*smdataparallel* @aws/dlc-smddp-reviewers
4545

4646
# Any PR with a file with "smmodelparallel" in it will be assigned to the SM ModelParallel team
4747
*smmodelparallel* @aws/dlc-sm-model-parallel-reviewers

autogluon/inference/docker/1.1/py3/Dockerfile.cpu

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ RUN pip install --no-cache-dir -U --trusted-host pypi.org --trusted-host files.p
2727
&& pip install --no-cache-dir -U wheel \
2828
&& pip uninstall -y dataclasses \
2929
&& pip install --no-cache-dir -U numpy numba \
30+
# capping spaCy to prevent failure of pip install on AutoGluon - https://github.com/autogluon/autogluon/issues/4515
31+
&& pip install --no-cache-dir "spacy<3.8" \
3032
# Install AutoGluon, ensuring no vulnerable dependencies are left behind
3133
&& pip install --no-cache-dir -U autogluon==${AUTOGLUON_VERSION} \
3234
# Update requests to a secure version that fixes CVE-2023-32681
@@ -49,7 +51,10 @@ RUN pip install --no-cache-dir -U --trusted-host pypi.org --trusted-host files.p
4951
# update tqdm to a secure version that fixes CVE-2024-34062
5052
&& pip install --no-cache-dir -U tqdm>=4.66.3 \
5153
# update urllib3 to fix vulnerability id 71608
52-
&& pip install --no-cache-dir -U urllib3
54+
&& pip install --no-cache-dir -U urllib3 \
55+
# Cap pillow & ninja to fix sanity test
56+
&& pip install --no-cache-dir "pillow<11.0.0" \
57+
&& pip install --no-cache-dir "ninja<1.11.1.1"
5358

5459

5560

autogluon/inference/docker/1.1/py3/cu121/Dockerfile.gpu

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ RUN pip install --no-cache-dir -U --trusted-host pypi.org --trusted-host files.p
3030
&& pip install --no-cache-dir -U wheel \
3131
&& pip uninstall -y dataclasses \
3232
&& pip install --no-cache-dir -U numpy numba \
33+
# capping spaCy to prevent failure of pip install on AutoGluon - https://github.com/autogluon/autogluon/issues/4515
34+
&& pip install --no-cache-dir "spacy<3.8" \
3335
&& pip install --no-cache-dir -U autogluon==${AUTOGLUON_VERSION} \
3436
# Update requests to a secure version that fixes CVE-2023-32681
3537
&& pip install --no-cache-dir -U requests>=2.31.0 \
@@ -51,7 +53,10 @@ RUN pip install --no-cache-dir -U --trusted-host pypi.org --trusted-host files.p
5153
# update tqdm to a secure version that fixes CVE-2024-34062
5254
&& pip install --no-cache-dir -U tqdm>=4.66.3 \
5355
# update urllib3 to fix vulnerability id 71608
54-
&& pip install --no-cache-dir -U urllib3
56+
&& pip install --no-cache-dir -U urllib3 \
57+
# Cap pillow & ninja to fix sanity test
58+
&& pip install --no-cache-dir "pillow<11.0.0" \
59+
&& pip install --no-cache-dir "ninja<1.11.1.1"
5560

5661

5762
# add TS entrypoint

autogluon/training/docker/1.1/py3/Dockerfile.cpu

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ ARG AUTOGLUON_VERSION=1.1.1
2727
RUN pip install --no-cache-dir -U --trusted-host pypi.org --trusted-host files.pythonhosted.org pip \
2828
&& pip install --no-cache-dir -U wheel \
2929
&& pip install --no-cache-dir -U numpy numba \
30+
# capping spaCy to prevent failure of pip install on AutoGluon - https://github.com/autogluon/autogluon/issues/4515
31+
&& pip install --no-cache-dir "spacy<3.8" \
3032
&& pip install --no-cache-dir -U autogluon==${AUTOGLUON_VERSION} \
3133
&& mim install -q mmcv==2.1.0 --timeout 600 \
3234
&& pip install --no-cache-dir -U mmdet>=3.0.0 \
@@ -47,7 +49,10 @@ RUN pip install --no-cache-dir -U --trusted-host pypi.org --trusted-host files.p
4749
# update idna to a secure version that fixes vulnerability id 67895
4850
&& pip install --no-cache-dir -U idna>=3.7.0 \
4951
# update tqdm to a secure version that fixes CVE-2024-34062
50-
&& pip install --no-cache-dir -U tqdm>=4.66.3
52+
&& pip install --no-cache-dir -U tqdm>=4.66.3 \
53+
# Cap pillow & ninja to fix sanity test
54+
&& pip install --no-cache-dir "pillow<11.0.0" \
55+
&& pip install --no-cache-dir "ninja<1.11.1.1"
5156

5257

5358
RUN HOME_DIR=/root \

autogluon/training/docker/1.1/py3/cu121/Dockerfile.gpu

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ ARG AUTOGLUON_VERSION=1.1.1
2626
RUN pip install --no-cache-dir -U --trusted-host pypi.org --trusted-host files.pythonhosted.org pip \
2727
&& pip install --no-cache-dir -U wheel \
2828
&& pip install --no-cache-dir -U numpy numba \
29+
# capping spaCy to prevent failure of pip install on AutoGluon - https://github.com/autogluon/autogluon/issues/4515
30+
&& pip install --no-cache-dir "spacy<3.8" \
2931
&& pip install --no-cache-dir -U autogluon==${AUTOGLUON_VERSION} \
3032
&& mim install -q mmcv==2.1.0 --timeout 600 \
3133
&& pip install --no-cache-dir -U mmdet>=3.0.0 \
@@ -45,7 +47,10 @@ RUN pip install --no-cache-dir -U --trusted-host pypi.org --trusted-host files.p
4547
# update idna to a secure version that fixes vulnerability id 67895
4648
&& pip install --no-cache-dir -U idna>=3.7.0 \
4749
# update tqdm to a secure version that fixes CVE-2024-34062
48-
&& pip install --no-cache-dir -U tqdm>=4.66.3
50+
&& pip install --no-cache-dir -U tqdm>=4.66.3 \
51+
# Cap pillow & ninja to fix sanity test
52+
&& pip install --no-cache-dir "pillow<11.0.0" \
53+
&& pip install --no-cache-dir "ninja<1.11.1.1"
4954

5055

5156
RUN HOME_DIR=/root \

0 commit comments

Comments
 (0)