Datasets:

File size: 6,061 Bytes
de9f5ad
 
 
 
 
 
 
51e1da7
 
 
 
de9f5ad
 
 
 
51e1da7
de9f5ad
 
 
51e1da7
 
 
de9f5ad
51e1da7
312357d
de9f5ad
 
51e1da7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
de9f5ad
312357d
de9f5ad
51e1da7
 
312357d
51e1da7
d2beec8
 
7ceb051
312357d
 
51e1da7
 
7ceb051
51e1da7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
de9f5ad
 
 
51e1da7
 
de9f5ad
51e1da7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
de9f5ad
 
 
7ceb051
d2beec8
 
de9f5ad
 
51e1da7
 
 
de9f5ad
51e1da7
de9f5ad
51e1da7
 
 
d2beec8
 
 
51e1da7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
de9f5ad
51e1da7
7ceb051
51e1da7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
---
license: mit
configs:
- config_name: layout-manifest
  data_files:
  - split: train
    path: "metadata/manifest.parquet"
- config_name: geometry-features-v1
  data_files:
  - split: train
    path: "metadata/geometry-features-v1.parquet"
tags:
- quantum
- superconducting
- qiskit-metal
- qiskit
- gds
- layout
- quantum-hardware
- design
- device
- geometry
pretty_name: SQuADDS Layouts
size_categories:
- 10K<n<100K
---

<center>
  <img src="https://github.com/LFL-Lab/SQuADDS/blob/master/docs/_static/images/squadds_logo_dark_name.png?raw=true" width="80%" alt="SQuADDS Logo" />
</center>

# SQuADDS Layouts - versioned GDS artifacts for superconducting quantum hardware

SQuADDS Layouts is the geometry-artifact companion to
[SQuADDS_DB](https://huggingface.co/datasets/SQuADDS/SQuADDS_DB), the
Superconducting Qubit And Device Design and Simulation Database. It provides
checksum-verified GDS files, stable geometry identities, and machine-readable
geometry metadata so a simulation result can be traced to the exact layout
that produced it.

- **Homepage:** [https://lfl-lab.github.io/SQuADDS/](https://lfl-lab.github.io/SQuADDS/)
- **Repository:** [https://github.com/LFL-Lab/SQuADDS](https://github.com/LFL-Lab/SQuADDS)
- **Simulation database:** [SQuADDS/SQuADDS_DB](https://huggingface.co/datasets/SQuADDS/SQuADDS_DB)
- **Paper:** [https://arxiv.org/pdf/2312.13483.pdf](https://arxiv.org/pdf/2312.13483.pdf)
- **Point of contact:** [Sadman Ahmed Shanto](mailto:shanto@usc.edu)

## Contents

The current release contains 24,106 reproducible superconducting-device layouts.

| Component | Count | Source simulation configuration | Layout provenance |
| --- | ---: | --- | --- |
| `GeneralizedCapNInterdigital` | 20,062 | `coupler-GeneralizedCapNInterdigital-cap_matrix` | Matched simulation layouts; includes the `q3d_cap` Q3D sweep |
| `CapNInterdigitalTee` | 894 | `coupler-CapNInterdigitalTee-cap_matrix` | Deterministic Qiskit Metal exports, one per database row |
| `CavityClawRouteMeander` | 1,216 | `cavity_claw-RouteMeander-eigenmode` | Deterministic full cavity routes from nested claw, CLT-coupler, and CPW options |
| `TransmonCross` | 1,934 | `qubit-TransmonCross-cap_matrix` | Deterministic Qiskit Metal qubit exports, one per database row |

The incomplete `q3d_cap_00317` export without a simulation record, matrix, or
GDS artifact is intentionally excluded. The generalized dataset uses `north` and `south`
as canonical terminal names; `top` and `bottom` simulation fields are retained
in SQuADDS_DB as compatibility aliases.

## Dataset Configurations

### `layout-manifest`

`metadata/manifest.parquet` is the authoritative index. Every record includes:

- `layout_id`: content-derived geometry identity.
- `artifact_id`: SHA-256 checksum of the exact GDS file.
- `design_id`: component-aware identity derived from design options.
- `source_id`, `simulation_repo`, and `simulation_config`: links to the source simulation record.
- `gds_path`: repository-relative raw artifact path.
- `bbox_um`, `layers`, `polygon_count`, and `cell_count`: geometry metadata in micrometers.

### `geometry-features-v1`

`metadata/geometry-features-v1.parquet` contains stable numerical features
derived from the manifest without changing the raw GDS artifact. It includes
bounds, area, aspect ratio, polygon and cell counts, plus sparse per-layer
area and polygon statistics. This configuration is the reproducible input
contract for future embedding models; it is not itself a learned embedding.

## Access

Use the SQuADDS Python API to resolve a layout from a SQuADDS_DB row, download
the checksum-verified GDS file, and inspect it on demand:

```python
from squadds import SQuADDS_DB

row = ...  # one SQuADDS_DB simulation row
gds_path = SQuADDS_DB.download_gds(row)
```

Or use `LayoutClient` directly when you have a layout, design, or source ID:

```python
from squadds.layouts import LayoutClient

client = LayoutClient()
layout = client.find(source_id="exp6/cap_0000")
summary = client.summary(layout)
```

Raw artifacts are organized as:

```text
raw/GeneralizedCapNInterdigital/<campaign>/<instance>.gds
raw/CapNInterdigitalTee/generated_from_cap_matrix/<instance>.gds
raw/CavityClawRouteMeander/generated_from_cavity_claw_eigenmode/<instance>.gds
raw/TransmonCross/generated_from_transmon_cross_cap_matrix/<instance>.gds
```

The generalized layer and port convention is documented in
`metadata/layer-semantics-v1.json`. Install the SQuADDS optional GDS dependency
group (`uv sync --extra gds`) to inspect geometry locally.

## Provenance and Contributions

The generalized-capacitor simulation data was contributed by **Saikat Das** of
the Levenson-Falk Lab at USC. `CapNInterdigitalTee` artifacts are reproducibly
generated from their paired SQuADDS_DB design definitions using Qiskit Metal.
The cavity and TransmonCross artifacts are likewise generated from their
paired SQuADDS_DB design options. Their GDS files contain functional conductor
and etch geometry while omitting the finite simulation-domain ground plane.

New layouts should include a matching SQuADDS_DB simulation row, a stable
source identifier, exact artifact checksum, component name, geometry metadata,
and documented layer semantics. This keeps raw geometry, simulations, derived
features, and future embeddings independently versioned but linkable.

## Citation

If you use SQuADDS Layouts in your research, cite SQuADDS:

```bibtex
@article{Shanto2024squaddsvalidated,
  doi = {10.22331/q-2024-09-09-1465},
  url = {https://doi.org/10.22331/q-2024-09-09-1465},
  title = {{SQ}u{ADDS}: {A} validated design database and simulation workflow for superconducting qubit design},
  author = {Shanto, Sadman and Kuo, Andre and Miyamoto, Clark and Zhang, Haimeng and Maurya, Vivek and Vlachos, Evangelos and Hecht, Malida and Shum, Chung Wa and Levenson-Falk, Eli},
  journal = {{Quantum}},
  volume = {8},
  pages = {1465},
  year = {2024}
}
```

## License

This project is licensed under the [MIT License](https://github.com/LFL-Lab/SQuADDS/blob/master/LICENSE).