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 154 155 156 157 158 159 160
// Copyright 2021 Rigetti Computing
//
// 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.
use std::{
borrow::Cow,
collections::{HashMap, HashSet},
};
use crate::instruction::{FrameAttributes, FrameDefinition, FrameIdentifier, Instruction, Qubit};
/// A collection of Quil frames (`DEFFRAME` instructions) with utility methods.
#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct FrameSet {
frames: HashMap<FrameIdentifier, FrameAttributes>,
}
impl FrameSet {
pub fn new() -> Self {
FrameSet {
frames: HashMap::new(),
}
}
/// Return a list of all frame IDs described by this FrameSet.
pub fn get_keys(&self) -> Vec<&FrameIdentifier> {
self.frames.keys().collect()
}
/// Return all frames in the set which match all of these conditions. If a frame _would_ match, but is
/// not present in this [FrameSet], then it is not returned (notably, the [FrameMatchCondition::Specific]
/// match condition).
pub(crate) fn get_matching_keys<'s>(
&'s self,
condition: FrameMatchCondition,
) -> HashSet<&'s FrameIdentifier> {
let keys = self.frames.keys();
match condition {
FrameMatchCondition::All => keys.collect(),
FrameMatchCondition::AnyOfNames(names) => {
keys.filter(|&f| names.contains(&f.name)).collect()
}
FrameMatchCondition::AnyOfQubits(qubits) => {
let any_of_set: HashSet<_> = qubits.iter().collect();
keys.filter(|&f| f.qubits.iter().any(|q| any_of_set.contains(q)))
.collect()
}
FrameMatchCondition::ExactQubits(qubits) => {
let exact_set: HashSet<_> = qubits.iter().collect();
keys.filter(|&f| f.qubits.iter().collect::<HashSet<_>>() == exact_set)
.collect()
}
FrameMatchCondition::Specific(frame) => {
// This unusual pattern (fetch key & value by key, discard value) allows us to return
// a reference to `self` rather than `condition`, keeping lifetimes simpler.
if let Some((frame, _)) = self.frames.get_key_value(frame) {
vec![frame].into_iter().collect()
} else {
HashSet::new()
}
}
FrameMatchCondition::And(conditions) => conditions
.into_iter()
.map(|c| self.get_matching_keys(c))
.reduce(|acc, el| acc.into_iter().filter(|&v| el.contains(v)).collect())
.unwrap_or_default(),
FrameMatchCondition::Or(conditions) => conditions
.into_iter()
.flat_map(|c| self.get_matching_keys(c))
.collect(),
}
}
/// Retrieve the attributes of a frame by its identifier.
pub fn get(&self, identifier: &FrameIdentifier) -> Option<&FrameAttributes> {
self.frames.get(identifier)
}
/// Insert a new frame by ID, overwriting any existing one.
pub fn insert(&mut self, identifier: FrameIdentifier, attributes: FrameAttributes) {
self.frames.insert(identifier, attributes);
}
/// Return a new [FrameSet] which describes only the given [FrameIdentifier]s.
pub fn intersection(&self, identifiers: &HashSet<&FrameIdentifier>) -> Self {
let mut new_frameset = Self::new();
for (identifier, definition) in &self.frames {
if identifiers.contains(&identifier) {
new_frameset.insert(identifier.clone(), definition.clone())
}
}
new_frameset
}
/// Iterate through the contained frames.
pub fn iter(&self) -> std::collections::hash_map::Iter<'_, FrameIdentifier, FrameAttributes> {
self.frames.iter()
}
/// Return the number of frames described within.
pub fn len(&self) -> usize {
self.frames.len()
}
/// Return true if this describes no frames.
pub fn is_empty(&self) -> bool {
self.frames.is_empty()
}
/// Return the Quil instructions which describe the contained frames.
pub fn to_instructions(&self) -> Vec<Instruction> {
self.frames
.iter()
.map(|(identifier, attributes)| {
Instruction::FrameDefinition(FrameDefinition {
identifier: identifier.clone(),
attributes: attributes.clone(),
})
})
.collect()
}
}
pub(crate) enum FrameMatchCondition<'a> {
/// Match all frames in the set
All,
/// Match all frames which share any one of these names
AnyOfNames(&'a [String]),
/// Match all frames which contain any of these qubits
AnyOfQubits(Cow<'a, [Qubit]>),
/// Match all frames which contain exactly these qubits
ExactQubits(Cow<'a, [Qubit]>),
/// Return this specific frame, if present in the set
Specific(&'a FrameIdentifier),
/// Return all frames which match all of these conditions
And(Vec<FrameMatchCondition<'a>>),
/// Return all frames which match any of these conditions
Or(Vec<FrameMatchCondition<'a>>),
}