Hi there,
I have recently gotten this error when running jobs on QPU Ascella:
I’m following the tutorial and created a while loop to wait for the job to finish before retrieving the data, but it seems like it is too fast (??) so the complete_time is not an integer or None.
Is there a fix for this?
I also just started getting this warning today:
[warning] DeprecationWarning: Call to deprecated function (or staticmethod) thresholded_output. (Add detectors as components) – Deprecated since version 0.12
It must be raised by one of the QPU lines below (I assume the min_detected_photons_filter, self.N is 3 in this case), any suggestion on what to do about it? I know it’s only a warning but I’d just like it clean if possible.
qpu_platform = "qpu:ascella"
QPU = pcvl.RemoteProcessor(qpu_platform)
QPU.set_circuit(self.chip)
QPU.with_input(input_state)
QPU.min_detected_photons_filter(self.N)
Thanks
Markus