Skip to main content

MatterSim: A Deep Learning Atomistic Model Across Elements, Temperatures and Pressures.

Project description

MatterSim logo

arXiv Requires Python 3.9+ PyPI Downloads

MatterSim is a deep learning atomistic model across elements, temperatures and pressures.

Documentation

This README provides a quick start guide. For more comprehensive information, please refer to the MatterSim documentation.

Installation

Prerequisite

  • Python >= 3.9

Install from PyPI

[!TIP] While not mandatory, we recommend creating a clean conda environment before installing MatterSim to avoid potential package conflicts. You can create and activate a conda environment with the following commands:

# create the environment
conda create -n mattersim python=3.9

# activate the environment
conda activate mattersim

Although MatterSim can be installed with Python > 3.9, we recommend using Python == 3.9 for optimal compatibility.

To install MatterSim, use the following command. Please note that downloading the dependencies may take some time:

pip install mattersim

In case you want to install the package with the latest version, you can run the following command:

pip install git+https://github.com/microsoft/mattersim.git

Install from source code

  1. Download the source code of MatterSim and change to the directory
git clone git@github.com:microsoft/mattersim.git
cd mattersim
  1. Install MatterSim

[!WARNING] We strongly recommend that users install MatterSim using mamba or micromamba, because conda can be significantly slower when resolving the dependencies in environment.yaml.

To install the package, run the following command under the root of the folder:

mamba env create -f environment.yaml
mamba activate mattersim
uv pip install -e .

Pre-trained Models

We currently offer two pre-trained MatterSim-v1 models based on the M3GNet architecture in the pretrained_models folder:

  1. MatterSim-v1.0.0-1M: A mini version of the model that is faster to run.
  2. MatterSim-v1.0.0-5M: A larger version of the model that is more accurate.

These models have been trained using the data generated through the workflows introduced in the MatterSim manuscript, which provides an in-depth explanation of the methodologies underlying the MatterSim model.

More advanced and fully-supported pretrained versions of MatterSim, and additional materials capabilities are available in Azure Quantum Elements.

Usage

[!TIP] Note for macOS Users: If you are using macOS with Apple Silicon, please be aware of potential numerical instability with the MPS backend. We recommend using the CPU device for MatterSim on Mac to avoid these issues.

A minimal test

import torch
from loguru import logger
from ase.build import bulk
from ase.units import GPa
from mattersim.forcefield import MatterSimCalculator

device = "cuda" if torch.cuda.is_available() else "cpu"
logger.info(f"Running MatterSim on {device}")

si = bulk("Si", "diamond", a=5.43)
si.calc = MatterSimCalculator(device=device)
logger.info(f"Energy (eV)                 = {si.get_potential_energy()}")
logger.info(f"Energy per atom (eV/atom)   = {si.get_potential_energy()/len(si)}")
logger.info(f"Forces of first atom (eV/A) = {si.get_forces()[0]}")
logger.info(f"Stress[0][0] (eV/A^3)       = {si.get_stress(voigt=False)[0][0]}")
logger.info(f"Stress[0][0] (GPa)          = {si.get_stress(voigt=False)[0][0] / GPa}")

In this release, we provide two checkpoints: MatterSim-v1.0.0-1M.pth and MatterSim-v1.0.0-5M.pth. By default, the 1M version is loaded. To switch to the 5M version, manually set the load_path of MatterSimCalculator as shown below:

MatterSimCalculator(load_path="MatterSim-v1.0.0-5M.pth", device=device)

Finetune

[!TIP] MatterSim provides a finetune script to finetune the pre-trained MatterSim model on a custom dataset. Please refer to the MatterSim documentation for more details.

A minimal finetune example

torchrun --nproc_per_node=1 src/mattersim/training/finetune_mattersim.py --load_model_path mattersim-v1.0.0-1m --train_data_path tests/data/high_level_water.xyz

Reference

We kindly request that users of MatterSim version 1.0.0 cite our preprint available on arXiv:

