How to view details of job run on the D-Wave Annealer

 I am currently following the procedure stated in the Ocean SDK documentation for using the Dwave-Sampler which is as follows.

from dwave.system.samplers import DWaveSampler
>>> from dwave.system.composites import EmbeddingComposite
>>> sampler = EmbeddingComposite(DWaveSampler())
>>> response = sampler.sample_ising({'a': -0.5, 'b': 1.0}, {('a', 'b'): -1})
>>> response.data_vectors['energy']  


Although this method does not allow me to check details like annealing times, embedding times, etc.
How can I run my job so as to return the results along with job details and description.
Any help would be greatly appreciated.
Thanks.
1

Comments

3 comments
  • Hello Akshay,

    The code you posted returns a response object, which contains information about the results of sample (values, energy, etc.) as well as the timing information you are looking for. You might find it helpful to print the results of the response in your code above to see all the data that is returned.

    For more information about the timing of problems on the D-Wave QPU, see the documentation on Breakdown of QPU Access Time.

    2
    Comment actions Permalink
  • Thanks a lot. I have been running my examples on local solver first which do not return the timing details, so did not bother to check the results from the DwaveSampler. 

    Thanks again for your help. Much appreciated.

    0
    Comment actions Permalink
  • No problem Akshay, happy to help.

    0
    Comment actions Permalink

Please sign in to leave a comment.

Didn't find what you were looking for?

New post