Skip to main content

MindSpore is a new open source deep learning training/inference framework that could be used for mobile, edge and cloud scenarios.

Project description

MindSpore Logo

PyPI - Python Version PyPI Downloads DockerHub LICENSE PRs Welcome

查看中文

What Is MindSpore

MindSpore is a new open source deep learning training/inference framework that could be used for mobile, edge and cloud scenarios. MindSpore is designed to provide development experience with friendly design and efficient execution for the data scientists and algorithmic engineers, native support for Ascend AI processor, and software hardware co-optimization. At the meantime MindSpore as a global AI open source community, aims to further advance the development and enrichment of the AI software/hardware application ecosystem.

MindSpore Architecture

For more details please check out our Architecture Guide.

Automatic Differentiation

Currently, there are two automatic differentiation techniques in mainstream deep learning frameworks:

  • Operator Overloading (OO): Overloading the basic operators of the programming language to encapsulate their gradient rules. Record the operation trajectory of the network during forward execution in an operator overloaded manner, then apply the chain rule to the dynamically generated data flow graph to implement automatic differentiation.
  • Source Transformation (ST): This technology is evolving from the functional programming framework and performs automatic differential transformation on the intermediate expression (the expression form of the program during the compilation process) in the form of just-in-time compilation (JIT), supporting complex control flow scenarios, higher-order functions and closures.

PyTorch used OO. Compared to ST, OO generates gradient graph in runtime, so it does not need to take function call and control flow into consideration, which makes it easier to develop. However, OO can not perform gradient graph optimization in compilation time and the control flow has to be unfolded in runtime, so it is difficult to achieve extreme optimization in performance.

MindSpore implemented automatic differentiation based on ST. On the one hand, it supports automatic differentiation of automatic control flow, so it is quite convenient to build models like PyTorch. On the other hand, MindSpore can perform static compilation optimization on neural networks to achieve great performance.

Automatic Differentiation

The implementation of MindSpore automatic differentiation can be understood as the symbolic differentiation of the program itself. Because MindSpore IR is a functional intermediate expression, it has an intuitive correspondence with the composite function in basic algebra. The derivation formula of the composite function composed of arbitrary basic functions can be derived. Each primitive operation in MindSpore IR can correspond to the basic functions in basic algebra, which can build more complex flow control.

Automatic Parallel

The goal of MindSpore automatic parallel is to build a training method that combines data parallelism, model parallelism, and hybrid parallelism. It can automatically select a least cost model splitting strategy to achieve automatic distributed parallel training.

Automatic Parallel

At present, MindSpore uses a fine-grained parallel strategy of splitting operators, that is, each operator in the figure is split into a cluster to complete parallel operations. The splitting strategy during this period may be very complicated, but as a developer advocating Pythonic, you don't need to care about the underlying implementation, as long as the top-level API compute is efficient.

Installation

Pip mode method installation

MindSpore offers build options across multiple backends:

Hardware Platform Operating System Status
Ascend Ubuntu-x86 ✔️
Ubuntu-aarch64 ✔️
EulerOS-aarch64 ✔️
CentOS-x86 ✔️
CentOS-aarch64 ✔️
GPU CUDA 10.1 Ubuntu-x86 ✔️
CPU Ubuntu-x86 ✔️
Ubuntu-aarch64 ✔️
Windows-x86 ✔️

For installation using pip, take CPU and Ubuntu-x86 build version as an example:

  1. Download whl from MindSpore download page, and install the package.

    pip install https://ms-release.obs.cn-north-4.myhuaweicloud.com/1.2.0-rc1/MindSpore/cpu/ubuntu_x86/mindspore-1.2.0rc1-cp37-cp37m-linux_x86_64.whl
    
  2. Run the following command to verify the install.

    import numpy as np
    import mindspore.context as context
    import mindspore.nn as nn
    from mindspore import Tensor
    from mindspore.ops import operations as P
    
    context.set_context(mode=context.GRAPH_MODE, device_target="CPU")
    
    class Mul(nn.Cell):
        def __init__(self):
            super(Mul, self).__init__()
            self.mul = P.Mul()
    
        def construct(self, x, y):
            return self.mul(x, y)
    
    x = Tensor(np.array([1.0, 2.0, 3.0]).astype(np.float32))
    y = Tensor(np.array([4.0, 5.0, 6.0]).astype(np.float32))
    
    mul = Mul()
    print(mul(x, y))
    
    [ 4. 10. 18.]
    

