Skip to content

Commit

Permalink
[Fix] fix cudnn version of circle ci docker (#2069)
Browse files Browse the repository at this point in the history
  • Loading branch information
ly015 authored Mar 15, 2023
1 parent 4f5249d commit 3594f5d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG PYTORCH="1.8.1"
ARG PYTORCH="1.7.1"
ARG CUDA="11.1"
ARG CUDNN="7"
ARG CUDNN="8"

FROM pytorch/pytorch:${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel

Expand Down
8 changes: 4 additions & 4 deletions .circleci/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ jobs:
type: string
cuda:
type: enum
enum: ["10.1", "10.2", "11.1"]
enum: ["11.1"]
cudnn:
type: integer
default: 7
default: 8
machine:
image: ubuntu-2004-cuda-11.4:202110-01
# docker_layer_caching: true
Expand Down Expand Up @@ -168,10 +168,10 @@ workflows:
- maximum_version_cpu
- build_cuda:
name: mainstream_version_gpu
torch: 1.8.1
torch: 1.7.1
# Use double quotation mark to explicitly specify its type
# as string instead of number
cuda: "10.2"
cuda: "11.1"
requires:
- hold
merge_stage_test:
Expand Down

0 comments on commit 3594f5d

Please sign in to comment.