A sparse state quantum circuit simulator
Project description
QRAM-Simulator & PySparQ
稀疏态量子模拟器,支持 Register Level Programming
双软件架构
本仓库包含两个紧密协作的软件组件,面向不同的用户群体和使用场景:
| 软件 | 定位 | 用户群体 | 核心优势 |
|---|---|---|---|
| QRAM-Simulator | C++ 稀疏态量子模拟器核心 | 研究人员、高性能计算开发者 | 极致性能、精细控制 |
| PySparQ | Python 绑定与高层次 API | 量子算法开发者、教育工作者 | 快速原型、易于上手 |
- QRAM-Simulator: 提供底层的稀疏态量子模拟能力,包括量子随机存取存储器 (QRAM) 模拟、量子算术运算、噪声模型等。适用于需要深度优化和高性能的场景。
- PySparQ: 通过 pybind11 将 C++ 核心能力暴露给 Python,提供简洁的 API 用于快速开发和验证量子算法。
Register Level Programming(核心特性)
根本性差异
传统量子框架与 SparQ 的核心区别:
| 维度 | 传统方式 | Register Level Programming |
|---|---|---|
| 状态存储 | 量子比特数组/张量网络 | uint64_t 直接存储寄存器值 |
| 算术运算 | 编译成量子门序列 | 直接对寄存器值进行算术操作 |
| 开发模式 | 自底向上(从门电路构建) | 自顶向下(先写高层模块再细化) |
| QAdder 实现 | 分解为数百个量子门 | 直接调用加法器,自动门分解 |
自顶向下开发流程
传统方式: SparQ 方式:
┌──────────────┐ ┌──────────────┐
│ 量子门序列 │ │ 高层算法模块 │ ← 先写这里
│ ↓ ↓ ↓ │ │ ↓ 细化 │
│ 振幅计算 │ │ 寄存器操作 │
└──────────────┘ │ ↓ 验证 │
│ 回归测试 │
└──────────────┘
代码示例对比
传统框架 (Qiskit):
# 需要手动构建加法器门电路
adder = DraperQFTAdder(num_state_qubits=4)
circuit.append(adder, [0, 1, 2, 3, 4, 5, 6, 7])
PySparQ:
import pysparq as ps
# 直接创建寄存器并执行加法
state = ps.SparseState()
# 添加寄存器(返回寄存器 ID)
a_id = ps.AddRegister("a", ps.StateStorageType.UnsignedInteger, 4)(state)
b_id = ps.AddRegister("b", ps.StateStorageType.UnsignedInteger, 4)(state)
# QAdder 直接操作寄存器值,无需编译成门序列
# 将 a + b 存储到输出寄存器
out_id = ps.AddRegister("out", ps.StateStorageType.UnsignedInteger, 5)(state)
ps.Add_UInt_UInt("a", "b", "out")(state)
与主流量子框架对比
| 特性 | QRAM-Simulator/PySparQ | Qiskit | Cirq | PennyLane |
|---|---|---|---|---|
| 状态表示 | 稀疏态(仅非零振幅) | 稠密态/张量网络 | 稠密态 | 混合态/自动微分 |
| 编程模型 | Register Level | 门序列 | 门序列 | 可微分编程 |
| 模拟规模 | 可达 64+ 量子比特(特定结构) | 通常 20-30 量子比特 | 类似 Qiskit | 类似 Qiskit |
| 算术电路 | 原生寄存器操作 | 需分解为门 | 需分解为门 | 需分解为门 |
| QRAM 支持 | 原生支持 | 无原生支持 | 无原生支持 | 无原生支持 |
| GPU 加速 | CUDA 支持 | 有限支持 | 有限支持 | 有限支持 |
何时使用 QRAM-Simulator?
✅ 适合使用:
- 大规模量子算术电路(加法器、乘法器)
- 需要 QRAM 的量子算法(Grover、量子机器学习)
- 稀疏态结构的量子模拟
- 噪声模型研究
❌ 不适合使用:
- 通用量子电路(门种类复杂、态稠密)
- 需要与真实量子硬件直接交互
- 变分量子算法(需要自动微分)
PySparQ 快速开始
安装
pip install pysparq
要求:
- Python 3.10 – 3.13
- NumPy
可选(推荐):
- CUDA 12.0+ (用于 GPU 加速)
5 分钟上手示例
import pysparq as ps
import numpy as np
# 1. 创建稀疏态
state = ps.SparseState()
# 2. 定义寄存器(Register Level Programming 的核心)
# AddRegister 返回寄存器 ID,用于后续操作
addr_id = ps.AddRegister("addr", ps.StateStorageType.UnsignedInteger, 4)(state)
data_id = ps.AddRegister("data", ps.StateStorageType.UnsignedInteger, 8)(state)
# 3. 初始化叠加态(所有地址等概率)- Register Level 特性
ps.Hadamard_Int("addr", 4)(state) # 对 4-bit 寄存器应用 Hadamard
print("After Hadamard:", ps.StatePrint(state))
# 4. 创建 QRAM 并加载数据
memory = [i * 2 for i in range(16)] # 16个地址,每个8-bit数据
qram = ps.QRAMCircuit_qutrit(4, 8, memory)
# 5. 执行 QRAM 加载:|addr⟩|0⟩ → |addr⟩|memory[addr]⟩
ps.QRAMLoad(qram, "addr", "data")(state)
print("After QRAM Load:", ps.StatePrint(state))
# 6. 直接进行算术操作(无需编译成门!)
# data = data + 5,使用寄存器级别加法
ps.Add_ConstUInt("data", 5)(state)
print("After Add:", ps.StatePrint(state))
# 7. 测量 - 获取某个寄存器的概率分布
prob_data = ps.Prob(state, data_id)
print("Data register probabilities:", prob_data)
Register Level 特性的关键 API
# 量子算术 - 直接寄存器操作(Register Level Programming 核心)
ps.Add_UInt_UInt(in1, in2, out) # out = in1 + in2
ps.Add_UInt_ConstUInt(reg, const) # reg = reg + const
ps.Add_ConstUInt(reg, const) # reg = reg + const(简化版)
ps.Mult_UInt_ConstUInt(in, c, out) # out = in * c
ps.ShiftLeft(reg, n) # 左移 n 位
ps.ShiftRight(reg, n) # 右移 n 位
# 基础量子门
ps.Hadamard_Int(reg, n_digits) # 对整数寄存器应用 Hadamard
ps.Xgate_Bool(reg, pos) # X 门(特定比特位)
ps.Zgate_Bool(reg, pos) # Z 门
# QRAM 操作
ps.QRAMLoad(qram, addr_reg, data_reg) # QRAM 加载
ps.QRAMLoadFast(qram, addr_reg, data_reg) # 快速版本
QRAM-Simulator C++ API
构建指南
# 克隆仓库
git clone https://github.com/Agony5757/QRAM-Simulator.git
cd QRAM-Simulator
# 创建构建目录
mkdir build && cd build
# 配置(CPU 版本)
cmake .. -DCMAKE_BUILD_TYPE=Release
# 配置(CUDA 版本,可选)
cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_CUDA=ON
# 编译
make -j$(nproc)
核心概念
#include "SparQ/include/sparse_state_simulator.h"
using namespace qram_simulator;
// 1. 创建系统
System sys;
// 2. 声明寄存器
auto addr_id = sys.create_register("addr", 4); // 4-bit 地址
auto data_id = sys.create_register("data", 8); // 8-bit 数据
// 3. 创建稀疏态
std::vector<System> state;
state.emplace_back(sys);
// 4. 应用操作(Register Level!)
Hadamard(addr_id)(state); // 叠加态
QAdder(data_id, addr_id)(state); // 直接加法操作
// 5. 测量
auto result = measure(state);
核心组件
- SparseState: 稀疏态存储与操作
- System: 寄存器管理和系统配置
- Operators: 量子操作(门、算术、QRAM)
basic_gates.h: 基础量子门quantum_arithmetic.h: 量子算术(加减乘除、移位)qram.h: QRAM 加载操作qft.h: 快速傅里叶变换(优化实现)
运行实验
# QRAM 保真度实验
./build/bin/Experiment_QRAM_Fidelity \
--addrsize 15 --datasize 3 \
--shots 100 --inputsize 10 \
--depolarizing 1e-4 --damping 1e-5 \
--seed 123456 --version normal
论文与引用
本仓库由两篇论文分别驱动,各自贡献了不同的核心能力:
Paper 1: QRAM-Simulator — arXiv:2503.13832
Efficient Simulation of Quantum Random Access Memory
面向 QRAM 模拟的稀疏态量子模拟器,提出了 Register Level Programming 范式。主要贡献:
- QRAM 电路模拟:Qutrit-based 与 Qubit-based 两种 QRAM 实现,支持退极化和振幅阻尼噪声模型
- Register Level Programming:以
uint64_t寄存器直接存储替代逐门构建,支持自顶向下的量子算法开发 - 稀疏态优化:仅存储非零振幅,可实现 64+ 量子比特的结构化算法模拟
- 错误过滤:针对含噪 QRAM 的错误过滤方案
对应代码:QRAM/、Experiments/QRAM/、Experiments/ErrorFiltration/
Paper 2: SparQ — arXiv:2503.15118
SparQ: A Sparse Quantum Circuit Simulator with Register-Level Abstraction
将 Register Level Programming 拓展为通用稀疏态量子模拟器,并提供 Python 接口。主要贡献:
- 通用稀疏态模拟器:支持 QFT、Grover、哈密顿量模拟、量子微分算法(QDA)、QCNN 等多种算法
- PySparQ:通过 pybind11 提供完整 Python API,
pip install pysparq即可使用 - 扩展算法库:状态准备、块编码、量子游走、线性系统求解等高层算法
- GPU 加速:CUDA 后端支持大规模并行稀疏态运算
对应代码:SparQ/、SparQ_Algorithm/、PySparQ/、Experiments/QFT/、Experiments/Grover/、Experiments/QDA/、Experiments/QCNN/
BibTeX
@article{sun2025sparqsim,
title={SparQSim: Simulating Scalable Quantum Algorithms via Sparse Quantum State Representations},
author={Sun, Tai-Ping and Chen, Zhao-Yun and Wang, Yun-Jie and Xue, Cheng and Liu, Huan-Yu and Zhuang, Xi-Ning and Xu, Xiao-Fan and Wu, Yu-Chun and Guo, Guo-Ping},
journal={arXiv preprint arXiv:2503.15118},
year={2025}
}
@article{wang2025refined,
title={Refined Criteria for QRAM Error Suppression via Efficient Large-Scale QRAM Simulator},
author={Wang, Yun-Jie and Sun, Tai-Ping and Zhuang, Xi-Ning and Xu, Xiao-Fan and Liu, Huan-Yu and Xue, Cheng and Wu, Yu-Chun and Chen, Zhao-Yun and Guo, Guo-Ping},
journal={arXiv preprint arXiv:2503.13832},
year={2025}
}
复现论文结果
详细的实验复现指南见 docs/paper/ 目录:
- docs/paper/README.md - 论文关联文档
- docs/paper/reproduction.md - QRAM-Simulator 实验复现指南
项目结构
QRAM-Simulator/
├── SparQ/ # C++ 稀疏态模拟器核心
│ ├── include/ # 头文件(运算符、系统操作)
│ └── src/ # 源文件
├── QRAM/ # QRAM 电路实现
│ └── include/ # Qutrit-based QRAM
├── PySparQ/ # Python 绑定
│ └── pysparq/ # Python 包
├── SparQ_Algorithm/ # 高层算法(状态准备、块编码等)
├── Experiments/ # 论文实验代码
│ └── QRAM/ # QRAM 相关实验
├── test/ # 单元测试
└── docs/ # 文档
└── paper/ # 论文复现文档
贡献者
本项目由 USTC-IAI 量子计算团队 开发。
主要开发者:
- Agony5757 (chenzhaoyun@iai.ustc.edu.cn)
- RichardSun
- Itachixc
- YunJ1e
- cilysad
- TMYTiMidlY
相关项目
- QPanda-lite - NISQ 量子计算工具包
许可证
Apache-2.0 License
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 Distributions
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 pysparq-0.1.0.tar.gz.
File metadata
- Download URL: pysparq-0.1.0.tar.gz
- Upload date:
- Size: 3.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad3eb27bb40e30cd475edbfca999036f44ae6dd1923796f73c681247137a21d2
|
|
| MD5 |
f6bb37dc3b631f7977df99c9840c0624
|
|
| BLAKE2b-256 |
849626569bfc71a632d69bf5aa9e72ed2f0a2d178e26808b16482fe94f12938f
|
Provenance
The following attestation bundles were made for pysparq-0.1.0.tar.gz:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0.tar.gz -
Subject digest:
ad3eb27bb40e30cd475edbfca999036f44ae6dd1923796f73c681247137a21d2 - Sigstore transparency entry: 1338981384
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysparq-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pysparq-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3d62bde5d899d6f01609f55eaad8819d1f74e05cf03f2f4c3af126d66d8c4ce
|
|
| MD5 |
f793985eef4dbb2b20252d5893b89b9f
|
|
| BLAKE2b-256 |
e70361f489801ef46e94e2ea2d7ef940b01326631940fe7bbd7840162b1e6283
|
Provenance
The following attestation bundles were made for pysparq-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
f3d62bde5d899d6f01609f55eaad8819d1f74e05cf03f2f4c3af126d66d8c4ce - Sigstore transparency entry: 1338981808
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysparq-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysparq-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a392be656647757b0cd28c91ef24a549f60dc250ba1193ee0f9423897b1eedbc
|
|
| MD5 |
d65208a38d45a4af1d34ef30024eabcf
|
|
| BLAKE2b-256 |
0479323d9b1188ce7501051d9f532a1128a115fb124de2252fde52be04a57b22
|
Provenance
The following attestation bundles were made for pysparq-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
a392be656647757b0cd28c91ef24a549f60dc250ba1193ee0f9423897b1eedbc - Sigstore transparency entry: 1338981759
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysparq-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pysparq-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87be8eacf658f84b3fbf9cc676c533d32947e5b9e52158370af86bfaa25995e6
|
|
| MD5 |
65f04c6bb0a330e5eef44f2ccb965e5f
|
|
| BLAKE2b-256 |
8ba882992ca80f860a245ed14a83b3c7a9703204aa66179d40cdbd65d5cece88
|
Provenance
The following attestation bundles were made for pysparq-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
87be8eacf658f84b3fbf9cc676c533d32947e5b9e52158370af86bfaa25995e6 - Sigstore transparency entry: 1338981690
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysparq-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysparq-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14698fce39f0b7e1b92a8bb3316a6509149afde1281196f943c812543f8565a1
|
|
| MD5 |
2a0bf06bb8c75e7687210ab8243c119f
|
|
| BLAKE2b-256 |
a9a90037204a06a8c6a7e53c9a867b2225bbdcd076adb890a544eba1c15327db
|
Provenance
The following attestation bundles were made for pysparq-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
14698fce39f0b7e1b92a8bb3316a6509149afde1281196f943c812543f8565a1 - Sigstore transparency entry: 1338981630
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysparq-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pysparq-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5addbadef4ffb6d1e327b35cde75a65596437e202fc358e342a160292de9707
|
|
| MD5 |
65c5bffab4943b3844483411f27a3f21
|
|
| BLAKE2b-256 |
02de2198ee2a488cefb2ecc006a42c3be15f36c081ab05f372278460b8e4354c
|
Provenance
The following attestation bundles were made for pysparq-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
b5addbadef4ffb6d1e327b35cde75a65596437e202fc358e342a160292de9707 - Sigstore transparency entry: 1338981552
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysparq-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysparq-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39830a6bd43495fc797e99c8c0279a32cad7bec62b23d5ce04b52857e44011c3
|
|
| MD5 |
44cdcce266ca97095f081c783e994ffa
|
|
| BLAKE2b-256 |
9a08e445142ea0d5a5587704dfdea8d62b4f9c3be78d90a05a4a9a9645831fb0
|
Provenance
The following attestation bundles were made for pysparq-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
39830a6bd43495fc797e99c8c0279a32cad7bec62b23d5ce04b52857e44011c3 - Sigstore transparency entry: 1338981497
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysparq-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pysparq-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56e3d429d1c1e23015b693120ec843e1ccbd4a3e71ce1bef253e0e38bc521a30
|
|
| MD5 |
d172fe517d814faa72757c05282bcd9a
|
|
| BLAKE2b-256 |
8ee21096ea66d1a5f404a8c176680906f720ac80849a54af93c8723393bbed9a
|
Provenance
The following attestation bundles were made for pysparq-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
56e3d429d1c1e23015b693120ec843e1ccbd4a3e71ce1bef253e0e38bc521a30 - Sigstore transparency entry: 1338981441
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type:
File details
Details for the file pysparq-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: pysparq-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cbfa947ad109ff3665025b4aa0b7cc26bf070568e266f31a5d2e01ea824182d
|
|
| MD5 |
dd550d88ab4d4d0982d8e772890c8356
|
|
| BLAKE2b-256 |
dd856179786f77f46174d1650854976f7afb51b08cc2ee9ba173095a85052177
|
Provenance
The following attestation bundles were made for pysparq-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
pypi-publish.yml on IAI-USTC-Quantum/QRAM-Simulator
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pysparq-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
7cbfa947ad109ff3665025b4aa0b7cc26bf070568e266f31a5d2e01ea824182d - Sigstore transparency entry: 1338981849
- Sigstore integration time:
-
Permalink:
IAI-USTC-Quantum/QRAM-Simulator@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/IAI-USTC-Quantum
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@d721c600b09ed7f6d6d07e789119e4c896913d49 -
Trigger Event:
push
-
Statement type: