We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63f7df3 commit 446385cCopy full SHA for 446385c
README.md
@@ -55,6 +55,12 @@ pip install tensornvme
55
```
56
All acceptable environment variables are the same as those when installing from source.
57
58
+## Use docker
59
+
60
+```shell
61
+git clone https://github.com/hpcaitech/TensorNVMe.git && cd TensorNVMe/docker && docker build -t tensornvme .
62
+```
63
64
## CLI
65
66
We provide a CLI to test whether backends work well.
docker/Dockerfile
@@ -0,0 +1,10 @@
1
+FROM hpcaitech/pytorch-cuda:1.11.0-11.3.0
2
3
+# install dependencies
4
+RUN conda install -y cmake
5
6
+# install tensornvme
7
+RUN git clone https://github.com/hpcaitech/TensorNVMe.git && \
8
+ cd TensorNVMe && \
9
+ pip install -r requirements.txt && \
10
+ pip install -v --no-cache-dir .
0 commit comments