Skip to content

Commit 5afd4cb

Browse files
committed
Upgrade PyTorch version to v1.13.0
Signed-off-by: Yuki Iwai <[email protected]>
1 parent 45a4744 commit 5afd4cb

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

examples/v1beta1/trial-images/darts-cnn-cifar10/Dockerfile.gpu

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# Pytorch=1.11.0, cuda=11.6.0
2-
# Ref: https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes/rel_22-08.html#rel_22-08
3-
FROM nvcr.io/nvidia/pytorch:22.02-py3
1+
# We need to use the nvcr.io/nvidia/pytorch image as a base image to support both linux/amd64 and linux_arm64 platforms.
2+
# PyTorch=1.13.0, cuda=11.8.0
3+
# Ref: https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes/rel-22-11.html#rel-22-11
4+
FROM nvcr.io/nvidia/pytorch:22.11-py3
45

56
ENV TARGET_DIR /opt/darts-cnn-cifar10
67

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
torch==1.11.0
2-
torchvision==0.12.0
1+
torch==1.13.1
2+
torchvision==0.14.1
33
Pillow>=9.1.1

examples/v1beta1/trial-images/pytorch-mnist/Dockerfile.gpu

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
# Pytorch=1.11.0, cuda=11.6.0
2-
# Ref: https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes/rel_22-08.html#rel_22-08
3-
FROM nvcr.io/nvidia/pytorch:22.02-py3
1+
# We need to use the nvcr.io/nvidia/pytorch image as a base image to support both linux/amd64 and linux_arm64 platforms.
2+
# PyTorch=1.13.0, cuda=11.8.0
3+
# Ref: https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes/rel-22-11.html#rel-22-11
4+
FROM nvcr.io/nvidia/pytorch:22.11-py3
45

56
ADD examples/v1beta1/trial-images/pytorch-mnist /opt/pytorch-mnist
67

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
cloudml-hypertune==0.1.0.dev6
2-
torch==1.11.0
3-
torchvision==0.12.0
2+
torch==1.13.1
3+
torchvision==0.14.1
44
Pillow>=9.1.1

sdk/python/v1beta1/kubeflow/katib/constants/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# TODO (andreyvelich): Implement list_base_images function to get each image description.
3535
BASE_IMAGE_TENSORFLOW = "docker.io/tensorflow/tensorflow:2.9.1"
3636
BASE_IMAGE_TENSORFLOW_GPU = "docker.io/tensorflow/tensorflow:2.9.1-gpu"
37-
BASE_IMAGE_PYTORCH = "docker.io/pytorch/pytorch:1.12.1-cuda11.3-cudnn8-runtime"
37+
BASE_IMAGE_PYTORCH = "docker.io/pytorch/pytorch:1.13.1-cuda11.6-cudnn8-runtime"
3838
BASE_IMAGE_MXNET = "docker.io/mxnet/python:1.9.1_native_py3"
3939

4040
DEFAULT_DB_MANAGER_ADDRESS = "katib-db-manager.kubeflow:6789"

0 commit comments

Comments
 (0)