We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b892d1 commit 79b67f4Copy full SHA for 79b67f4
testing/qdp/test_bindings.py
@@ -1278,7 +1278,8 @@ def test_iqp_fwt_shared_vs_global_memory_threshold():
1278
engine = QdpEngine(0)
1279
1280
# Test at and around the shared memory threshold
1281
- for num_qubits in [9, 10]:
+ # n <= 10: shared memory FWT, n > 10: global memory FWT (multi-launch)
1282
+ for num_qubits in [9, 10, 11]:
1283
data_len = num_qubits + num_qubits * (num_qubits - 1) // 2
1284
data = [0.05 * i for i in range(data_len)]
1285
0 commit comments