qarray-rust-core


Nameqarray-rust-core JSON
Version 1.3.1 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2024-09-18 18:36:48
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # qarray-rust-core

![GitHub Workflow Status](https://github.com/b-vanstraaten/qarray-rust-core/workflows/CI/badge.svg)
![PyPI](https://img.shields.io/pypi/v/rusty-capacitance-model-core)

![Rust logo](https://www.rust-lang.org/static/images/rust-logo-blk.svg)
![Python logo](https://s3.dualstack.us-east-2.amazonaws.com/pythondotorg-assets/media/files/python-logo-only.svg)

**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:

```bash
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:

   ```python
   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](https://github.com/b-vanstraaten/rusty_capacitance_model). 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**.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "qarray-rust-core",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Barnaby van Straaten <barnaby.vanstraaten@kellogg.ox.ac.uk>",
    "download_url": "https://files.pythonhosted.org/packages/70/e9/a6a6551edca36ad27c596b49e33fc3870033fdbf28e0ce2ddbd3eb062ed4/qarray_rust_core-1.3.1.tar.gz",
    "platform": null,
    "description": "# qarray-rust-core\n\n![GitHub Workflow Status](https://github.com/b-vanstraaten/qarray-rust-core/workflows/CI/badge.svg)\n![PyPI](https://img.shields.io/pypi/v/rusty-capacitance-model-core)\n\n![Rust logo](https://www.rust-lang.org/static/images/rust-logo-blk.svg)\n![Python logo](https://s3.dualstack.us-east-2.amazonaws.com/pythondotorg-assets/media/files/python-logo-only.svg)\n\n**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.\n\n**This package provides core functionality; it is not intended that the user will interact with it directly.**\n\n## Features\n\n- **Ultra-fast Simulation:** Harnesses the speed of Rust and the parallelism of Rayon to deliver lightning-fast simulations.\n- **Constant Capacitance:** Specialized for simulating quantum dots with constant capacitance, allowing precise modelling of charge dynamics.\n- **User-Friendly:** Designed with ease of use in mind, making it accessible to both experts and newcomers in quantum dot simulations.\n- **Extensive Documentation:** Comprehensive documentation and examples to help you get started quickly.\n\n## Installation\n\nInstall Quantum Dot Constant Capacitance Simulator using pip:\n\n```bash\npip install qarray-rust-core\n```\n\n\n### Usage\n\nThis package exposes two functions to be called from python: \n\n- `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. \n- `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.\n\nThe python code to call these functions is as follows:\n\n   ```python\n   from qarray-rust-core import (ground_state_open, ground_state_closed)\n   import numpy as np \n   \n   # the dot-dot capacitance matrix\n   cdd = np.array([\n        [1, -0.1],\n        [-0.1, 1]\n   ])\n   cdd_inv = np.linalg.inv(cdd)\n   \n   # the dot-gate capacitance matrix\n   cgd = np.array([\n          [1, 0.3],\n          [0.3, 1]\n    ])\n   \n   # define a matrix of gate voltages to sweep over the first gate\n   vg = np.stack([np.linspace(-1, 1, 100), np.zeros(100)], axis = -1)\n   \n   n_charge = 3 # the number of changes to confine in the quantum dot array for the closed case \n   threshold = 1 # threshold to avoid having to consider all possible charge states, setting it 1 is always correct, however has a computatinal cost. \n   \n   n_open = ground_state_open(vg, cgd, cdd_inv, threshold, T = 0)\n   n_closed = ground_state_closed(vg, n_charge, cgd, cdd, cdd_inv, threshold, T = 0)\n   ```\n**It is not intended the user ever call these functions directly.**\n\nThere is a pure Python wrapper that provides a more user-friendly interface to this core functionality. \nSee [Quantum Dot Constant Capacitance Simulator](https://github.com/b-vanstraaten/rusty_capacitance_model). This package provides: \n\n- **A user-friendly interface** to the core functionality.\n- **Plotting, charge sensing, virtual gate** and gate voltage sweeping (1d and 2d) functionality.\n- **Advanced type checking** using pydantic.\n- **Automated testing** including for the functionality in this package.\n- **More examples**.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": null,
    "version": "1.3.1",
    "project_urls": {
        "Homepage": "https://github.com/b-vanstraaten/qarray-rust-core"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "580ca553603e1b8574125fd0b02502250dfbeb684395f7c2d148fbb9609ac15c",
                "md5": "c3a14b7b4fbf26374ebea214d6c6e5f6",
                "sha256": "132cdd3298f6861672651fe1270f855ebd2842a25676481753dca427d94151a9"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c3a14b7b4fbf26374ebea214d6c6e5f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 324755,
            "upload_time": "2024-09-18T18:35:55",
            "upload_time_iso_8601": "2024-09-18T18:35:55.497517Z",
            "url": "https://files.pythonhosted.org/packages/58/0c/a553603e1b8574125fd0b02502250dfbeb684395f7c2d148fbb9609ac15c/qarray_rust_core-1.3.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "38f87f04fcb2de8d51ff0192e5961ab4ae234450cf4b2ff5586a03c167b2add3",
                "md5": "e5a2ed59731c57808e8b02b2a7db5cce",
                "sha256": "99fc91585b4a208045183ae0b7cb9992745fd008b9ad04b23761b64431bf1ce9"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "e5a2ed59731c57808e8b02b2a7db5cce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 384134,
            "upload_time": "2024-09-18T18:35:57",
            "upload_time_iso_8601": "2024-09-18T18:35:57.268855Z",
            "url": "https://files.pythonhosted.org/packages/38/f8/7f04fcb2de8d51ff0192e5961ab4ae234450cf4b2ff5586a03c167b2add3/qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc8c31fc43d3a42b21755a98ad850d1b878b3da792299ad0fc34642853aeed2f",
                "md5": "6a7d8920c0fdcd24f0a56ea503c41fb1",
                "sha256": "aa1da58e1bacfce25f7ff4a008620f74b1178cae1b7421e8b35c9fc04a3edc2b"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6a7d8920c0fdcd24f0a56ea503c41fb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 370468,
            "upload_time": "2024-09-18T18:35:58",
            "upload_time_iso_8601": "2024-09-18T18:35:58.976416Z",
            "url": "https://files.pythonhosted.org/packages/bc/8c/31fc43d3a42b21755a98ad850d1b878b3da792299ad0fc34642853aeed2f/qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c10b439ac0b31d7c28ff2a9bf633650079812c3f59ff44d583204e6cf489f0fb",
                "md5": "3802f9a78a4271efbc295d33073d9c50",
                "sha256": "a42480a9eca10b89c03663442db83c35fda0a5f37ba32f964a1acd88eb02bb2f"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3802f9a78a4271efbc295d33073d9c50",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 373491,
            "upload_time": "2024-09-18T18:36:00",
            "upload_time_iso_8601": "2024-09-18T18:36:00.905826Z",
            "url": "https://files.pythonhosted.org/packages/c1/0b/439ac0b31d7c28ff2a9bf633650079812c3f59ff44d583204e6cf489f0fb/qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2eede8ba2f7968469b49e00347193e57c527885ddfaac40cec57c9d87b080f67",
                "md5": "5e084d591f9aec028ca9e1c0636b0a43",
                "sha256": "b8d85c83011d808e8dbda7eabc8c1041871fce01584652bcf170eeb2a3f4c666"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5e084d591f9aec028ca9e1c0636b0a43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 428117,
            "upload_time": "2024-09-18T18:36:02",
            "upload_time_iso_8601": "2024-09-18T18:36:02.389651Z",
            "url": "https://files.pythonhosted.org/packages/2e/ed/e8ba2f7968469b49e00347193e57c527885ddfaac40cec57c9d87b080f67/qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f8aeb972c4926fdd994fe11da3481b96d688de49c40a3a2a167e4d48398c9f7",
                "md5": "6d2c238b87690364c75b71a48a720663",
                "sha256": "d53e4160645bf96f9ef53e5594f98a3dc46684a7a5eb5293dc880b7c2295e5e0"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "6d2c238b87690364c75b71a48a720663",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 523188,
            "upload_time": "2024-09-18T18:36:04",
            "upload_time_iso_8601": "2024-09-18T18:36:04.146342Z",
            "url": "https://files.pythonhosted.org/packages/4f/8a/eb972c4926fdd994fe11da3481b96d688de49c40a3a2a167e4d48398c9f7/qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bb7359a956873356385a97ce14ce6276d29454ea3f697049d583a8bcae612df",
                "md5": "0cc9dd08b42be571903b7929b95eb615",
                "sha256": "d0711e9edf13447e7027d3fa5341aa8c80d1be85aba7d4fb0b89660b8695e9b7"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0cc9dd08b42be571903b7929b95eb615",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 383877,
            "upload_time": "2024-09-18T18:36:08",
            "upload_time_iso_8601": "2024-09-18T18:36:08.140683Z",
            "url": "https://files.pythonhosted.org/packages/5b/b7/359a956873356385a97ce14ce6276d29454ea3f697049d583a8bcae612df/qarray_rust_core-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "37cde3d7e38c55bad331c8f530becc9e00a8805f12b087bd1f3882dafe978f24",
                "md5": "d1d30287407acfb1c02eef8e9ba8df14",
                "sha256": "ce7cd5f4f5ee8b1587bcd84bfb56e67436574790601ab5ca937f9516d557b9d7"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d1d30287407acfb1c02eef8e9ba8df14",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 233681,
            "upload_time": "2024-09-18T18:36:10",
            "upload_time_iso_8601": "2024-09-18T18:36:10.986017Z",
            "url": "https://files.pythonhosted.org/packages/37/cd/e3d7e38c55bad331c8f530becc9e00a8805f12b087bd1f3882dafe978f24/qarray_rust_core-1.3.1-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "935ae3d4d1efe2fafb2c37d7cf05e199c2a40d631739fbcf2afe2f11b13ae141",
                "md5": "fbe204c9c4f7935098cf6d330010ae4c",
                "sha256": "f3b46ee5c32ea86a7b56c853ba3d00f20fdfdcd06183730202324d90d4b36c4d"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fbe204c9c4f7935098cf6d330010ae4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.10",
            "size": 257344,
            "upload_time": "2024-09-18T18:36:12",
            "upload_time_iso_8601": "2024-09-18T18:36:12.451781Z",
            "url": "https://files.pythonhosted.org/packages/93/5a/e3d4d1efe2fafb2c37d7cf05e199c2a40d631739fbcf2afe2f11b13ae141/qarray_rust_core-1.3.1-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba89d4d8efed21588759efd7f2b509a6de6a698ae29fa5099af16c89f640c294",
                "md5": "c98be013b6db9e783a991d3475d45ac3",
                "sha256": "bf3f4fd8bf46ddd90dd300dbf550acbc01d461941fa246fcad5b4e344c7ed628"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c98be013b6db9e783a991d3475d45ac3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 324828,
            "upload_time": "2024-09-18T18:36:14",
            "upload_time_iso_8601": "2024-09-18T18:36:14.222967Z",
            "url": "https://files.pythonhosted.org/packages/ba/89/d4d8efed21588759efd7f2b509a6de6a698ae29fa5099af16c89f640c294/qarray_rust_core-1.3.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fca56f0db3d00646936ad7cba7ff4615880d735482fb3ae270f657a855e0e2f9",
                "md5": "0530964ac726d897ac189e92d83b3a4a",
                "sha256": "239612ee8c27bc774966dc8968cfcec634b6daf1378739ac95b9090dded3059d"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "0530964ac726d897ac189e92d83b3a4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 384132,
            "upload_time": "2024-09-18T18:36:15",
            "upload_time_iso_8601": "2024-09-18T18:36:15.762199Z",
            "url": "https://files.pythonhosted.org/packages/fc/a5/6f0db3d00646936ad7cba7ff4615880d735482fb3ae270f657a855e0e2f9/qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "455809fe3dbd583f2a6cb63aac933b296103c6cd2c8e632463c92072cb45afc4",
                "md5": "b247c07176fe3da0370c1f18adf76562",
                "sha256": "c1f814a38c165763409a06b7d8f65a71c3f63e40b0bb64bff239f40bfb0aff4d"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b247c07176fe3da0370c1f18adf76562",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 370471,
            "upload_time": "2024-09-18T18:36:17",
            "upload_time_iso_8601": "2024-09-18T18:36:17.232178Z",
            "url": "https://files.pythonhosted.org/packages/45/58/09fe3dbd583f2a6cb63aac933b296103c6cd2c8e632463c92072cb45afc4/qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "406e8fa05705fff5cdc8edb417a37d275b1f637f3b006c8cbb2c80dfcfdd535e",
                "md5": "308de1a1b7e569e63446a158bd625c7f",
                "sha256": "f9856059959601216f121f59e369bd80aab4d0b437363d94e3cb907f00442d39"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "308de1a1b7e569e63446a158bd625c7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 373517,
            "upload_time": "2024-09-18T18:36:19",
            "upload_time_iso_8601": "2024-09-18T18:36:19.022322Z",
            "url": "https://files.pythonhosted.org/packages/40/6e/8fa05705fff5cdc8edb417a37d275b1f637f3b006c8cbb2c80dfcfdd535e/qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f51b3e2d53620677914f6bde4d0a709abd1cba2347dd324335c196a804ab888",
                "md5": "a9534175dce3bd89b64d6ca4df169091",
                "sha256": "991c0ba9ceef9e68ab7f9e13d06dd8f90e191ab18170ce0057fbcb94512ed647"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a9534175dce3bd89b64d6ca4df169091",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 428149,
            "upload_time": "2024-09-18T18:36:25",
            "upload_time_iso_8601": "2024-09-18T18:36:25.540101Z",
            "url": "https://files.pythonhosted.org/packages/0f/51/b3e2d53620677914f6bde4d0a709abd1cba2347dd324335c196a804ab888/qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "18e7d15cbfbeebf3adf2d8890dfaa5bc5bcffa25149dff1746544bb39274529a",
                "md5": "7e203c32e1cfc85beb40cb669349b0ff",
                "sha256": "fe95e44c6f6f9a18e120d1324e73f2e91bc6673fa2cd62210a12ddb51a48d27b"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7e203c32e1cfc85beb40cb669349b0ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 523163,
            "upload_time": "2024-09-18T18:36:27",
            "upload_time_iso_8601": "2024-09-18T18:36:27.167298Z",
            "url": "https://files.pythonhosted.org/packages/18/e7/d15cbfbeebf3adf2d8890dfaa5bc5bcffa25149dff1746544bb39274529a/qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "194de3e7eb5e868392f400f050d48796ccd004e437f11a82b86aca26e4cafc93",
                "md5": "8b28e30b53ab6b4b10be4fe80e242a1d",
                "sha256": "48b719b8062a091cd99f7b59642adec7528d9eb70959fd8ee63ed035051a5067"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8b28e30b53ab6b4b10be4fe80e242a1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 383927,
            "upload_time": "2024-09-18T18:36:29",
            "upload_time_iso_8601": "2024-09-18T18:36:29.946826Z",
            "url": "https://files.pythonhosted.org/packages/19/4d/e3e7eb5e868392f400f050d48796ccd004e437f11a82b86aca26e4cafc93/qarray_rust_core-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8964a061252e650bb78e06388043f3dde5c937c69e6eeae63fd153c11936515",
                "md5": "d25da211c961785d5aeb9d6532378491",
                "sha256": "5650478e8b6c0a4c10256c868e6dd9c12189a9a0ccc23ae1e489ac1b974e416e"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d25da211c961785d5aeb9d6532378491",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 233665,
            "upload_time": "2024-09-18T18:36:31",
            "upload_time_iso_8601": "2024-09-18T18:36:31.518800Z",
            "url": "https://files.pythonhosted.org/packages/c8/96/4a061252e650bb78e06388043f3dde5c937c69e6eeae63fd153c11936515/qarray_rust_core-1.3.1-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "702843d33d5ab9c28fc5014d49d6db414bd1d239ab266cd667a0287020ba7a89",
                "md5": "364c451ed3926d9d952a62a56cbb978f",
                "sha256": "8b965acd31ec678474cc1d6ec82085f4a0754953578767d8fc405430ba8c7185"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "364c451ed3926d9d952a62a56cbb978f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.10",
            "size": 257354,
            "upload_time": "2024-09-18T18:36:33",
            "upload_time_iso_8601": "2024-09-18T18:36:33.085759Z",
            "url": "https://files.pythonhosted.org/packages/70/28/43d33d5ab9c28fc5014d49d6db414bd1d239ab266cd667a0287020ba7a89/qarray_rust_core-1.3.1-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df116340cf67333a5bb10306461ce70998293d88ee4cf9da16a4180a024cb8ae",
                "md5": "51c53dca4d4c3a65a38c315fdc410f59",
                "sha256": "f1474a68c79c0b035ae65bc15bbb5b4ac6ee550764463c396b812506436843db"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "51c53dca4d4c3a65a38c315fdc410f59",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 324171,
            "upload_time": "2024-09-18T18:36:34",
            "upload_time_iso_8601": "2024-09-18T18:36:34.970314Z",
            "url": "https://files.pythonhosted.org/packages/df/11/6340cf67333a5bb10306461ce70998293d88ee4cf9da16a4180a024cb8ae/qarray_rust_core-1.3.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16ad8a6da781019aef950904250cf38eab2e1cf3612f521bcc970fd45957e116",
                "md5": "24166d016f4d0f43866b3645578ce1da",
                "sha256": "6b21c4690e5d722b28e744e8fdeb9d816fc2766cf58bb70a707f22e072eb96d8"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "24166d016f4d0f43866b3645578ce1da",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 383413,
            "upload_time": "2024-09-18T18:36:36",
            "upload_time_iso_8601": "2024-09-18T18:36:36.591042Z",
            "url": "https://files.pythonhosted.org/packages/16/ad/8a6da781019aef950904250cf38eab2e1cf3612f521bcc970fd45957e116/qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dc400bea94d3bcf8016218374f9df55f87d9a593698ff2893347a9856454811b",
                "md5": "4457b4fc2a0f0392d9a1b05adcdac142",
                "sha256": "bfd8060f4b91ee98c14fe75eaab1d6c49aba70d2385b161a56b820f4e5c056ac"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4457b4fc2a0f0392d9a1b05adcdac142",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 369383,
            "upload_time": "2024-09-18T18:36:38",
            "upload_time_iso_8601": "2024-09-18T18:36:38.168168Z",
            "url": "https://files.pythonhosted.org/packages/dc/40/0bea94d3bcf8016218374f9df55f87d9a593698ff2893347a9856454811b/qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc09652dbe9f766db67514021afd9f3797de0cc2baad3757ba0fe5dcbbc87c05",
                "md5": "37fb218bf352a07505df0a8c6e756885",
                "sha256": "f889bb88d1f0988b0974b7943f94ec873390d91b18ec474a928fb8ae37be52c1"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "37fb218bf352a07505df0a8c6e756885",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 426831,
            "upload_time": "2024-09-18T18:36:39",
            "upload_time_iso_8601": "2024-09-18T18:36:39.402150Z",
            "url": "https://files.pythonhosted.org/packages/cc/09/652dbe9f766db67514021afd9f3797de0cc2baad3757ba0fe5dcbbc87c05/qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9de7efa95490cf14ae27a1c87f044b356b08a7be63f742800e83da54fcbb3227",
                "md5": "19429ea5faa5dbbc0205493de7c2a4e1",
                "sha256": "0bdf89165087ee5e738308913a8637b23ff69ee19eae39430e1303cc38a9fbc8"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "19429ea5faa5dbbc0205493de7c2a4e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 524858,
            "upload_time": "2024-09-18T18:36:40",
            "upload_time_iso_8601": "2024-09-18T18:36:40.637747Z",
            "url": "https://files.pythonhosted.org/packages/9d/e7/efa95490cf14ae27a1c87f044b356b08a7be63f742800e83da54fcbb3227/qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "64bc0c7c9b4c94697c2f5d272c075a8cbe2b6bdbf3865a1348688044187cbbda",
                "md5": "cd15c8cf3a768966d57b57b1029d97cf",
                "sha256": "970e52adc92937f3595c675b5e5faf11fc84b1b285a6488da0e0704fb72180b8"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd15c8cf3a768966d57b57b1029d97cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 383292,
            "upload_time": "2024-09-18T18:36:41",
            "upload_time_iso_8601": "2024-09-18T18:36:41.810468Z",
            "url": "https://files.pythonhosted.org/packages/64/bc/0c7c9b4c94697c2f5d272c075a8cbe2b6bdbf3865a1348688044187cbbda/qarray_rust_core-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "55c9388dd922989e9df8ba7af730adafa383cb1ba224a01027d26375140a6913",
                "md5": "719dcf4232ea7e38dfdef2dee9b7fd80",
                "sha256": "37bc60daaa4518b983aea5cee9e5b9dcf0f9d1bee2b2c7211b6ddd943d1d982a"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "719dcf4232ea7e38dfdef2dee9b7fd80",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 230074,
            "upload_time": "2024-09-18T18:36:43",
            "upload_time_iso_8601": "2024-09-18T18:36:43.013497Z",
            "url": "https://files.pythonhosted.org/packages/55/c9/388dd922989e9df8ba7af730adafa383cb1ba224a01027d26375140a6913/qarray_rust_core-1.3.1-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9b4ea5203bbb75a24ddf43136ce44e661b270079af3c75b65c0d5238e20a4297",
                "md5": "419abba44b37f456b20bf32ae9b09ece",
                "sha256": "76bb31a67f24836793f3271bc2992227ad8174f2c24e959a21fa848483f2122f"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "419abba44b37f456b20bf32ae9b09ece",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.10",
            "size": 252872,
            "upload_time": "2024-09-18T18:36:44",
            "upload_time_iso_8601": "2024-09-18T18:36:44.316903Z",
            "url": "https://files.pythonhosted.org/packages/9b/4e/a5203bbb75a24ddf43136ce44e661b270079af3c75b65c0d5238e20a4297/qarray_rust_core-1.3.1-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fca019212eaed41785bef350b756dcaa285f6977a7e6f1a374a36de9c83662ec",
                "md5": "b076b7dc0e0f0368ca92b57402864e14",
                "sha256": "0314969ffcbeda6a593a1ffb2b6594a5eecbbd4f29dcbc37843a145ba8666dbc"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "b076b7dc0e0f0368ca92b57402864e14",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 383549,
            "upload_time": "2024-09-18T18:36:45",
            "upload_time_iso_8601": "2024-09-18T18:36:45.521979Z",
            "url": "https://files.pythonhosted.org/packages/fc/a0/19212eaed41785bef350b756dcaa285f6977a7e6f1a374a36de9c83662ec/qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8743b479566687570afcd5c61eb2c70650c2749bad5b55bc6c8a8bf7ba945b93",
                "md5": "2d83e5e4366b9182c3b333adb2ccf9e0",
                "sha256": "78c44eecd5d3f414b4aaafd2f52111f3b39df6b09f1c467736b6402944dd1027"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2d83e5e4366b9182c3b333adb2ccf9e0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.10",
            "size": 383384,
            "upload_time": "2024-09-18T18:36:46",
            "upload_time_iso_8601": "2024-09-18T18:36:46.826501Z",
            "url": "https://files.pythonhosted.org/packages/87/43/b479566687570afcd5c61eb2c70650c2749bad5b55bc6c8a8bf7ba945b93/qarray_rust_core-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70e9a6a6551edca36ad27c596b49e33fc3870033fdbf28e0ce2ddbd3eb062ed4",
                "md5": "8f1556eeeb7fe811d547eef42eba0e7b",
                "sha256": "9406376bf0022d257dba97cf4d0ef451bc296e635d5e0911e41a3a991b2954c8"
            },
            "downloads": -1,
            "filename": "qarray_rust_core-1.3.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8f1556eeeb7fe811d547eef42eba0e7b",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 14176,
            "upload_time": "2024-09-18T18:36:48",
            "upload_time_iso_8601": "2024-09-18T18:36:48.046810Z",
            "url": "https://files.pythonhosted.org/packages/70/e9/a6a6551edca36ad27c596b49e33fc3870033fdbf28e0ce2ddbd3eb062ed4/qarray_rust_core-1.3.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-18 18:36:48",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "b-vanstraaten",
    "github_project": "qarray-rust-core",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "qarray-rust-core"
}
        
Elapsed time: 0.33237s