@article{yang2024mattersim,
      title={MatterSim: A Deep Learning Atomistic Model Across Elements, Temperatures and Pressures},
      author={Han Yang and Chenxi Hu and Yichi Zhou and Xixian Liu and Yu Shi and Jielan Li and Guanzhi Li and Zekun Chen and Shuizhou Chen and Claudio Zeni and Matthew Horton and Robert Pinsler and Andrew Fowler and Daniel Zügner and Tian Xie and Jake Smith and Lixin Sun and Qian Wang and Lingyu Kong and Chang Liu and Hongxia Hao and Ziheng Lu},
      year={2024},
      eprint={2405.04967},
      archivePrefix={arXiv},
      primaryClass={cond-mat.mtrl-sci},
      url={https://arxiv.org/abs/2405.04967},
      journal={arXiv preprint arXiv:2405.04967}
}

[!IMPORTANT] We kindly ask users to explicitly specify the exact model version and checkpoint (e.g., MatterSim-v1.0.0-1M) when reporting results in academic papers or technical reports, rather than referring to the model generically as MatterSim. Precise versioning is crucial for ensuring reproducibility. For instance, the statement "This study was conducted using MatterSim-v1.0.0-1M" serves as a good example.

Limitations

MatterSim-v1 is designed specifically for atomistic simulations of bulk materials. Applications or interpretations beyond this scope should be approached with caution. For instance, when using the model for simulations involving surfaces, interfaces, or properties influenced by long-range interactions, the results may be qualitatively accurate but are not suitable for quantitative analysis. In such cases, we recommend fine-tuning the model to better align with the specific application.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

Responsible AI Transparency Documentation

The responsible AI transparency documentation can be found here.

Researcher and Developers

MatterSim is actively under development, and we welcome community engagement. If you have research interests related to this model, ideas you’d like to contribute, or issues to report, we encourage you to reach out to us at ai4s-materials@microsoft.com.

Project details


Download files

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

Source Distribution

mattersim-1.1.2rc3.tar.gz (24.3 MB view details)

Uploaded Source

Built Distributions

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

mattersim-1.1.2rc3-cp313-cp313-musllinux_1_2_x86_64.whl (729.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mattersim-1.1.2rc3-cp313-cp313-musllinux_1_2_i686.whl (712.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mattersim-1.1.2rc3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (708.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mattersim-1.1.2rc3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (687.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

mattersim-1.1.2rc3-cp313-cp313-macosx_11_0_arm64.whl (304.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mattersim-1.1.2rc3-cp312-cp312-musllinux_1_2_x86_64.whl (731.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mattersim-1.1.2rc3-cp312-cp312-musllinux_1_2_i686.whl (715.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mattersim-1.1.2rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (711.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mattersim-1.1.2rc3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (691.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

mattersim-1.1.2rc3-cp312-cp312-macosx_11_0_arm64.whl (305.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mattersim-1.1.2rc3-cp311-cp311-musllinux_1_2_x86_64.whl (741.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mattersim-1.1.2rc3-cp311-cp311-musllinux_1_2_i686.whl (722.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mattersim-1.1.2rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (719.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mattersim-1.1.2rc3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (701.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

mattersim-1.1.2rc3-cp311-cp311-macosx_11_0_arm64.whl (304.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mattersim-1.1.2rc3-cp310-cp310-musllinux_1_2_x86_64.whl (701.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mattersim-1.1.2rc3-cp310-cp310-musllinux_1_2_i686.whl (687.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mattersim-1.1.2rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (681.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mattersim-1.1.2rc3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (665.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

mattersim-1.1.2rc3-cp310-cp310-macosx_11_0_arm64.whl (304.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

mattersim-1.1.2rc3-cp39-cp39-musllinux_1_2_x86_64.whl (704.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mattersim-1.1.2rc3-cp39-cp39-musllinux_1_2_i686.whl (691.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mattersim-1.1.2rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (684.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mattersim-1.1.2rc3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (668.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

mattersim-1.1.2rc3-cp39-cp39-macosx_11_0_arm64.whl (304.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file mattersim-1.1.2rc3.tar.gz.

File metadata

  • Download URL: mattersim-1.1.2rc3.tar.gz
  • Upload date:
  • Size: 24.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mattersim-1.1.2rc3.tar.gz
Algorithm Hash digest
SHA256 e127b543fef53bd8469d9574846414a9e4e220cbd356593ed16fb059d71441f8
MD5 6d3e557cf478bbc1568ab174bbe750a8
BLAKE2b-256 e8f787ee2dba40ddfb47e34e15a87996979d241ab8975a053c714a1bdc1a477e

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff0207c4a54f921ee0ba323d8ffb6cbb6e9de0a71af195c47c68aef614cb6275
MD5 da66f03d4be96721e88b5a4ba9e92d34
BLAKE2b-256 feedeae20d4fd425e1df95aff241ce6d45280bcf34c606fec92320f2caa076a5

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e7dbf7ad0963676d3805b04797079d3301a9de7529100a7c2f6920d9d4ed7e06
MD5 c2300455970468eb641bf1498a4eb4bb
BLAKE2b-256 f5df1c4893ffa99a20c8d879bb472e9ab4bbeb913903e25810244354f273fa2e

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5634158ad07e6dde6119216d3056823c9721c1791ce0bf49a290f23de0c71b0
MD5 99392e06e492a2ac97d61d0ead7ef3d1
BLAKE2b-256 c6e7f4926cf95b1bcffc5c10e00af00b00c02767d8803f04071b771bd646778b

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd1ce770c80d695b74b3dcaa2225725aa499fac6fcad56db1c7494cabeb46558
MD5 bd6541ae0a833d96779839fad2cfd827
BLAKE2b-256 2bfee48455a13baa7f9a958457fd6380ea94d3fd5e62fd29680d4ac774f74562

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 319de966eb7c81e78611369e20d24e601ebfe52d720bf589681007d21775f8cd
MD5 afc48f7b00964eb5bf6ab07903072531
BLAKE2b-256 366a0b81a710737fceaab15ec8c96699563f70f32f57a29ac6181bf4e75695eb

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fb9974024101495fb587545fea61b2ef970705d4711a496137c1b0406dc8170
MD5 062d2da4fc014d683d73e9edc5c6b68f
BLAKE2b-256 dfc1daae2d0b0d254c256796ed3e78ca0bdf52ea424bf4f7ae8b35d2c4ec3e6b

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 608921bd152bbb98ccdb46f859168202d1eb5ce0ebf7d72a1827c5e21d9f097a
MD5 5607c73a20643fa7a70747797ea6ebf8
BLAKE2b-256 01ee1bfcdb82eb4acb1762216ccd3bcff3deb91ba1dedb070f0c2ef3698b205b

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3e4696c400fa0b46ba40dee5573bcc39218eabc4234abc0e8c908d8a5f4d8d0
MD5 9f0796e6f285bfb3b35b75372bac49cf
BLAKE2b-256 3915f923d3f786cf0e0ceca251bfc4cd22d2f9939c95b43eef7ed6abeec60ce2

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f47d4226fb40595dcbed3066b061415ff42af86af86c33ebc5d2a3d277ff8d55
MD5 80721f9bd501c2ceb926579334901bb3
BLAKE2b-256 496680ce3d966848b306a9b3531c2ac071a81d9ddc12066179c91b6d8e5b2dca

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7518e51ce685a8b71c7f41e4d93131ce82c093e5b50a84dc056fb3119331e1c
MD5 1b1f7fdcecddbd19bee49869dec8927e
BLAKE2b-256 2e28b661096cd5149f226dac4ef0c8c85b0075912b0e2d293d4b98440f6671eb

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d95c10cf88aeb184e9038cbbc99507794ed69edbd061922a18371fc5354a3f8
MD5 997f1bda3bc3a294fb4afe4496f8868f
BLAKE2b-256 3c6fddd034f6f1c96c1ce5fa80731457d653828f9812f7a410511ddcee8a2d1c

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6cfba090229fb892f88d99a4f216cc36704125f3dc8bde06ce41088dd8a50c99
MD5 0fa3f4897e383472662a16eddfff8e20
BLAKE2b-256 d55b8384ce52055b60025cd032dbcc92dabc38a4616a4f95f4f0f10fa33ae033

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 add6a5a6d5558927ae8b34737f12bd257faaeae0d375d40e03e0e48e659bae8c
MD5 48df2a8057acee5787e6cd47dc2b1222
BLAKE2b-256 8f013a87011097fc1ae86e9f24759cd509bc0ad2d28a9a040b559da36f9155fa

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 861e983ee0db7038e2c370b9520280fda3809a89d6123d93dab360b35bfc7c20
MD5 8c1a5a566d177cc47abae54ea5c16177
BLAKE2b-256 527bf7fe9e98ea976e7d521c8c9c3246b0c22c3d8d159f4d0459cd9727e649dc

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 048715360bbc0e2e6871e823285894660194ae327e34d491e391d07e3b3a9c80
MD5 d17c2c1d34e87f0d10014a6e8b5988d0
BLAKE2b-256 6e2571e78014858c9a902eb76b6a83db93b1a11febfc416039d81703b8246ef0

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a67f6bc598cbdacf4221acc3c4bff3d45075cbae124514a7487077d2648fa88
MD5 69b05744d60c62a3d3be7d24bc80b06b
BLAKE2b-256 e5d125e2781646bec3460433ffbeb5edbe73bd5be534bd8f586213175b3d6731

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 26393a49af9cacdb01427e9757339387bb1add27feb83405d64fa53dc7a1b3ed
MD5 c0f5907836ab83218d7c8d866f3599c4
BLAKE2b-256 3f0e81db646ab020306a3016e7adf1356489673d26002eb4f4e643fb0b357104

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec1bbdbc72e091dfa0f2eaee2cb771e4d5bfdbdb099579cb79eb610dce5282da
MD5 a2d21ba3cdc4ff277876be4d61e8d18c
BLAKE2b-256 c8782b8a3baf36a2911d4843aed448dc10807e7d9f58e96466d21f3c606bbf88

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd40daf52d36bd5a8470f9d9b3ff6fbdf87d565f6d26bfdea9dfc04bbda8ea0d
MD5 d7ec1bd7d997e91191a0bef5131b69dc
BLAKE2b-256 a2bdfc79a04b1b7a07859aad323407104d3ab9a9c1e2493b2fb5239a582a1488

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d7d790db1c6802c1e16990e07d78187d8ced896abb4d62487f6abcc708942c1
MD5 3177a8c32c0e9926af1115d9d1e38a93
BLAKE2b-256 564bd7866e9c7618b514d02b7f9b51a0f3546cfd98c1442ab8c038c84ff9c16e

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c24eebf9d84a4e1c7b0fedd5b54137fa4b6f4222df45ae1bbf0ea8855acd43d0
MD5 a062aa191eb249f5e320a1062ab96f3a
BLAKE2b-256 a5a8ae453714753a32b3c2504eadd13a1a711b79958d7303f2a3f1f891ba58a7

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7556e401bc63f480da026823b04ead6f7c455a0f3478cdce12e64a3f5b22d598
MD5 8ee97cda39df65f42c5bfccdb7538e1f
BLAKE2b-256 a30b897588c86d3787fe1342ca28b5120f1d4008e9ec493b984b854b6e8889bc

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9220277c2fade4eb07317556d550be7676ccce21dc4ff21cd79c076f11ce7c96
MD5 9e21a14022ef6dee2bfdf9a6dd3577c2
BLAKE2b-256 7b973b29adb6b18607549648bf700487cc30c1f9f16817a0948a580529737717

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e8275d6383a06066a5910a6562f12592f5bcaa7d36826defc2efad77e49c9c4
MD5 50395a91042fab7b7fd1fd4d23ab13ae
BLAKE2b-256 53bd4d700cf398b50e86a6751213d76b071d748980e352c79e4e125d1366b1ba

See more details on using hashes here.

File details

Details for the file mattersim-1.1.2rc3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mattersim-1.1.2rc3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c5a3fda444b8a9881bb60c46acc510975fb298ab1e47d16f0b7f40f590aae45
MD5 6705b27157c5d589684e14af94e78d57
BLAKE2b-256 006502f95370d9486b00225e8a9689fb296e8e7d83592933285f14d3b7a73f13

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