Commit f01333d9 authored by Murali's avatar Murali
Browse files

Fixed bug - shots not added to run

parent 0f16832e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -129,7 +129,7 @@ def qc_circ(n_qubits_matrix, classical_solution, args, input_vars):
    
    t = time.time()
    # Run the job
    job = sampler.run([isa_circ])
    job = sampler.run([isa_circ], shots=shots)
    # Grab results from the job
    result = job.result()
    t_run = time.time() - t