Skip to content

Commit 79b67f4

Browse files
committed
add test coverage bits
1 parent 6b892d1 commit 79b67f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

testing/qdp/test_bindings.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1278,7 +1278,8 @@ def test_iqp_fwt_shared_vs_global_memory_threshold():
12781278
engine = QdpEngine(0)
12791279

12801280
# Test at and around the shared memory threshold
1281-
for num_qubits in [9, 10]:
1281+
# n <= 10: shared memory FWT, n > 10: global memory FWT (multi-launch)
1282+
for num_qubits in [9, 10, 11]:
12821283
data_len = num_qubits + num_qubits * (num_qubits - 1) // 2
12831284
data = [0.05 * i for i in range(data_len)]
12841285

0 commit comments

Comments
 (0)