Skip to main content

No project description provided

Project description

qarray-rust-core

GitHub Workflow Status PyPI

Rust logo Python logo

Quantum Dot Constant Capacitance Simulator is a high-performance Python package that leverages the power of Rust and Rayon to provide a fully parallelised and optimised simulation environment for quantum dots with constant capacitance.

This package provides core functionality; it is not intended that the user will interact with it directly.

Features

  • Ultra-fast Simulation: Harnesses the speed of Rust and the parallelism of Rayon to deliver lightning-fast simulations.
  • Constant Capacitance: Specialized for simulating quantum dots with constant capacitance, allowing precise modelling of charge dynamics.
  • User-Friendly: Designed with ease of use in mind, making it accessible to both experts and newcomers in quantum dot simulations.
  • Extensive Documentation: Comprehensive documentation and examples to help you get started quickly.

Installation

Install Quantum Dot Constant Capacitance Simulator using pip:

pip install qarray-rust-core

Usage

This package exposes two functions to be called from python:

  • ground_state_open - computes the lowest energy state of a quantum dot array with constant capacitance and which is open, such that the total number of changes is not fixed.
  • ground_state_closed - computes the lowest energy state of a quantum dot array with constant capacitance and which is closed, such that the total number of changes is fixed.

The python code to call these functions is as follows:

from qarray-rust-core import (ground_state_open, ground_state_closed)
import numpy as np 

# the dot-dot capacitance matrix
cdd = np.array([
     [1, -0.1],
     [-0.1, 1]
])
cdd_inv = np.linalg.inv(cdd)

# the dot-gate capacitance matrix
cgd = np.array([
       [1, 0.3],
       [0.3, 1]
 ])

# define a matrix of gate voltages to sweep over the first gate
vg = np.stack([np.linspace(-1, 1, 100), np.zeros(100)], axis = -1)

n_charge = 3 # the number of changes to confine in the quantum dot array for the closed case 
threshold = 1 # threshold to avoid having to consider all possible charge states, setting it 1 is always correct, however has a computatinal cost. 

n_open = ground_state_open(vg, cgd, cdd_inv, threshold, T = 0)
n_closed = ground_state_closed(vg, n_charge, cgd, cdd, cdd_inv, threshold, T = 0)

It is not intended the user ever call these functions directly.

There is a pure Python wrapper that provides a more user-friendly interface to this core functionality. See Quantum Dot Constant Capacitance Simulator. This package provides:

  • A user-friendly interface to the core functionality.
  • Plotting, charge sensing, virtual gate and gate voltage sweeping (1d and 2d) functionality.
  • Advanced type checking using pydantic.
  • Automated testing including for the functionality in this package.
  • More examples.

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

qarray_rust_core-1.3.1.tar.gz (14.2 kB view details)

Uploaded Source

Built Distributions

qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (383.5 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

qarray_rust_core-1.3.1-cp312-none-win_amd64.whl (252.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

qarray_rust_core-1.3.1-cp312-none-win32.whl (230.1 kB view details)

Uploaded CPython 3.12 Windows x86

qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (524.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (426.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (383.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

qarray_rust_core-1.3.1-cp312-cp312-macosx_11_0_arm64.whl (324.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

qarray_rust_core-1.3.1-cp311-none-win_amd64.whl (257.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

qarray_rust_core-1.3.1-cp311-none-win32.whl (233.7 kB view details)

Uploaded CPython 3.11 Windows x86

qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (523.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (384.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

qarray_rust_core-1.3.1-cp311-cp311-macosx_11_0_arm64.whl (324.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

qarray_rust_core-1.3.1-cp310-none-win_amd64.whl (257.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

qarray_rust_core-1.3.1-cp310-none-win32.whl (233.7 kB view details)

Uploaded CPython 3.10 Windows x86

qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (383.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (523.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (428.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (384.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

qarray_rust_core-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (324.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

File details

Details for the file qarray_rust_core-1.3.1.tar.gz.

File metadata

  • Download URL: qarray_rust_core-1.3.1.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for qarray_rust_core-1.3.1.tar.gz
Algorithm Hash digest
SHA256 9406376bf0022d257dba97cf4d0ef451bc296e635d5e0911e41a3a991b2954c8
MD5 8f1556eeeb7fe811d547eef42eba0e7b
BLAKE2b-256 70e9a6a6551edca36ad27c596b49e33fc3870033fdbf28e0ce2ddbd3eb062ed4

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78c44eecd5d3f414b4aaafd2f52111f3b39df6b09f1c467736b6402944dd1027
MD5 2d83e5e4366b9182c3b333adb2ccf9e0
BLAKE2b-256 8743b479566687570afcd5c61eb2c70650c2749bad5b55bc6c8a8bf7ba945b93

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0314969ffcbeda6a593a1ffb2b6594a5eecbbd4f29dcbc37843a145ba8666dbc
MD5 b076b7dc0e0f0368ca92b57402864e14
BLAKE2b-256 fca019212eaed41785bef350b756dcaa285f6977a7e6f1a374a36de9c83662ec

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 76bb31a67f24836793f3271bc2992227ad8174f2c24e959a21fa848483f2122f
MD5 419abba44b37f456b20bf32ae9b09ece
BLAKE2b-256 9b4ea5203bbb75a24ddf43136ce44e661b270079af3c75b65c0d5238e20a4297

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp312-none-win32.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 37bc60daaa4518b983aea5cee9e5b9dcf0f9d1bee2b2c7211b6ddd943d1d982a
MD5 719dcf4232ea7e38dfdef2dee9b7fd80
BLAKE2b-256 55c9388dd922989e9df8ba7af730adafa383cb1ba224a01027d26375140a6913

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 970e52adc92937f3595c675b5e5faf11fc84b1b285a6488da0e0704fb72180b8
MD5 cd15c8cf3a768966d57b57b1029d97cf
BLAKE2b-256 64bc0c7c9b4c94697c2f5d272c075a8cbe2b6bdbf3865a1348688044187cbbda

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0bdf89165087ee5e738308913a8637b23ff69ee19eae39430e1303cc38a9fbc8
MD5 19429ea5faa5dbbc0205493de7c2a4e1
BLAKE2b-256 9de7efa95490cf14ae27a1c87f044b356b08a7be63f742800e83da54fcbb3227

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f889bb88d1f0988b0974b7943f94ec873390d91b18ec474a928fb8ae37be52c1
MD5 37fb218bf352a07505df0a8c6e756885
BLAKE2b-256 cc09652dbe9f766db67514021afd9f3797de0cc2baad3757ba0fe5dcbbc87c05

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfd8060f4b91ee98c14fe75eaab1d6c49aba70d2385b161a56b820f4e5c056ac
MD5 4457b4fc2a0f0392d9a1b05adcdac142
BLAKE2b-256 dc400bea94d3bcf8016218374f9df55f87d9a593698ff2893347a9856454811b

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6b21c4690e5d722b28e744e8fdeb9d816fc2766cf58bb70a707f22e072eb96d8
MD5 24166d016f4d0f43866b3645578ce1da
BLAKE2b-256 16ad8a6da781019aef950904250cf38eab2e1cf3612f521bcc970fd45957e116

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1474a68c79c0b035ae65bc15bbb5b4ac6ee550764463c396b812506436843db
MD5 51c53dca4d4c3a65a38c315fdc410f59
BLAKE2b-256 df116340cf67333a5bb10306461ce70998293d88ee4cf9da16a4180a024cb8ae

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8b965acd31ec678474cc1d6ec82085f4a0754953578767d8fc405430ba8c7185
MD5 364c451ed3926d9d952a62a56cbb978f
BLAKE2b-256 702843d33d5ab9c28fc5014d49d6db414bd1d239ab266cd667a0287020ba7a89

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-none-win32.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 5650478e8b6c0a4c10256c868e6dd9c12189a9a0ccc23ae1e489ac1b974e416e
MD5 d25da211c961785d5aeb9d6532378491
BLAKE2b-256 c8964a061252e650bb78e06388043f3dde5c937c69e6eeae63fd153c11936515

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48b719b8062a091cd99f7b59642adec7528d9eb70959fd8ee63ed035051a5067
MD5 8b28e30b53ab6b4b10be4fe80e242a1d
BLAKE2b-256 194de3e7eb5e868392f400f050d48796ccd004e437f11a82b86aca26e4cafc93

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe95e44c6f6f9a18e120d1324e73f2e91bc6673fa2cd62210a12ddb51a48d27b
MD5 7e203c32e1cfc85beb40cb669349b0ff
BLAKE2b-256 18e7d15cbfbeebf3adf2d8890dfaa5bc5bcffa25149dff1746544bb39274529a

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 991c0ba9ceef9e68ab7f9e13d06dd8f90e191ab18170ce0057fbcb94512ed647
MD5 a9534175dce3bd89b64d6ca4df169091
BLAKE2b-256 0f51b3e2d53620677914f6bde4d0a709abd1cba2347dd324335c196a804ab888

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9856059959601216f121f59e369bd80aab4d0b437363d94e3cb907f00442d39
MD5 308de1a1b7e569e63446a158bd625c7f
BLAKE2b-256 406e8fa05705fff5cdc8edb417a37d275b1f637f3b006c8cbb2c80dfcfdd535e

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1f814a38c165763409a06b7d8f65a71c3f63e40b0bb64bff239f40bfb0aff4d
MD5 b247c07176fe3da0370c1f18adf76562
BLAKE2b-256 455809fe3dbd583f2a6cb63aac933b296103c6cd2c8e632463c92072cb45afc4

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 239612ee8c27bc774966dc8968cfcec634b6daf1378739ac95b9090dded3059d
MD5 0530964ac726d897ac189e92d83b3a4a
BLAKE2b-256 fca56f0db3d00646936ad7cba7ff4615880d735482fb3ae270f657a855e0e2f9

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf3f4fd8bf46ddd90dd300dbf550acbc01d461941fa246fcad5b4e344c7ed628
MD5 c98be013b6db9e783a991d3475d45ac3
BLAKE2b-256 ba89d4d8efed21588759efd7f2b509a6de6a698ae29fa5099af16c89f640c294

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f3b46ee5c32ea86a7b56c853ba3d00f20fdfdcd06183730202324d90d4b36c4d
MD5 fbe204c9c4f7935098cf6d330010ae4c
BLAKE2b-256 935ae3d4d1efe2fafb2c37d7cf05e199c2a40d631739fbcf2afe2f11b13ae141

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-none-win32.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ce7cd5f4f5ee8b1587bcd84bfb56e67436574790601ab5ca937f9516d557b9d7
MD5 d1d30287407acfb1c02eef8e9ba8df14
BLAKE2b-256 37cde3d7e38c55bad331c8f530becc9e00a8805f12b087bd1f3882dafe978f24

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0711e9edf13447e7027d3fa5341aa8c80d1be85aba7d4fb0b89660b8695e9b7
MD5 0cc9dd08b42be571903b7929b95eb615
BLAKE2b-256 5bb7359a956873356385a97ce14ce6276d29454ea3f697049d583a8bcae612df

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d53e4160645bf96f9ef53e5594f98a3dc46684a7a5eb5293dc880b7c2295e5e0
MD5 6d2c238b87690364c75b71a48a720663
BLAKE2b-256 4f8aeb972c4926fdd994fe11da3481b96d688de49c40a3a2a167e4d48398c9f7

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8d85c83011d808e8dbda7eabc8c1041871fce01584652bcf170eeb2a3f4c666
MD5 5e084d591f9aec028ca9e1c0636b0a43
BLAKE2b-256 2eede8ba2f7968469b49e00347193e57c527885ddfaac40cec57c9d87b080f67

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a42480a9eca10b89c03663442db83c35fda0a5f37ba32f964a1acd88eb02bb2f
MD5 3802f9a78a4271efbc295d33073d9c50
BLAKE2b-256 c10b439ac0b31d7c28ff2a9bf633650079812c3f59ff44d583204e6cf489f0fb

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa1da58e1bacfce25f7ff4a008620f74b1178cae1b7421e8b35c9fc04a3edc2b
MD5 6a7d8920c0fdcd24f0a56ea503c41fb1
BLAKE2b-256 bc8c31fc43d3a42b21755a98ad850d1b878b3da792299ad0fc34642853aeed2f

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 99fc91585b4a208045183ae0b7cb9992745fd008b9ad04b23761b64431bf1ce9
MD5 e5a2ed59731c57808e8b02b2a7db5cce
BLAKE2b-256 38f87f04fcb2de8d51ff0192e5961ab4ae234450cf4b2ff5586a03c167b2add3

See more details on using hashes here.

File details

Details for the file qarray_rust_core-1.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qarray_rust_core-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 132cdd3298f6861672651fe1270f855ebd2842a25676481753dca427d94151a9
MD5 c3a14b7b4fbf26374ebea214d6c6e5f6
BLAKE2b-256 580ca553603e1b8574125fd0b02502250dfbeb684395f7c2d148fbb9609ac15c

See more details on using hashes here.

Supported by

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