Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/QuState/spinoza
A High Performance Quantum State Simulator implemented in pure Rust
https://github.com/QuState/spinoza
high-performance quantum-computing rust simd simulation
Last synced: 2 months ago
JSON representation
A High Performance Quantum State Simulator implemented in pure Rust
- Host: GitHub
- URL: https://github.com/QuState/spinoza
- Owner: QuState
- License: apache-2.0
- Created: 2023-05-09T17:47:02.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-09T16:37:38.000Z (7 months ago)
- Last Synced: 2024-08-18T23:01:41.297Z (5 months ago)
- Topics: high-performance, quantum-computing, rust, simd, simulation
- Language: Rust
- Homepage:
- Size: 618 KB
- Stars: 53
- Watchers: 2
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
Spinoza is a fast and flexible quantum simulator written exclusively in Rust,
with bindings available for Python users. Spinoza simulates the evolution of a
quantum system’s state by applying quantum gates, with the core design
principle being that a single-qubit gate applied to a target qubit preserves
the probability of pairs of amplitudes corresponding to measurement outcomes
that differ only in the target qubit. Spinoza is intended to enable the
development of quantum computing solutions by offering researchers and quantum
developers a simple, flexible, and fast tool for classical simulation. For more
information, please see the accompanying
[paper](https://arxiv.org/pdf/2303.01493.pdf).## Quickstart with Python
```bash
pip install git+https://github.com/QuState/spinoza#subdirectory=spynoza
```## Getting Started
### Prerequisites
- [Rust](https://www.rust-lang.org/learn/get-started)- [nightly Rust](https://rust-lang.github.io/rustup/concepts/channels.html)
```bash
rustup toolchain install nightly
rustup default nightly
```
### Building on *nix
> [!NOTE]
> before building on macOS, please see the [install guide](INSTALL.md).#### Production
```bash
cargo build --release
```
### Try it out!
[examples](https://github.com/QuState/spinoza/tree/main/spinoza/examples) can be run using:
```bash
cargo run --release --example -- -q -t
```## Contributing
Everyone is welcomed to contribute to Spinoza! Please see the [contributing guideline](CONTRIBUTING.md) for
more information. If you encounter any issues, please feel free to open a [new issue](https://github.com/QuState/spinoza/issues/new).___
## References
```
@misc{yusufov2023designing,
title={Designing a Fast and Flexible Quantum State Simulator},
author={Saveliy Yusufov and Charlee Stefanski and Constantin Gonciulea},
year={2023},
eprint={2303.01493},
archivePrefix={arXiv},
primaryClass={quant-ph}
}
```