Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sbip-sg/qiskit-pqcee-provider
The Qiskit provider for pQCee blockchain quantum simulator
https://github.com/sbip-sg/qiskit-pqcee-provider
Last synced: 8 days ago
JSON representation
The Qiskit provider for pQCee blockchain quantum simulator
- Host: GitHub
- URL: https://github.com/sbip-sg/qiskit-pqcee-provider
- Owner: sbip-sg
- License: mit
- Created: 2023-10-16T03:14:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-23T06:00:25.000Z (8 months ago)
- Last Synced: 2024-11-06T23:33:40.502Z (about 2 months ago)
- Language: Python
- Size: 78.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# qiskit-pqcee-provider
The Qiskit provider for pQCee blockchain quantum simulator# Install
```
pip install qiskit-pqcee-provider
```# Usage
```python
import qiskit
from qiskit_pqcee_provider import PqceeProviderprovider = PqceeProvider()
backend = provider.get_backend('pqcee_simulator')qc = qiskit.QuantumCircuit(2)
qc.h(0)
qc.cx(0, 1)
qc.measure_all()job = backend.run(qc, shots=10)
result = job.result()
print(result.get_counts())
```