|
|
|
@ -72,7 +72,6 @@ MindSpore offers build options across multiple backends:
|
|
|
|
|
| :---------------- | :--------------- | :----- |
|
|
|
|
|
| Ascend910 | Ubuntu-x86 | ✔️ |
|
|
|
|
|
| | Ubuntu-aarch64 | ✔️ |
|
|
|
|
|
| | EulerOS-x86 | ✔️ |
|
|
|
|
|
| | EulerOS-aarch64 | ✔️ |
|
|
|
|
|
| | CentOS-x86 | ✔️ |
|
|
|
|
|
| | CentOS-aarch64 | ✔️ |
|
|
|
|
@ -86,7 +85,7 @@ For installation using `pip`, take `CPU` and `Ubuntu-x86` build version as an ex
|
|
|
|
|
1. Download whl from [MindSpore download page](https://www.mindspore.cn/versions/en), and install the package.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.0.0/MindSpore/cpu/ubuntu_x86/mindspore-1.0.0-cp37-cp37m-linux_x86_64.whl
|
|
|
|
|
pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.1.0/MindSpore/cpu/ubuntu_x86/mindspore-1.1.0-cp37-cp37m-linux_x86_64.whl
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
2. Run the following command to verify the install.
|
|
|
|
@ -155,8 +154,8 @@ currently the containerized build options are supported as follows:
|
|
|
|
|
For `CPU` backend, you can directly pull and run the latest stable image using the below command:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
docker pull mindspore/mindspore-cpu:1.0.0
|
|
|
|
|
docker run -it mindspore/mindspore-cpu:1.0.0 /bin/bash
|
|
|
|
|
docker pull mindspore/mindspore-cpu:1.1.0
|
|
|
|
|
docker run -it mindspore/mindspore-cpu:1.1.0 /bin/bash
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
- GPU
|
|
|
|
@ -196,8 +195,8 @@ currently the containerized build options are supported as follows:
|
|
|
|
|
Then you can pull and run the latest stable image using the below command:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
docker pull mindspore/mindspore-gpu:1.0.0
|
|
|
|
|
docker run -it -v /dev/shm:/dev/shm --runtime=nvidia --privileged=true mindspore/mindspore-gpu:1.0.0 /bin/bash
|
|
|
|
|
docker pull mindspore/mindspore-gpu:1.1.0
|
|
|
|
|
docker run -it -v /dev/shm:/dev/shm --runtime=nvidia --privileged=true mindspore/mindspore-gpu:1.1.0 /bin/bash
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
To test if the docker image works, please execute the python code below and check the output:
|
|
|
|
|