job = execute(qwalk_circuit, backend='ibmq_16_melbourne', shots=1000)
results = job.result()
time = job.result().time_taken
What are the units of time? And where is this stated in the documentation?
Thanks!
job = execute(qwalk_circuit, backend='ibmq_16_melbourne', shots=1000)
results = job.result()
time = job.result().time_taken
What are the units of time? And where is this stated in the documentation?
Thanks!
As @3yakuya has said, this is missing from the documentation.
The best I could find is a Qiskit tutorial (version 0.37.1) which uses the parameter. According to this tutorial (see the 3rd code cell), the unit of time appears to be seconds:
time_taken
to the runtime in IBM quantum experience, but I cannot find any relation between the two. – Mauricio Jul 29 '22 at 13:45