-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathbloq_report_card.py
More file actions
137 lines (109 loc) · 4.53 KB
/
bloq_report_card.py
File metadata and controls
137 lines (109 loc) · 4.53 KB
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
# Copyright 2023 Google LLC
#
# 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
#
# https://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.
import time
import warnings
from collections.abc import Iterable
from typing import Any, Optional
import pandas as pd
import pandas.io.formats.style
from qualtran import Bloq, BloqExample
from qualtran.testing import (
BloqCheckResult,
check_bloq_example_decompose,
check_bloq_example_make,
check_bloq_example_qtyping,
check_bloq_example_serializes,
check_equivalent_bloq_example_counts,
)
from .bloq_finder import get_bloq_classes, get_bloq_examples
def _get_package(bloq_cls: type[Bloq]) -> str:
"""The package name for a bloq class"""
return '.'.join(bloq_cls.__module__.split('.')[:-1])
def color_status(v: BloqCheckResult):
"""Used to style the dataframe."""
if v is BloqCheckResult.PASS:
return 'background-color:lightgreen'
if v is BloqCheckResult.MISSING:
return 'background-color:lightyellow'
if v is BloqCheckResult.NA:
return 'background-color:lightgrey'
if v is BloqCheckResult.UNVERIFIED:
return 'background-color:lightblue'
return 'background-color:red'
def format_status(v: BloqCheckResult):
"""Used to format the dataframe."""
return v.name.lower()
def bloq_classes_with_no_examples(
bclasses: Iterable[type[Bloq]], bexamples: Iterable[BloqExample]
) -> set[type[Bloq]]:
ks = set(bclasses)
for be in bexamples:
try:
ks.remove(be.bloq_cls)
except KeyError:
pass
return ks
IDCOLS = ['package', 'bloq_cls', 'name']
CHECKCOLS = ['make', 'decomp', 'counts', 'serialize', 'qtyping']
def record_for_class_with_no_examples(k: type[Bloq]) -> dict[str, Any]:
return {'bloq_cls': k.__name__, 'package': _get_package(k), 'name': '-'} | {
check_name: BloqCheckResult.MISSING for check_name in CHECKCOLS
}
def record_for_bloq_example(be: BloqExample) -> dict[str, Any]:
start = time.perf_counter()
record = {
'bloq_cls': be.bloq_cls.__name__,
'package': _get_package(be.bloq_cls),
'name': be.name,
'make': check_bloq_example_make(be)[0],
'decomp': check_bloq_example_decompose(be)[0],
'counts': check_equivalent_bloq_example_counts(be)[0],
'serialize': check_bloq_example_serializes(be)[0],
'qtyping': check_bloq_example_qtyping(be)[0],
}
dur = time.perf_counter() - start
if dur > 1.0:
warnings.warn(f"{be.name} took {dur} to check.")
return record
def show_bloq_report_card(df: pd.DataFrame) -> pandas.io.formats.style.Styler:
return df.style.map(color_status, CHECKCOLS).format(format_status, CHECKCOLS)
def get_bloq_report_card(
bclasses: Optional[Iterable[type[Bloq]]] = None,
bexamples: Optional[Iterable[BloqExample]] = None,
package_prefix: str = 'qualtran.bloqs.',
) -> pd.DataFrame:
if bclasses is None:
bclasses = get_bloq_classes()
if bexamples is None:
bexamples = get_bloq_examples()
# Default exclusions: pass explicit bexamples to override.
# qubitization_qpi_hubbard_model_xxx -- too slow
skips = ['qubitization_qpe_hubbard_model_small', 'qubitization_qpe_hubbard_model_large']
bexamples = [bex for bex in bexamples if bex.name not in skips]
records: list[dict[str, Any]] = []
missing_bclasses = bloq_classes_with_no_examples(bclasses, bexamples)
records.extend(record_for_class_with_no_examples(k) for k in missing_bclasses)
records.extend(record_for_bloq_example(be) for be in bexamples)
df = pd.DataFrame(records)
df['package'] = df['package'].str.removeprefix(package_prefix)
return df.sort_values(by=IDCOLS).loc[:, IDCOLS + CHECKCOLS].reindex()
def summarize_results(report_card: pd.DataFrame) -> pd.DataFrame:
"""Take a `report_card` data frame and return the number of times each status was noted."""
summary = (
pd.DataFrame([report_card[k].value_counts().rename(k) for k in CHECKCOLS])
.fillna(0)
.astype(int)
)
summary.columns = [v.name.lower() for v in summary.columns]
return summary