From 9ede2f93c13136e39d5750d490365c0d9aedcccd Mon Sep 17 00:00:00 2001 From: nullday Date: Wed, 7 Dec 2022 21:56:01 +0800 Subject: [PATCH] WIP init some version check --- docs/support.md | 52 ++++++++++++++++++++++++++++++++++++++++++ hack/updatessupport.sh | 7 ++++++ 2 files changed, 59 insertions(+) create mode 100644 docs/support.md create mode 100755 hack/updatessupport.sh diff --git a/docs/support.md b/docs/support.md new file mode 100644 index 000000000..30de3a4ca --- /dev/null +++ b/docs/support.md @@ -0,0 +1,52 @@ +# Support + +The following features are supported by envd team. + +> envd v0.2.5 + +## OS support + +- ubuntu 20.04 + +## CUDA + +Within the following support cuda version, you could use: + +```python + base(os="ubuntu20.04", language="python3") + install.cuda(version="11.2.2", cudnn="8") +``` + +| OS|CUDA|CUDNN| +|---|---|---| +| ubuntu 20.04 | 11.0.3 | 8 | +| | 11.1.1 | 8 | +| | 11.2.0 | 8 | +| | 11.2.1 | 8 | +| | 11.2.2 | 8 | +| | 11.3.0 | 8 | +| | 11.3.1 | 8 | +| | 11.4.0 | 8 | +| | 11.4.1 | 8 | +| | 11.4.2 | 8 | +| | 11.4.3 | 8 | +| | 11.5.0 | 8 | +| | 11.5.1 | 8 | +| | 11.5.2 | 8 | +| | 11.6.0 | 8 | +| | 11.6.1 | 8 | +| | 11.6.2 | 8 | +| | 11.7.0 | 8 | +| | 11.7.1 | 8 | +| | 11.8.0 | 8 | +| | | | + +# Machine Learning Framework + +## Pytorch(CUDA) + +- 1.13.0 +- 1.12.1 + + +## Tensorflow \ No newline at end of file diff --git a/hack/updatessupport.sh b/hack/updatessupport.sh new file mode 100755 index 000000000..c6ca92c7d --- /dev/null +++ b/hack/updatessupport.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +function get_cuda_image_name { + output=`curl -s https://hub.docker.com/v2/repositories/nvidia/cuda/tags/\?page_size\=100\&page\=1\&name\=cudnn8-devel-ubuntu20.04 | jq ".results | .[] | .name"` + echo $output +} + +get_cuda_image_name \ No newline at end of file