From 0295991cb4c42340444f81cab723e7573a0540f1 Mon Sep 17 00:00:00 2001 From: Katharine Hyatt Date: Mon, 7 Oct 2024 15:47:59 -0400 Subject: [PATCH] fix: Lower maximum qubit count for GH --- benchmark/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/benchmark.py b/benchmark/benchmark.py index 8a2d625..d8894ed 100644 --- a/benchmark/benchmark.py +++ b/benchmark/benchmark.py @@ -7,7 +7,7 @@ np.random.seed(0x1C2C6D66) batch_size = (10, 100) -n_qubits = range(3, 21) +n_qubits = range(3, 16) exact_shots_results = ( "state_vector", "density_matrix q[0], q[1]",