Merge pull request #73823 from jiayingz/cuda10-test

Update CudaVectorAdd test image to be built with Cuda10 docker image.
This commit is contained in:
Kubernetes Prow Robot
2019-02-07 15:50:08 -08:00
committed by GitHub
4 changed files with 9 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
amd64=nvidia/cuda:8.0-devel-ubuntu16.04
ppc64le=nvidia/cuda-ppc64le:8.0-devel-ubuntu16.04
amd64=nvidia/cuda:10.0-devel-ubuntu18.04
ppc64le=nvidia/cuda-ppc64le:9.2-devel-ubuntu16.04

View File

@@ -11,3 +11,8 @@ $ make
# Push
$ make push
```
## Version history:
1.0: build cuda-vector-add from CUDA 8.0.
2.0: build amd64 cuda-vector-add from CUDA 10.0 and ppc64le from CUDA 9.2.

View File

@@ -1 +1 @@
1.0
2.0

View File

@@ -99,6 +99,7 @@ var (
BusyBox = Config{dockerLibraryRegistry, "busybox", "1.29"}
CheckMetadataConcealment = Config{e2eRegistry, "metadata-concealment", "1.2"}
CudaVectorAdd = Config{e2eRegistry, "cuda-vector-add", "1.0"}
CudaVectorAdd2 = Config{e2eRegistry, "cuda-vector-add", "2.0"}
Dnsutils = Config{e2eRegistry, "dnsutils", "1.1"}
EchoServer = Config{e2eRegistry, "echoserver", "2.2"}
EntrypointTester = Config{e2eRegistry, "entrypoint-tester", "1.0"}