This document describes how to quickly install MindSpore by pip in a Linux system with a GPU environment.
PATH
(e.g. export PATH=/usr/local/cuda-${version}/bin:$PATH
) and LD_LIBRARY_PATH
(e.g. export LD_LIBRARY_PATH=/usr/local/cuda-${version}/lib64:$LD_LIBRARY_PATH
) need to be set. Please refer to CUDA installation guide for detailed post installation actions.pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/{version}/MindSpore/gpu/ubuntu_x86/cuda-10.1/mindspore_gpu-{version}-cp37-cp37m-linux_{arch}.whl --trusted-host ms-release.obs.cn-north-4.myhuaweicloud.com -i https://pypi.tuna.tsinghua.edu.cn/simple
Of which,
{version}
denotes the version of MindSpore. For example, when you are downloading MindSpore 1.0.1, {version}
should be 1.0.1.{arch}
denotes the system architecture. For example, the Linux system you are using is x86 architecture 64-bit, {arch}
should be x86_64
. If the system is ARM architecture 64-bit, then it should be aarch64
.import numpy as np
from mindspore import Tensor
import mindspore.ops as ops
import mindspore.context as context
context.set_context(device_target="GPU")
x = Tensor(np.ones([1,3,3,4]).astype(np.float32))
y = Tensor(np.ones([1,3,3,4]).astype(np.float32))
print(ops.tensor_add(x, y))
[[[ 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.]]]
It means MindSpore has been installed successfully.
Using the following command if you need update MindSpore version:
pip install --upgrade mindspore-gpu
If you need to analyze information such as model scalars, graphs, computation graphs and model traceback, you can install MindInsight.
For more details, please refer to MindInsight.
If you need to conduct AI model security research or enhance the security of the model in you applications, you can install MindArmour.
For more details, please refer to MindArmour.
If you need to access and experience MindSpore pre-trained models quickly, you can install MindSpore Hub.
For more details, please refer to MindSpore Hub.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。