You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 28, 2023. It is now read-only.
and building in Conda/ Non-conda environment. Below are the steps you can follow
5
5
to build the images for various combinations. This directory contains everything needed to build the Docker images that are used in our CI as well. The `Dockerfile`s are parameterized to build the image based on the build environment. The different configurations are identified by a freeform string that we call a build environment. This string is persisted in each image as the BUILD_ENVIRONMENT environment variable.
6
6
7
7
## Supported Build environments
8
8
9
9
Non-conda env and no python installs:
10
10
11
-
`linux-trusty-gcc4.8-cuda8-cudnn7-py3`
11
+
`linux-trusty-gcc4.9-cuda8-cudnn7-py3`
12
12
13
13
`linux-xenial-gcc5-cuda9-cudnn7-py3`
14
14
15
15
Conda env with PyTorch conda install:
16
16
17
-
`linux-trusty-gcc4.8-cuda8-cudnn7-py3-conda`[Run both C++ and Python tests]
17
+
`linux-trusty-gcc4.9-cuda8-cudnn7-py3-conda`[Run both C++ and Python tests]
18
18
19
19
`linux-xenial-gcc5-cuda9-cudnn7-py3-conda`[Run only Python tests for now]
20
20
@@ -56,12 +56,12 @@ cd TensorComprehensions/docker
56
56
```
57
57
58
58
Now, we will build a docker image for TC. We will build docker image for TC on
59
-
linux trusty with gcc4.8, cuda8, cudnn6 and conda environment settings. If you
59
+
linux trusty with gcc4.9, cuda8, cudnn7 and conda environment settings. If you
60
60
need to build images for some other combination, the steps are still valid, just
61
61
make sure to change the paths below to fit your case.
0 commit comments