https://github.com/queracomputing/bloqade-pyqrack
https://github.com/queracomputing/bloqade-pyqrack
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/queracomputing/bloqade-pyqrack
- Owner: QuEraComputing
- License: other
- Created: 2025-02-10T14:29:41.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-12T04:06:39.000Z (11 months ago)
- Last Synced: 2025-03-12T04:25:19.098Z (11 months ago)
- Language: Python
- Size: 138 KB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bloqade
[](https://github.com/QuEraComputing/bloqade/actions/workflows/ci.yml)
[](https://codecov.io/gh/QuEraComputing/bloqade)
[](https://pypi.org/project/bloqade)
[](https://bloqade.quera.com/)
[](https://zenodo.org/doi/10.5281/zenodo.11114109)
# Welcome to Bloqade -- QuEra's Neutral Atom SDK
Bloqade is a Python SDK for neutral atom quantum computing. It provides a set of embedded domain-specific languages (eDSLs) for programming neutral atom quantum computers. Bloqade is designed to be a high-level, user-friendly SDK that abstracts away the complexities of neutral atom quantum computing, allowing users to focus on developing quantum algorithms and compilation strategies for neutral atom quantum computers.
> [!IMPORTANT]
>
> This project is in the early stage of development. API and features are subject to change.
## Installation
This package has three different optional dependencies to decide which one, or multiple your system supports: `pyqrack`, `pyqrack-cpu`, `pyqrack-cuda`.
### Install via `uv` (Recommended)
```py
uv add bloqade-pyqrack[...]
```
### Which extra do I install??
Because how the [pyqrack](https://github.com/unitaryfund/pyqrack) packages have been deployed you have to install one of the optional dependencies to get it to work on your platform depending on the status of how your platform interacts with OpenCL:
* If your on a platform that supports OpenCL but you do not have it installed you have to install `bloqade-pyqrack[pyqrack-cpu]`
* If your platform doesn't support OpenCL and you want to run it on a cpu backend you must install `bloqade-pyqrack[pyqrack]`.
* If you're system has OpenCL compatible GPU with OpenCL installed you can use your GPU via `bloqade-pyqrack[pyqrack]`
* If you have an Nvidia GPU you can install `bloqade-pyqrack[pyqrack-cuda]`.
In the future this will be simplified so that `pyqrack-cpu` will mean `cpu` only and `pyqrack` will be `cpu` and `gpu` via OpenCL and `pyqrack-cuda` will be `gpu` via CUDA.
## License
Apache License 2.0 with LLVM Exceptions