From 9ab7f5ec588bad14ccbcf3ab350f1070e9e3177d Mon Sep 17 00:00:00 2001 From: Liwei Yang Date: Thu, 9 Feb 2023 18:56:43 +0800 Subject: [PATCH] Remove printing of execution time. --- src/qibotn/qasm_quimb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qibotn/qasm_quimb.py b/src/qibotn/qasm_quimb.py index 2ac3797..9aa7f4b 100644 --- a/src/qibotn/qasm_quimb.py +++ b/src/qibotn/qasm_quimb.py @@ -190,7 +190,7 @@ def eval_QI_qft(nqubits, backend="numpy", qibo_backend="qibojit", with_swaps=Tru circ_qibo = qibo_qft(nqubits, with_swaps) amplitudes_reference = np.array(circ_qibo(init_state)) end = timer() - print("qibo time is " + str(end - start)) + qibo_qft_time = end - start qasm_circ = circ_qibo.to_qasm() #####################################################################