We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f70531f commit 25c9c8cCopy full SHA for 25c9c8c
testing/qdp/test_bindings.py
@@ -1203,7 +1203,8 @@ def test_iqp_fwt_shared_vs_global_memory_threshold():
1203
engine = QdpEngine(0)
1204
1205
# Test at and around the shared memory threshold
1206
- for num_qubits in [9, 10]:
+ # n <= 10: shared memory FWT, n > 10: global memory FWT (multi-launch)
1207
+ for num_qubits in [9, 10, 11]:
1208
data_len = num_qubits + num_qubits * (num_qubits - 1) // 2
1209
data = [0.05 * i for i in range(data_len)]
1210
0 commit comments