Skip to main contentIBM Quantum Documentation
Qiskit IBM Provider is deprecated. See the migration guide to use Qiskit Runtime.

Qiskit IBM Provider 0.11 release notes


0.11.0

Upgrade Notes

  • Modify skip_reset_qubits optional flag to the constructor for PadDynamicalDecoupling. If False, dynamical decoupling is applied on qubits regardless of their state, even on delays that are at the beginning of a circuit. This option now matches the behavior in qiskit.

Deprecation Notes


  • qiskit-ibm-provider has been deprecated with its support ending and eventual archival being no sooner

    than 3 months from the release date of version 0.11.0. The function provided by qiskit-ibm-provider has been moved to qiskit-ibm-runtime. Please see the migration guide for more information api/migration-guides/qiskit-runtime.


0.10.0

New Features

  • Sessions started with open_session() will use the new /sessions endpoint.

    The sessions functionality will not change but note that backend.run() sessions prior to this release will no longer be supported after March 31, 2024. Please update your qiskit-ibm-provider version as soon as possible before this date.


0.9.0

Upgrade Notes

  • Extend DynamicCircuitInstructions.from_backend() to extract and patch durations from both BackendV1 and BackendV2 objects. Also add DynamicCircuitInstructions.from_target() to use a Target object instead.

  • The IBM Provider is now the central broker for IBM-related publisher/subscriber events emitted during job submission. If you manage a component that subscribes to events from the IBM Provider, you should use Subscriber from this respository.

  • qiskit-ibm-provider is now compatible with Qiskit versions >= 0.45, including 1.0.0.

Bug Fixes

  • Fix the patching of DynamicCircuitInstructions for instructions with durations that are not in units of dt.

0.8.0

New Features

  • qiskit_ibm_provider.utils.RuntimeEncoder and qiskit_ibm_provider.utils.RuntimeDecoder now support qiskit_aer.noise.NoiseModel.

Upgrade Notes

  • The provider now requires Qiskit 0.45.0 and supports new features from this version of Qiskit.

Bug Fixes

  • Fixed an issue where canceled and failed jobs would return an invalid result that resulted in a type error, preventing the actual error from being returned to the user.

0.7.1

New Features

  • Added a new flag, schedule_idle_qubits to the constructor for the PadDelay and PadDynamicalDecoupling passes. This flag when set to True will have the scheduling passes insert a full circuit duration delay on any idle qubits in the circuit.

Upgrade Notes

  • The default behavior of the PadDelay and PadDynamicalDecoupling passes for idle qubits in the circuit have changed. Previously, by default the passes would schedule any idle qubits in the circuit by inserting a delay equal to the full circuit duration. This has been changed so by default only active qubits are scheduled. This change was made because the extra delays were additional overhead in the job payload that were effectively a no-op so they added extra overhead to job submission for no gain. If you need to restore the previous behavior you can instantiate PadDelay or PadDynamicalDecoupling with the keyword argument schedule_idle_qubits=True which will restore the previous behavior.

Bug Fixes

  • Fixed an issue where circuit metadata was not being serialized correctly for numpy numbers. In addition, added RuntimeDecoder as metadata deserializer.

  • The utility function hms_to_seconds now handles values greater than one day. This means that passing in values greater than one day for the max_time parameter in Sessions is possible.

  • When retrieving the backend properties of a job with properties(), the job creation date is now used to get the specific backend properties used when the job was run.

  • The method job.properties() previously did nothing. Now it returns the backend properties for this job.

  • Fixed a bug where shots passed in as a numpy type were not being serialized correctly.


0.7.0

New Features

  • Added support for using session. The syntax here is slightly different than that in qiskit-ibm-runtime, but the functionality is similar. Here is an example using session as a context manager:

    with backend.open_session() as session:
      job = backend.run(ReferenceCircuits.bell())

    And here is an example of session not as a context manager:

    backend = IBMProvider().get_backend("ibmq_qasm_simulator")
    backend.open_session()
    job = backend.run(circ)
    backend.cancel_session()

Bug Fixes

  • Replace coupling_map.reduce(nodes) with coupling_map.graph.subgraph(nodes) to apply DD on a disjoint coupling map. See discussion in https://github.com/Qiskit/qiskit-terra/pull/9710(opens in a new tab)

  • IBMProvider.get_backend() returns the backend with its default options. At the end of this example,

    backend1 = provider.get_backend("xxx")
    backend1.options.shots = 100
    backend2 = provider.get_backend("xxx")

    backend2.options.shots has the default value (4000). backend1.options.shots also has the default value, because backend1 and backend2 are the same instance.


0.6.3

New Features

  • Added a new property, usage_estimation() that returns the estimated running time, quantum_seconds. Quantum time represents the time that the QPU complex is occupied exclusively by the job.

Upgrade Notes

Bug Fixes

  • Fixes a bug in the function jobs(). Refer to #586(opens in a new tab) for more details.

  • A transpilation error will no longer occur when attempting to transpile a circuit containing a conditional IGate with Qiskit 0.44.

  • 2pi wrapping cannot be applied on a parameterized global phase. Use the DAGCircuit global_phase setter to wrap the phase for floats only.

  • Staggered inter-pulse spacings allow the user to disable certain interactions between neighboring qubits by Refer to #539 <https://github.com/Qiskit/qiskit-ibm-provider/issues/539(opens in a new tab)> for more details


0.6.2

New Features

  • Raise an exception if the number of circuits passed to IBMBackend.run() exceeds IBMBackend._max_circuits.

  • Support has been added to select the Qiskit runtime image to invoke the program with for testing purposes with the image option to backend.run, eg., backend.run(circuits, image="test-image")

Bug Fixes

  • Fixes an issue where submitting a large job failed due to a write operation timeout.

0.6.1

New Features

  • When retrieving a job with retrieve_job() the params will no longer be returned from the API. They will instead be loaded lazily when they are actually needed.

  • In ‘time_per_step’, if ‘time_per_step_local’ is None, print None, rather than converting with ‘utc_to_local’, because this resulted in a bug.

Upgrade Notes

  • Added error message if the circuit contains more qubits than supported on the backend. Previously, this validation was done on the server side.

Bug Fixes

  • Fixed infinite recursion when attempting to deepcopy an IBMBackend.

  • Fixed an issue where circuit metadata was not being serialized correctly resulting in a type error.

  • A bug that the backend target generation fails with an error in some edge cases is fixed. See Qiskit/qiskit-ibm-provider/#650 for more details.


0.6.0

New Features

  • In run(), added a check to whether the input circuits are actually dynamic. Issue a warning if the user specifies dynamic=False, while the circuits are actually dynamic.

  • Python 3.11 is now supported.

Deprecation Notes

  • Removed support for input circuit as Schedule to IBMBackend.run(). Use pulse gates instead. See here for how to use pulse gates.

Bug Fixes

  • Fix mapping for qubit registers when padding for fast-path cases, after transpiling. This mapping is required due to qiskit-terra #9332 <https://github.com/Qiskit/qiskit-terra/issues/9332(opens in a new tab)>

  • Fixed a bug where the backend target qubit_properties were not being decoded correctly.

  • Allow for users to retrieve all backends even if one of the backends has a missing configuration. The backend without a configuration will not be returned.


0.5.3

Upgrade Notes

  • If the dynamic parameter is set to True in run() and the backend being used does not support dymamic circuits, a warning will be raised.

  • When constructing a backend qiskit.transpiler.Target, faulty qubits and gates from the backend configuration will be filtered out.

Bug Fixes

  • Match the adjustment of measurements for devices with odd short gate lengths.

  • Fixed a bug where status() was not returning pending jobs.

  • An unnecessary call to refresh() has been removed from status(). Circuits and other job attributes were being re-fetched unnecessarily, causing slow job retrieval times.

  • The dynamic circuit odd cycle delay has been bumped from 1 cycle to 4 cycles to address hardware limitations.


0.5.2

New Features

  • run() now checks if the input circuits use a faulty qubit or a faulty edge.

Bug Fixes

  • Fixed an issue where instances were not being set when backend configurations were loaded in get_backend() and backends().

0.5.1

Upgrade Notes


0.5.0

New Features

  • Added the method target_history(). This method is similar to target(). The difference is that the new method enables the user to pass a datetime parameter, to retrieve historical data from the backend.

Upgrade Notes

  • There will now be a warning if a boolean is passed in for the init_circuit parameter in run().

Bug Fixes

  • Removed additional decomposition of BlueprintCircuits in the JSON encoder. This was introduced as a bugfix, but has since been fixed. Still doing the decomposition led to possible problems if the decomposed circuit was not in the correct basis set of the backend anymore.

0.4.0

Bug Fixes

  • ECRGate and CZGate mappings have been added to the Target constructor to fix a tranpile bug.

0.3.0

