1.1K Star 1.8K Fork 3.1K

GVPMindSpore / mindquantum

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install_with_docker_en.md 3.00 KB
一键复制 编辑 原始数据 按行查看 历史
lvmingfu 提交于 2022-09-26 17:00 . modify code formats for master

MindQuantum Docker Installation GUide

Installing MindQuantum by Docker

This document describes how to use Docker to quickly install MindQuantum. First, you need to install MindSpore through Docker. The process is introduced on MindSpore's official website. This part will be repeated below.

Obtaining the MindSpore Image

For the CPU backend, you can directly use the following command to obtain the latest stable image:

docker pull swr.cn-south-1.myhuaweicloud.com/mindspore/mindspore-cpu:{tag}

In which, {tag} corresponds to the tag in the above table.

Running the MindSpore Image

Execute the following command to start the Docker container instance:

docker run -it swr.cn-south-1.myhuaweicloud.com/mindspore/mindspore-cpu:{tag} /bin/bash

In which, {tag} corresponds to the tag in the above table.

MindSpore Installation Verification

  • If you are installing a container of the specified version x.y.z.

After entering the MindSpore container according to the above steps, to test whether Docker is working properly, please run the following Python code and check the output:

import numpy as np
import mindspore as ms
from mindspore import set_context, ops, Tensor

set_context(mode=ms.PYNATIVE_MODE, device_target='CPU')

x = Tensor(np.ones([1, 3, 3, 4]).astype(np.float32))
y = Tensor(np.ones([1, 3, 3, 4]).astype(np.float32))
print(ops.add(x, y))

When the code runs successfully, it will output:

[[[[2., 2., 2., 2.],
   [2., 2., 2., 2.],
   [2., 2., 2., 2.]],

  [[2., 2., 2., 2.],
   [2., 2., 2., 2.],
   [2., 2., 2., 2.]],

  [[2., 2., 2., 2.],
   [2., 2., 2., 2.],
   [2., 2., 2., 2.]]]]

At this point, you have successfully installed the MindSpore CPU version by Docker.

Installing MindQuantum Inside a Docker Container

  1. Enter the Docker container.

    docker exec -it {docker_container} /bin/bash

    In which, {docker_container} is the id or name of the docker container.

  2. Choose to install by pip or by compiling.

    Install by compiling:

    git clone https://gitee.com/mindspore/mindquantum.git
    cd ~/mindquantum
    python setup.py install --user

    Install by pip:

    pip install https://hiq.huaweicloud.com/download/mindquantum/newest/linux/mindquantum-master-cp37-cp37m-linux_x86_64.whl -i https://pypi.tuna.tsinghua.edu.cn/simple

MindQuantum Installation Verification

python -c 'import mindquantum'
Python
1
https://gitee.com/mindspore/mindquantum.git
git@gitee.com:mindspore/mindquantum.git
mindspore
mindquantum
mindquantum
master

搜索帮助