I run a job on a pcvl.RemoteProcessor( bhla ) few weeks ago.
Today I only have job id:
jid='0fb9b13b-8124-4b5a-....
I can retrieve results of this experiment using this code
import perceval as pcvl
pcvl.save_token(token)
remProc = pcvl.RemoteProcessor("any name")
job = remProc.resume_job(jid)
print('Job status =%s '%(job.status()))
results = job.get_results()
print(results['results'])
My question is how can I recover the other information about this job (meta data) :
- the circuit(s) associated with this job
- number of shots and execution duration
- the name of remote backend: was it sim:ascella or qpu:ascella ?
- acquired charge for this job
Thanks
Jan