Use pip mode method to install MindSpore in different environments. Refer to the following documents.

Source code compilation installation

Use the source code compilation method to install MindSpore in different environments. Refer to the following documents.

Docker Image

MindSpore docker image is hosted on Docker Hub, currently the containerized build options are supported as follows:

Hardware Platform Docker Image Repository Tag Description
CPU mindspore/mindspore-cpu x.y.z Production environment with pre-installed MindSpore x.y.z CPU release.
devel Development environment provided to build MindSpore (with CPU backend) from the source, refer to https://www.mindspore.cn/install/en for installation details.
runtime Runtime environment provided to install MindSpore binary package with CPU backend.
GPU mindspore/mindspore-gpu x.y.z Production environment with pre-installed MindSpore x.y.z GPU release.
devel Development environment provided to build MindSpore (with GPU CUDA10.1 backend) from the source, refer to https://www.mindspore.cn/install/en for installation details.
runtime Runtime environment provided to install MindSpore binary package with GPU CUDA10.1 backend.

NOTICE: For GPU devel docker image, it's NOT suggested to directly install the whl package after building from the source, instead we strongly RECOMMEND you transfer and install the whl package inside GPU runtime docker image.

  • CPU

    For CPU backend, you can directly pull and run the latest stable image using the below command:

    docker pull mindspore/mindspore-cpu:1.1.0
    docker run -it mindspore/mindspore-cpu:1.1.0 /bin/bash
    
  • GPU

    For GPU backend, please make sure the nvidia-container-toolkit has been installed in advance, here are some install guidelines for Ubuntu users:

    DISTRIBUTION=$(. /etc/os-release; echo $ID$VERSION_ID)
    curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | apt-key add -
    curl -s -L https://nvidia.github.io/nvidia-docker/$DISTRIBUTION/nvidia-docker.list | tee /etc/apt/sources.list.d/nvidia-docker.list
    
    sudo apt-get update && sudo apt-get install -y nvidia-container-toolkit nvidia-docker2
    sudo systemctl restart docker
    

    Then edit the file daemon.json:

    $ vim /etc/docker/daemon.json
    {
        "runtimes": {
            "nvidia": {
                "path": "nvidia-container-runtime",
                "runtimeArgs": []
            }
        }
    }
    

    Restart docker again:

    sudo systemctl daemon-reload
    sudo systemctl restart docker
    

    Then you can pull and run the latest stable image using the below command:

    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:

    import numpy as np
    import mindspore.context as context
    from mindspore import Tensor
    from mindspore.ops import functional as F
    
    context.set_context(mode=context.PYNATIVE_MODE, 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(F.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.]]]
    

If you want to learn more about the building process of MindSpore docker images, please check out docker repo for the details.

Quickstart

See the Quick Start to implement the image classification.

Docs

More details about installation guide, tutorials and APIs, please see the User Documentation.

Community

Governance

Check out how MindSpore Open Governance works.

Communication

Contributing

Welcome contributions. See our Contributor Wiki for more details.

Maintenance phases

Project stable branches will be in one of the following states:

State Time frame Summary
Planning 1 - 3 months Features are under planning.
Development 3 months Features are under development.
Maintained 6 - 12 months All bugfixes are appropriate. Releases produced.
Unmaintained 0 - 3 months All bugfixes are appropriate. No Maintainers and No Releases produced.
End Of Life (EOL) N/A Version no longer accepting changes.

Maintenance status