New Features

  • Support has been added for applying scheduling and dynamical decoupling for circuits with new format control flow (including nested control-flow).

    from qiskit.circuit import ClassicalRegister, QuantumCircuit, QuantumRegister
    from qiskit.circuit.library import XGate
    from qiskit.transpiler.passmanager import PassManager
     
    from qiskit_ibm_provider.transpiler.passes.scheduling import DynamicCircuitInstructionDurations
    from qiskit_ibm_provider.transpiler.passes.scheduling import ALAPScheduleAnalysis
    from qiskit_ibm_provider.transpiler.passes.scheduling import PadDynamicalDecoupling
    from qiskit.providers.fake_provider import FakeJakarta
     
    backend = FakeJakarta()
     
    durations = DynamicCircuitInstructionDurations.from_backend(backend)
     
    qc = QuantumCircuit(2, 2)
    with qc.if_test((0, 1)):
        qc.x(0)
        qc.measure(0, 1)
        with qc.if_test((1, 1)):
          qc.measure(1, 1)
     
    dd_sequence = [XGate(), XGate()]
     
    pm = PassManager(
      [
          ALAPScheduleAnalysis(durations),
          PadDynamicalDecoupling(durations, dd_sequence),
      ]
    )
     
    qc_dd = pm.run(qc)

Upgrade Notes

  • Scheduling support for c_if has been removed. Please run the pass qiskit.transpiler.passes.ConvertConditionsToIfOps on your circuit before scheduling to convert all old format c_if statements to new format if_test control-flow that may be scheduled.

    from qiskit.circuit import ClassicalRegister, QuantumCircuit, QuantumRegister
    from qiskit.transpiler.passes import ConvertConditionsToIfOps
    from qiskit.transpiler.passmanager import PassManager
     
     
    from qiskit_ibm_provider.transpiler.passes.scheduling import DynamicCircuitInstructionDurations
    from qiskit_ibm_provider.transpiler.passes.scheduling import ALAPScheduleAnalysis
    from qiskit_ibm_provider.transpiler.passes.scheduling import PadDynamicalDecoupling
    from qiskit.providers.fake_provider import FakeJakarta
     
    backend = FakeJakarta()
     
    durations = DynamicCircuitInstructionDurations.from_backend(backend)
     
     
    qc = QuantumCircuit(1, 1)
    qc.x(0).c_if(0, 1)
     
    pm = PassManager(
      [
          ConvertConditionsToIfOps(),
          ALAPScheduleAnalysis(durations),
          PadDelay(),
      ]
    )
     
    qc_dd = pm.run(qc)
  • The IBMBackend now returns the ibm_dynamic_circuits translation stage as its plugin translation stage. This will automatically add custom transformations when calling the transpiler that are tuned for IBM quantum hardware.

  • If an instance is passed in when initializing IBMProvider, the instance will be used for filtering backends and jobs in backends() and jobs().

Bug Fixes

  • jobs() and retrieve_job() now only retrieve jobs that are run with the circuit-runner or qasm3-runner programs. Jobs run from qiskit-ibm-runtime will not be retrievable because their results are in an unsupported format.

0.2.1

Bug Fixes

  • Fixed a bug where users could not initialize IBMProvider if they were in a h/g/p without any backends.

0.2.0

