You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SampleSet returned by neal has no timing info analogous to DWaveSampler().sample(...).info['timing']
Other useful bits of info like num_sweeps_per_beta = max(1, num_sweeps // 1000.0), num_betas = int(math.ceil(num_sweeps / num_sweeps_per_beta)) are missing
Context
Useful for accurate and consistent timings, and
For noting the discrepancy between actual number of sweeps vs input number of sweeps (and thus schedule)
The text was updated successfully, but these errors were encountered:
kevinchern
changed the title
Info in returned SampleSet
More info in returned SampleSet
Feb 4, 2022
Problem
DWaveSampler().sample(...).info['timing']
num_sweeps_per_beta = max(1, num_sweeps // 1000.0)
,num_betas = int(math.ceil(num_sweeps / num_sweeps_per_beta))
are missingContext
The text was updated successfully, but these errors were encountered: