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.6.0.dev20250316-cp311-none-any.whl (383.9 MB view details)

Uploaded CPython 3.11

mindspore_dev-2.6.0.dev20250316-cp311-cp311-win_amd64.whl (106.7 MB view details)

Uploaded CPython 3.11Windows x86-64

mindspore_dev-2.6.0.dev20250316-cp311-cp311-macosx_11_0_arm64.whl (144.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mindspore_dev-2.6.0.dev20250316-cp311-cp311-macosx_10_15_x86_64.whl (162.5 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

mindspore_dev-2.6.0.dev20250316-cp310-none-any.whl (382.1 MB view details)

Uploaded CPython 3.10

mindspore_dev-2.6.0.dev20250316-cp310-cp310-win_amd64.whl (106.5 MB view details)

Uploaded CPython 3.10Windows x86-64

mindspore_dev-2.6.0.dev20250316-cp310-cp310-macosx_11_0_arm64.whl (144.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mindspore_dev-2.6.0.dev20250316-cp310-cp310-macosx_10_15_x86_64.whl (162.0 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

mindspore_dev-2.6.0.dev20250316-cp39-none-any.whl (382.0 MB view details)

Uploaded CPython 3.9

mindspore_dev-2.6.0.dev20250316-cp39-cp39-win_amd64.whl (106.3 MB view details)

Uploaded CPython 3.9Windows x86-64

mindspore_dev-2.6.0.dev20250316-cp39-cp39-macosx_11_0_arm64.whl (144.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

mindspore_dev-2.6.0.dev20250316-cp39-cp39-macosx_10_15_x86_64.whl (162.0 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp311-none-any.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp311-none-any.whl
  • Upload date:
  • Size: 383.9 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.6.0.dev20250316-cp311-none-any.whl
Algorithm Hash digest
SHA256 7f91f0f4800dcf6cc45fc4a32d868f7d53617a3a8aec0d678a669ce75fc357a2
MD5 0abd321c583e135215fa890dc59bf80b
BLAKE2b-256 5379aed796f55a5c2528d4c1f442e87fe02fdff518b4960a2925ccfc921df3ae

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 106.7 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.6.0.dev20250316-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8aa93c6aa913f11df6b95d44571a340a323eca685ddf1537c649f554e2a71e78
MD5 cf6c179aef0c8dd52f93c38645086d13
BLAKE2b-256 eeef058769c29689b01f449d9ce7ef81628cd81d4211f684caa96b93631ca6f8

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp311-cp311-manylinux1_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp311-cp311-manylinux1_x86_64.whl
  • Upload date:
  • Size: 958.3 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.6.0.dev20250316-cp311-cp311-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 78e6c71793127448f9334907e44d3b9f59ceb33e80150fe7a75fb366d251555b
MD5 b9bd25f188a4ce63a205d96c37672c52
BLAKE2b-256 710cfc22fc8a59d88c8e0712b4936e58b954e7c8730bc52a4dfed3d079de8f78

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 144.6 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.6.0.dev20250316-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d96e93cd308203ded50add330c11b574659061325d8bee52323c39c50f7fb850
MD5 7f2d10aedcd57b02527b65f47890b072
BLAKE2b-256 bb74290529f17fe094c2d5caacddbb12b32cb0bb70bd9fac9d55e1f6d64aa67b

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp311-cp311-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 162.5 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.6.0.dev20250316-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 322a5d4f8a2fa8a781773f95ab25070319c15af0a8819dde1fc45cd606c2eb92
MD5 62e2b43ef6494c9805f30553d6b33375
BLAKE2b-256 29bbc6a4df637e82b1bd0ab398dc96461b7c6d8dc6e6ce805b40a52b2777384b

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp310-none-any.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp310-none-any.whl
  • Upload date:
  • Size: 382.1 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.6.0.dev20250316-cp310-none-any.whl
Algorithm Hash digest
SHA256 b32be41af0619dde6e6a8ef90d38fe39c6eca13eb14bfa70a58cca70d54e7f53
MD5 5941bf16178d568ebd5618edfcfeb780
BLAKE2b-256 1546a3cf0301ca87b14c88535244ef7f4773c6c72a994cd1492cac2f5e2ce6e0

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 106.5 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.6.0.dev20250316-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 469f6166b1136c7eaf402cc928759243a7a21a6e00b214892b9dc9ae45b972f3
MD5 c7e0e5d78aeb9943b8480a98667d814d
BLAKE2b-256 9748905e074e7520ea8405c8f3da56c450e7a45d8af14a548585682593f83dd8

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp310-cp310-manylinux1_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp310-cp310-manylinux1_x86_64.whl
  • Upload date:
  • Size: 955.3 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.6.0.dev20250316-cp310-cp310-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2d0b81ad147f5c12a4ad7b963ead59245a0f8171181d689052d4a69e71e78da9
MD5 e3820e1640a11a362e73920915cf4268
BLAKE2b-256 0ca060a1c2d54dc79bb2998aa5ec17bc5d41bbaf35c1e89ea040fd962fd9766d

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 144.2 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.6.0.dev20250316-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4fc36c8a07569a4da427e5c681c1212ca06d524225fad80f6763dcc0ffd86ff
MD5 520452da59899f9adca34d0d3cf07a78
BLAKE2b-256 ff771aba9f6f7ea5507564ad262046acd2f6fba42a2711c47f29550655b4429f

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 162.0 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.6.0.dev20250316-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ef24f9b8e3566a9625b0f083da890efbf24201fb18a7a685358d24746fed58ed
MD5 21b2593b8b80018eefd892ac0627f511
BLAKE2b-256 436694799d9019aa4c31ff4b6e5907767ebd9822f473f44e2c394b087759927c

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp39-none-any.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp39-none-any.whl
  • Upload date:
  • Size: 382.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.6.0.dev20250316-cp39-none-any.whl
Algorithm Hash digest
SHA256 2491ae99d3369d211738404fa296fe0320c919e5f2bd2eec630e624608eb982e
MD5 3965e84d8ecfb7d92c770a4ede6cc472
BLAKE2b-256 df7035cea2699930908b4d83e74af69bd9058ba48e87f7d083cbd65204ff0265

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 106.3 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.6.0.dev20250316-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f74a33fb47e14e9e81611b528963cb21c1d0585543048fd832abb28b887cd4dc
MD5 74e43780a70ea16c070f123c9ab4d369
BLAKE2b-256 13a3475e41c1e0d3137ec18d5b01053febcacf261ef86e904fc4468c3742769d

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 955.3 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.6.0.dev20250316-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 afbba05c084c88696c80e596702b276d288ac1112705200a4c5f6a5deabe1e59
MD5 19d66dc417974f1c480c5c5a38793406
BLAKE2b-256 42395661935a339e8b93cc67ea3640cb2cbe878bbfa1216604e2525b75a6008c

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 144.3 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.6.0.dev20250316-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7668db0e5f07945406761dcf40d967e9c438f8748d28e9ff5c1dcbae3e50d25
MD5 8046cc4bb7193fef4ba0f55a1ffb559f
BLAKE2b-256 4598039c19c3605986c84dd15d1f8238d37205db557101c6ab61080408652195

See more details on using hashes here.

File details

Details for the file mindspore_dev-2.6.0.dev20250316-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: mindspore_dev-2.6.0.dev20250316-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 162.0 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.6.0.dev20250316-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c474d2311a749371cedf19fcadd630fd62961f07ca9afdf03fbd71667a12fb00
MD5 4814dc2baad3c19ad0f64b158a153496
BLAKE2b-256 a8fa9da90d88a004631690dd324687d13b20d84713e99604b592c47cca47345e

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