New Features

  • The meth:~qiskit_ibm_provider.IBMProvider.instances was added to list all the available instances in a provider instance.

  • A new transpiler pass qiskit_ibm_provider.transpiler.passes.basis.ConvertIdToDelay was added which converts an :class:`qiskit.circuit.library.IGate to qiskit.circuit.Delay. This was added to the default transpiler plugin qiskit_ibm_provider.transpiler.plugin.IBMTranslationPlugin.

Upgrade Notes

  • Users can now retrieve jobs run from the previous provider, qiskit-ibmq-provider with retrieve_job(). There is also a new legacy parameter in jobs() for retrieving these jobs in bulk.

Bug Fixes

  • A bug was fixed in qiskit.transpiler.passes.scheduling.LAPScheduleAnalysis which was caused by an bad interaction between duration-less gates such as rz and barrier.

  • A bug was fixed where conditional qiskit.circuit.library.IGate were being converted to unconditional qiskit.circuit.Delay operations rather than conditional operations.

  • Fixed an issue where filtering by instance with jobs() was not working correctly.

  • Filtering backends with the parameter input_allowed in backends() has been removed because it is no longer in use and not supported by the runtime api.


0.1.0

Prelude

A transpiler module has been added. It will contain routines that are specific to IBM hardware backends and which consequently can not be placed directly within Qiskit Terra.

qiskit-ibm-provider is a new Python API client for accessing the quantum systems and simulators at IBM Quantum. This new package is built upon the work already done in qiskit.providers.ibmq.backend module in the qiskit-ibmq-provider package and replaces it going forward. The backend module in qiskit-ibmq-provider package is now deprecated. Please take a look at the migration guide here(opens in a new tab). qiskit-ibm-provider is not included as part of Qiskit meta package and thereby you have to install it separately using pip install qiskit-ibm-provider.

New Features

  • A scheduling analysis pass, ASAPScheduleAnalysis has been added for Qiskit dynamic circuit (OpenQASM 3) backends. This is capable of handling scheduling for deterministic regions of a quantum circuit and may combined with a padding pass such as PadDelay to pad schedulable sections of a circuit with delays.

    For an example see the scheduling module’s documentation.

  • A dynamical decoupling pass has been added for IBM Quantum dynamic circuit backends PadDynamicalDecoupling to pad schedulable sections of a circuit with dynamical decoupling sequences. It relies on having run the ASAPScheduleAnalysis or ALAPScheduleAnalysis analysis prior to the padding sequence.

    For an example see the scheduling module’s documentation.

  • Measurements no longer interrupt scheduling regions on dynamic circuit backends using the ASAPScheduleAnalysis

  • Measurements and resets now merged topologically when scheduling ASAPScheduleAnalysis

  • The module transpiler` has been added.

    Primarily, it will contain all specialized Qiskit routines for running applications on IBM’s next-generation quantum devices that support dynamic capabilities such as control-flow(feedforward) and classical compute.

  • Python 3.10 is now supported.

  • You can now use the dynamic_circuits parameter in qiskit_ibm_provider.ibm_backend_service.IBMBackendService.backends() to find backends that support dynamic circuits.

  • It is now possible to select the Qiskit runtime program ID to use for run() through the input argument program_id.

