Quantum networking — channels, entanglement distribution, teleportation protocols
Project description
crowe-quantum-net
Quantum networking primitives — channels, entanglement sources, entanglement swapping, teleportation, and fidelity metrics.
Installation
pip install crowe-quantum-net
Features
- Quantum Channels: Depolarizing, amplitude damping, custom Kraus operators
- Entanglement Source: Pure Bell states and Werner (noisy) states
- Entanglement Swapping: Extend entanglement across network nodes
- Teleportation Protocol: Full Bell-measurement teleportation with Pauli corrections
- Metrics: Fidelity, concurrence, trace preservation checks
Quick Start
from crowe_quantum_net import (
depolarizing_channel, EntanglementSource,
TeleportationProtocol, concurrence
)
import numpy as np
# Teleport a qubit state
proto = TeleportationProtocol()
state = np.array([0.6, 0.8], dtype=complex) # arbitrary qubit
result = proto.run(state)
print(f"Fidelity: {result.fidelity:.4f}") # ~1.0
# Measure entanglement
source = EntanglementSource(fidelity=0.95)
dm = source.generate_density_matrix()
print(f"Concurrence: {concurrence(dm):.4f}")
Part of the Crowe Quantum Platform
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file crowe_quantum_net-1.0.1.tar.gz.
File metadata
- Download URL: crowe_quantum_net-1.0.1.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c59887966d11341cd293a7c74f1e8da70aab24e96962c62a9f92f3b6336f68e9
|
|
| MD5 |
d421b209801afbdd5a23e6228cb9802c
|
|
| BLAKE2b-256 |
16cf016d90d3d2864165ebc63cb5094436423468e2ecb4e573b8656dfc6096f3
|
File details
Details for the file crowe_quantum_net-1.0.1-py3-none-any.whl.
File metadata
- Download URL: crowe_quantum_net-1.0.1-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57def5b4148f3e87333729addf3c670d4120b371dd314088d188337e3d9036ac
|
|
| MD5 |
ff9ee0d7b14cd4c09fa4ed0fd8927015
|
|
| BLAKE2b-256 |
39d7b0c6cfd871374c3eacd7dc5a87fb0cee4e6eb63521d24b2017e787e925dd
|