Version Status Initial Release Date Next Phase EOL Date
r2.4 Maintained 2024-10-30 Unmaintained
2025-10-30 estimated
2025-10-30
r2.3 Maintained 2024-07-15 Unmaintained
2025-07-15 estimated
2025-07-15
r2.2 End Of Life 2023-10-18 2024-10-18
r2.1 End Of Life 2023-07-29 2024-07-29
r2.0 End Of Life 2023-06-15 2024-06-15
r1.10 End Of Life 2023-02-02 2024-02-02
r1.9 End Of Life 2022-10-26 2023-10-26
r1.8 End Of Life 2022-07-29 2023-07-29
r1.7 End Of Life 2022-04-29 2023-04-29
r1.6 End Of Life 2022-01-29 2023-01-29
r1.5 End Of Life 2021-10-15 2022-10-15
r1.4 End Of Life 2021-08-15 2022-08-15
r1.3 End Of Life 2021-07-15 2022-07-15
r1.2 End Of Life 2021-04-15 2022-04-29
r1.1 End Of Life 2020-12-31 2021-09-30
r1.0 End Of Life 2020-09-24 2021-07-30
r0.7 End Of Life 2020-08-31 2021-02-28
r0.6 End Of Life 2020-07-31 2020-12-30
r0.5 End Of Life 2020-06-30 2021-06-30
r0.3 End Of Life 2020-05-31 2020-09-30
r0.2 End Of Life 2020-04-30 2020-08-31
r0.1 End Of Life 2020-03-28 2020-06-30

Release Notes

The release notes, see our RELEASE.

License

Apache License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mindspore_dev-2.5.0.dev20250202-cp311-none-any.whl (347.4 MB view details)

Uploaded CPython 3.11

mindspore_dev-2.5.0.dev20250202-cp311-cp311-win_amd64.whl (102.9 MB view details)

Uploaded CPython 3.11Windows x86-64

mindspore_dev-2.5.0.dev20250202-cp311-cp311-macosx_11_0_arm64.whl (231.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mindspore_dev-2.5.0.dev20250202-cp311-cp311-macosx_10_15_x86_64.whl (248.8 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

mindspore_dev-2.5.0.dev20250202-cp310-none-any.whl (345.0 MB view details)

Uploaded CPython 3.10

mindspore_dev-2.5.0.dev20250202-cp310-cp310-win_amd64.whl (102.9 MB view details)

Uploaded CPython 3.10Windows x86-64

mindspore_dev-2.5.0.dev20250202-cp310-cp310-macosx_11_0_arm64.whl (230.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mindspore_dev-2.5.0.dev20250202-cp310-cp310-macosx_10_15_x86_64.whl (248.3 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

mindspore_dev-2.5.0.dev20250202-cp39-none-any.whl (345.0 MB view details)

Uploaded CPython 3.9

mindspore_dev-2.5.0.dev20250202-cp39-cp39-win_amd64.whl (103.0 MB view details)

Uploaded CPython 3.9Windows x86-64

mindspore_dev-2.5.0.dev20250202-cp39-cp39-macosx_11_0_arm64.whl (231.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mindspore_dev-2.5.0.dev20250202-cp39-cp39-macosx_10_15_x86_64.whl (248.4 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp311-none-any.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp311-none-any.whl
  • Upload date:
  • Size: 347.4 MB
  • Tags: CPython 3.11
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp311-none-any.whl
Algorithm Hash digest
SHA256 dc7fc74dc119f747f1a4837829e7dc03e8db228a625deee097d8ba06942136ef
MD5 5a90e5839ceb744d2c6cf892361e16df
BLAKE2b-256 50e1144ad7b2b1ed14a34bb3fcc42563322445ddd22b3103111830d3c4c15b94

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 102.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86260102fb3bfe1f60d0e301193341f630d6a46cec38e91f10aae167a9755d9c
MD5 cec6bd480b203219e3c14df241bc0a8a
BLAKE2b-256 c7c69f110227d7defe81d280206a55aecb4169744a581bd45559f7b2ad99da0e

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp311-cp311-manylinux1_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp311-cp311-manylinux1_x86_64.whl
  • Upload date:
  • Size: 962.0 MB
  • Tags: CPython 3.11
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp311-cp311-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 24bd109cc6dae6b51501d0a3c91b8487503a3597bf743eff012dc83a0939f545
MD5 69259b8846ae0f6564ee91abeaba2da8
BLAKE2b-256 d3496eeaf4863bd05f5309460ed3e672eedc9481312af5f534bd90d034f6c791

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 231.3 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7f20c482c559d37ccb20c4a94e0cd54bff43e54a1a046e069c0ba20e6102181
MD5 6a0922bd3296615c2d214d85f739e058
BLAKE2b-256 afc417192b5a910c2df6652bd7df832af14097646e11af3a07634615356a911c

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp311-cp311-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 248.8 MB
  • Tags: CPython 3.11, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8d93fb31c05190e7989a8146991bc066db81346900d609c8e59350521c82f721
MD5 0bbd0a8ed11616962c9d1397752b8dd1
BLAKE2b-256 d3ae2e486b286bd69d450d042295b69c19ef9837c53b83891aca0b1f17734404

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp310-none-any.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp310-none-any.whl
  • Upload date:
  • Size: 345.0 MB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp310-none-any.whl
Algorithm Hash digest
SHA256 e6218e4b3c42f20fe2346b477b8a2a5f89f15e171e3baf8e75fcb2eb58a06d3c
MD5 f07b72e108d6dbbcab9e181934271f43
BLAKE2b-256 7dd6c500cfe987184501a6825979d74aaa4a2aae445aa62e97c531d64d9d07b0

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 102.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d7c7f6c454a30d9e6f823773cf6589b75631c0269b713a711ea4e2db98657c7a
MD5 fed87734a3b4fc64b5d8103f3c97d842
BLAKE2b-256 ffb368cacde94835ef480f60ab6d6b57c56304058a8c4d4add37350c4b0e785c

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp310-cp310-manylinux1_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp310-cp310-manylinux1_x86_64.whl
  • Upload date:
  • Size: 958.4 MB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f9a7fbc015dcd025d4b753eba27ef2953b1b7001f8a8c713f200bb7cf87ada0f
MD5 473ef3c3c7aef68635d9bbf47dc09218
BLAKE2b-256 12f6c098dd0c8145e83f6691f9ca8b75cef528f98ea807bf0517de0ad9dc4a89

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 230.9 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8de61952ee2c432a710f0571d4b7c2c9c411904e510090d507daad229005fe23
MD5 e064f1102c8bda6f560861187a67498a
BLAKE2b-256 e7145ce5ebf53a9de8d69b40792d9055323128e311aa17dbd94930e982ec680b

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 248.3 MB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ce5259802d98420e8c63d68580c3f354ec20ce9a07cfe967c065a9dfa6931ef
MD5 a7f7b8683669bcbf758171ba6ed97dfd
BLAKE2b-256 3241acf5085f4990586988cb84b43f3abf64bee002f676771d1853b46d289016

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp39-none-any.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp39-none-any.whl
  • Upload date:
  • Size: 345.0 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp39-none-any.whl
Algorithm Hash digest
SHA256 df4ca07abe5c8b61bf8f1ddd01212ea299863306f90245a96c2c1cc2e3bb3bb3
MD5 07da39439559d02127b1bb0e96061f6d
BLAKE2b-256 53af3aca2c8d0d41b8e0c86b365a132a2e94664c44d4d75c9b45efb5c41cba40

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 103.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7cf95a7fd3eaef37e4bf96766d396ed36cf6aca630e539ff41b7bd51d109f70c
MD5 2bf86dfbd4dfa57c35b8c61df4a0da75
BLAKE2b-256 e0753be09e9336a9eb321ebe613b90b2153b7f6f2e964e9e3335781b6334119a

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 958.4 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 da540aba3bff08e31364e8e34076b2b82c472f9c517bc96d22c573fbef05ea4c
MD5 dd736742b90d8b29959971ca3c00c995
BLAKE2b-256 626af8c2d63f1fe187e344c3bf0473299f89954bbd5c3250ada0a20207dbcb2d

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 231.0 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd304a25b8137a0d1274e66cef01820d7258970fbe3ab4aa31746c2b67d1480c
MD5 569e5117047b937f7fa266698d911bc4
BLAKE2b-256 f5803e5c367dc468b2f1134f658c8ed4366ed3a5df6576b69b9cc20df000d7d8

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.5.0.dev20250202-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.5.0.dev20250202-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 248.4 MB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.7.1

File hashes

Hashes for mindspore_dev-2.5.0.dev20250202-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3edb80b74302c0ff76b0930b03b483c9ec973a4e6beb7ef608e8575e9574a810
MD5 4c213c61af82cac1f4bf31923f951cb2
BLAKE2b-256 4bdff67f14f3136fcca998abf57e6b23593eff808abfc9a34cb64b63a75f6f95

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page