Upgrade Notes

  • The IBMQ global variable which was an instance of the IBMQFactory has been removed. IBMQFactory and AccountProvider classes have been removed and the functionality provided by these two classes have been combined and refactored in the new IBMProvider class. This class will provide a simplified interface as shown below and serve as the entrypoint going forward.

    save_account() - Save your account to disk for future use and optionally set a default instance (hub/group/project) to be used when loading your account.

    IBMProvider() - Load account using saved credentials.

    saved_accounts() - View the accounts saved to disk.

    delete_account() - Delete the saved account from disk.

    IBMProvider(token="<insert_api_token>") - Enable your account in the current session.

    active_account() - List the account currently active in the session.

    Use the examples below to migrate your existing code:

    • Load Account using Saved Credentials

      Before:

      from qiskit import IBMQ
      IBMQ.save_account(token='MY_API_TOKEN')
      provider = IBMQ.load_account() # loads saved account from disk

      After:

      from qiskit_ibm_provider import IBMProvider
      IBMProvider.save_account(token='MY_API_TOKEN')
      provider = IBMProvider() # loads saved account from disk
    • Load Account using Environment Variables

      Before:

      # export QE_TOKEN='MY_API_TOKEN' (bash command)
       
      from qiskit import IBMQ
      provider = IBMQ.load_account() # loads account from env variables

      After:

      # export QISKIT_IBM_TOKEN='MY_API_TOKEN' (bash command)
       
      from qiskit_ibm_provider import IBMProvider
      provider = IBMProvider() # loads account from env variables
    • Saved Account

      Before:

      from qiskit import IBMQ
      IBMQ.stored_account() # get saved account from qiskitrc file

      After:

      from qiskit_ibm_provider import IBMProvider
      IBMProvider.saved_accounts() # get saved accounts from qiskit-ibm.json file
    • Delete Account

      Before:

      from qiskit import IBMQ
      IBMQ.delete_account() # delete saved account from qiskitrc file

      After:

      from qiskit_ibm_provider import IBMProvider
      IBMProvider.delete_account() # delete saved account from saved credentials
    • Enable Account

      Before:

      from qiskit import IBMQ
      provider = IBMQ.enable_account(token='MY_API_TOKEN') # enable account for current session

      After:

      from qiskit_ibm_provider import IBMProvider
      provider = IBMProvider(token='MY_API_TOKEN') # enable account for current session
    • Active Account

      Before:

      from qiskit import IBMQ
      provider = IBMQ.load_account() # load saved account
      IBMQ.active_account() # check active account

      After:

      from qiskit_ibm_provider import IBMProvider
      provider = IBMProvider() # load saved account
      provider.active_account() # check active account
  • IBMBackend class now implements the qiskit.providers.BackendV2 interface and provides flatter access to the configuration of a backend, for example:

    # BackendV1:
    backend.configuration().n_qubits
     
    # BackendV2:
    backend.num_qubits

    Only breaking change when compared to BackendV1 is backend.name is now an attribute instead of a method.

    Refer to the IBMBackend class doc string for a list of all available attributes.

  • It is now optional to specify a hub/group/project upfront when connecting to the IBM Quantum account. The hub/group/project is selected in the following order.

    • hub/group/project if passed via instance parameter when calling get_backend()
    • hub/group/project if passed via instance parameter when initializing IBMProvider
    • the default set previously via save_account()
    • a premium hub/group/project in your account
    • open access hub/group/project
  • You can now use run() to submit a long list of circuits/schedules like you would for a single circuit/schedule. If the number of circuits/schedules exceeds the backend limit, run() will automatically divide the list into multiple sub-jobs and return a single IBMCompositeJob instance. You can use this IBMCompositeJob instance the same way you used IBMJob before. For example, you can use status() to get job status, result() to get job result, and cancel() to cancel the job. You can also use the job() and jobs() methods to retrieve a single IBMCompositeJob (by passing its job ID) or multiple jobs.

    IBMCompositeJob also has a rerun_failed() method that will re-run any failed or cancelled sub jobs and a report() method that returns a report on current sub-job statuses.

    This feature replaces the IBMQJobManager class in qiskit-ibmq-provider, which is the predecessor of qiskit-ibm-provider.

    Before:

    from qiskit.providers.ibmq.managed import IBMQJobManager
     
    job_manager = IBMQJobManager()
    job_set = job_manager.run(long_list_of_circuits, backend=backend)
    results = job_set.results()

    After:

    job = backend.run(long_list_of_circuits)
    result = job.result()
  • The dynamic circuits scheduling class (DynamicCircuitScheduleAnalysis) has been renamed to ASAPScheduleAnalysis.

  • run() has been updated so circuits with id instructions that are replaced with delay instructions do not mutate the original circuit.

  • Floats can now be used when setting the number of shots in run(). Now instead of having to type larger values like 100000 you can just do 1e5.

  • Scheduling has been updated to reflect dynamic circuit backends. Measurements no longer interrupt scheduling. ALAP scheduling has now been implemented in ALAPScheduleAnalysis and should be the standard scheduling policy that is used.

  • A custom instruction durations class has been added for dynamic circuit backends DynamicCircuitInstructionDurations.

    Currently it only patches the durations of measurement instructions.

    This should be used temporarily while we port legacy backends to dynamic circuit backends.

  • run() has been updated to give a warning if the backend selected is paused.

  • Methods jobs(), job(), job_ids(), and my_reservations() have been added to IBMProvider so they can all be directly accessible from the provider.

  • qiskit.providers.ibmq.IBMQBackend.retrieve_job() and qiskit.providers.ibmq.IBMQBackend.jobs() have been removed. The IBMBackendService methods job() and jobs() can be used instead.

  • Passing a QasmQobj and PulseQobj in the run() method has been removed. QuantumCircuit and Schedule should now be used instead.

  • The db_filter parameter has been removed from jobs() due to low adoption.

  • The deprecated qiskit.providers.ibmq.IBMQDeprecatedBackendService has now been removed. Backends can still be returned with backends() method.

  • Job share level is no longer supported due to low adoption and the corresponding interface has been removed. This means you can no longer pass share_level when creating a job. The qiskit.providers.ibmq.job.IBMQJob.share_level method to get a job’s share level has also been removed.

  • The deprecated timeout keyword in backends() method has now been removed.

  • When instantiating IBMProvider and the h/g/p is not specified, users can see the auto-selected h/g/p with active_account()

  • The default number of shots (represents the number of repetitions of each circuit, for sampling) in run(), has been increased from 1024 to 4000.

Deprecation Notes

  • The reservations, job_limit, and remaining_jobs_count methods have been removed from IBMBackend. The BackendJobLimit and BackendReservation classes have also been removed.

Bug Fixes

  • When dynamic=True, run() now submits the shots argument correctly.

  • A warning log message when loading an invalid backend has had the core message switched to a debug log message as certain backends were causing issues for all users upon loading the provider. Now a much less verbose message is emitted.

Was this page helpful?
Report a bug or request content on GitHub.