-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incorporate automatic layout generation in
Register
(#753)
* Adding the register layout generator * Define Register.with_automatic_layout() * Function scope modifications * Unit tests * Update tutorial * Address review comments * Account for when the Register requires more traps than max_traps
- Loading branch information
Showing
4 changed files
with
223 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# Copyright 2024 Pulser Development Team | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
from __future__ import annotations | ||
|
||
import numpy as np | ||
from scipy.spatial.distance import cdist | ||
|
||
|
||
def generate_trap_coordinates( | ||
atom_coords: np.ndarray, | ||
min_trap_dist: float, | ||
max_radial_dist: int, | ||
max_layout_filling: float, | ||
optimal_layout_filling: float | None = None, | ||
mesh_resolution: float = 1.0, | ||
min_traps: int = 1, | ||
max_traps: int | None = None, | ||
) -> list[np.ndarray]: | ||
"""Generates trap coordinates for a collection of atom coordinates. | ||
Generates a mesh of resolution `mesh_resolution` covering a disk of radius | ||
`max_radial_dist`. Deletes all the points of the mesh that are below a | ||
radius `min_trap_dist` of any atoms or traps and iteratively selects from | ||
the remaining points the necessary number of traps such that the ratio | ||
number of atoms to number of traps is at most max_layout_filling and as | ||
close as possible to optimal_layout_filling, while being above min_traps | ||
and below max_traps. | ||
Args: | ||
atom_coords: The coordinates where atoms will be placed. | ||
min_trap_dist: The minimum distance between traps, in µm. | ||
max_radial_dist: The maximum distance from the origin, in µm. | ||
max_layout_filling: The maximum ratio of atoms to traps. | ||
optimal_layout_filling: An optional value for the optimal ratio of | ||
atoms to traps. If not given, takes max_layout_filling. | ||
mesh_resolution: The spacing between points in the mesh of candidate | ||
coordinates, in µm. | ||
min_traps: The minimum number of traps in the resulting layout. | ||
max_traps: The maximum number of traps in the resulting layout. | ||
""" | ||
optimal_layout_filling = optimal_layout_filling or max_layout_filling | ||
assert optimal_layout_filling <= max_layout_filling | ||
assert max_traps is None or min_traps <= max_traps | ||
|
||
# Generate all coordinates where a trap can be placed | ||
lx = 2 * max_radial_dist | ||
side = np.linspace(0, lx, num=int(lx / mesh_resolution)) - max_radial_dist | ||
x, y = np.meshgrid(side, side) | ||
in_circle = x**2 + y**2 <= max_radial_dist**2 | ||
coords = np.c_[x[in_circle].ravel(), y[in_circle].ravel()] | ||
|
||
# Get the atoms in the register (the "seeds") | ||
seeds: list[np.ndarray] = list(atom_coords) | ||
n_seeds = len(seeds) | ||
|
||
# Record indices and distances between coords and seeds | ||
c_indx = np.arange(len(coords)) | ||
all_dists = cdist(coords, seeds) | ||
|
||
# Accounts for the case when the needed number is less than min_traps | ||
min_traps = max( | ||
np.ceil(n_seeds / max_layout_filling).astype(int), min_traps | ||
) | ||
|
||
# Use max() in case min_traps is larger than the optimal number | ||
target_traps = max( | ||
np.round(n_seeds / optimal_layout_filling).astype(int), | ||
min_traps, | ||
) | ||
if max_traps: | ||
target_traps = min(target_traps, max_traps) | ||
|
||
# This is the region where we can still add traps | ||
region_left = np.all(all_dists > min_trap_dist, axis=1) | ||
# The traps start out as being just the seeds | ||
traps = seeds.copy() | ||
for _ in range(target_traps - n_seeds): | ||
if not np.any(region_left): | ||
break | ||
# Select the point in the valid region that is closest to a seed | ||
selected = c_indx[region_left][ | ||
np.argmin(np.min(all_dists[region_left][:, :n_seeds], axis=1)) | ||
] | ||
# Add the selected point to the traps | ||
traps.append(coords[selected]) | ||
# Add the distances to the new trap | ||
all_dists = np.append(all_dists, cdist(coords, [traps[-1]]), axis=1) | ||
region_left *= all_dists[:, -1] > min_trap_dist | ||
if len(traps) < min_traps: | ||
raise RuntimeError( | ||
f"Failed to find a site for {min_traps - len(traps)} traps." | ||
) | ||
return traps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters