Skip to content

Commit 25c9c8c

Browse files
committed
add test coverage bits
1 parent f70531f commit 25c9c8c

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
@@ -1203,7 +1203,8 @@ def test_iqp_fwt_shared_vs_global_memory_threshold():
12031203
engine = QdpEngine(0)
12041204

12051205
# Test at and around the shared memory threshold
1206-
for num_qubits in [9, 10]:
1206+
# n <= 10: shared memory FWT, n > 10: global memory FWT (multi-launch)
1207+
for num_qubits in [9, 10, 11]:
12071208
data_len = num_qubits + num_qubits * (num_qubits - 1) // 2
12081209
data = [0.05 * i for i in range(data_len)]
12091210

0 commit comments

Comments
 (0)