diff --git a/azure-quantum/azure/quantum/qiskit/backends/backend.py b/azure-quantum/azure/quantum/qiskit/backends/backend.py index 8856c099a..122dff1e5 100644 --- a/azure-quantum/azure/quantum/qiskit/backends/backend.py +++ b/azure-quantum/azure/quantum/qiskit/backends/backend.py @@ -21,14 +21,15 @@ from azure.quantum.job.session import SessionHost try: - from qiskit import QuantumCircuit, transpile + from qiskit import QuantumCircuit from qiskit.providers import BackendV1 as Backend from qiskit.providers import Options from qiskit.providers import Provider from qiskit.providers.models import BackendConfiguration from qiskit.qobj import QasmQobj, PulseQobj - from pyqir import Module - from qiskit_qir import to_qir_module + import pyqir as pyqir + from qsharp.interop.qiskit import QSharpBackend + from qsharp import TargetProfile except ImportError: raise ImportError( @@ -36,23 +37,37 @@ To install run: pip install azure-quantum[qiskit]" ) +# barrier is handled by an extra flag which will transpile +# them away if the backend doesn't support them. This has +# to be done as a special pass as the transpiler will not +# remove barriers by default. QIR_BASIS_GATES = [ - "x", - "y", - "z", + "measure", + "reset", + "ccx", + "cx", + "cy", + "cz", "rx", + "rxx", + "crx", "ry", + "ryy", + "cry", "rz", + "rzz", + "crz", "h", - "swap", - "cx", - "cz", - "reset", "s", "sdg", + "swap", "t", "tdg", - "measure", + "x", + "y", + "z", + "id", + "ch", ] @@ -391,98 +406,141 @@ def _prepare_job_metadata(self, circuits: List[QuantumCircuit]) -> Dict[str, str return {} def _generate_qir( - self, circuits, targetCapability, **to_qir_kwargs - ) -> Tuple[Module, List[str]]: + self, circuits: List[QuantumCircuit], target_profile: TargetProfile, **kwargs + ) -> pyqir.Module: + + if len(circuits) == 0: + raise ValueError("No QuantumCircuits provided") config = self.configuration() # Barriers aren't removed by transpilation and must be explicitly removed in the Qiskit to QIR translation. - emit_barrier_calls = "barrier" in config.basis_gates - return to_qir_module( - circuits, - targetCapability, - emit_barrier_calls=emit_barrier_calls, - **to_qir_kwargs, + supports_barrier = "barrier" in config.basis_gates + skip_transpilation = kwargs.pop("skip_transpilation", False) + + backend = QSharpBackend( + qiskit_pass_options={"supports_barrier": supports_barrier}, + target_profile=target_profile, + skip_transpilation=skip_transpilation, + **kwargs, ) - def _get_qir_str(self, circuits, targetCapability, **to_qir_kwargs) -> str: - module, _ = self._generate_qir(circuits, targetCapability, **to_qir_kwargs) + name = "batch" + if len(circuits) == 1: + name = circuits[0].name + + if isinstance(circuits, list): + for value in circuits: + if not isinstance(value, QuantumCircuit): + raise ValueError("Input must be List[QuantumCircuit]") + else: + raise ValueError("Input must be List[QuantumCircuit]") + + context = pyqir.Context() + llvm_module = pyqir.qir_module(context, name) + for circuit in circuits: + qir_str = backend.qir(circuit) + module = pyqir.Module.from_ir(context, qir_str) + entry_point = next(filter(pyqir.is_entry_point, module.functions)) + entry_point.name = circuit.name + llvm_module.link(module) + err = llvm_module.verify() + if err is not None: + raise Exception(err) + + return llvm_module + + def _get_qir_str( + self, + circuits: List[QuantumCircuit], + target_profile: TargetProfile, + **to_qir_kwargs, + ) -> str: + module = self._generate_qir(circuits, target_profile, **to_qir_kwargs) return str(module) def _translate_input( - self, circuits: List[QuantumCircuit], input_params: Dict[str, Any] + self, circuits: Union[QuantumCircuit, List[QuantumCircuit]], input_params: Dict[str, Any] ) -> bytes: """Translates the input values to the QIR expected by the Backend.""" logger.info(f"Using QIR as the job's payload format.") - config = self.configuration() + if not (isinstance(circuits, list)): + circuits = [circuits] - # Override QIR translation parameters - # We will record the output by default, but allow the backend to override this, and allow the user to override the backend. - to_qir_kwargs = input_params.pop( - "to_qir_kwargs", config.azure.get("to_qir_kwargs", {"record_output": True}) - ) - targetCapability = input_params.pop( - "targetCapability", - self.options.get("targetCapability", "AdaptiveExecution"), - ) + target_profile = self._get_target_profile(input_params) if logger.isEnabledFor(logging.DEBUG): - qir = self._get_qir_str(circuits, targetCapability, **to_qir_kwargs) + qir = self._get_qir_str(circuits, target_profile, skip_transpilation=True) logger.debug(f"QIR:\n{qir}") # We'll transpile automatically to the supported gates in QIR unless explicitly skipped. - if not input_params.pop("skipTranspile", False): - # Set of gates supported by QIR targets. - circuits = transpile( - circuits, basis_gates=config.basis_gates, optimization_level=0 - ) + skip_transpilation = input_params.pop("skipTranspile", False) + + module = self._generate_qir( + circuits, target_profile, skip_transpilation=skip_transpilation + ) + + def get_func_name(func: pyqir.Function) -> str: + return func.name + + entry_points = list( + map(get_func_name, filter(pyqir.is_entry_point, module.functions)) + ) + + if not skip_transpilation: # We'll only log the QIR again if we performed a transpilation. if logger.isEnabledFor(logging.DEBUG): - qir = self._get_qir_str(circuits, targetCapability, **to_qir_kwargs) + qir = str(module) logger.debug(f"QIR (Post-transpilation):\n{qir}") - (module, entry_points) = self._generate_qir( - circuits, targetCapability, **to_qir_kwargs - ) - - if not "items" in input_params: + if "items" not in input_params: arguments = input_params.pop("arguments", []) input_params["items"] = [ {"entryPoint": name, "arguments": arguments} for name in entry_points ] - return module.bitcode + return str(module).encode("utf-8") - def _estimate_cost_qir(self, circuits, shots, options={}): + def _estimate_cost_qir( + self, circuits: Union[QuantumCircuit, List[QuantumCircuit]], shots, options={} + ): """Estimate the cost for the given circuit.""" - config = self.configuration() input_params = self._get_input_params(options, shots=shots) if not (isinstance(circuits, list)): circuits = [circuits] - - to_qir_kwargs = input_params.pop( - "to_qir_kwargs", config.azure.get("to_qir_kwargs", {"record_output": True}) - ) - targetCapability = input_params.pop( - "targetCapability", - self.options.get("targetCapability", "AdaptiveExecution"), - ) - - if not input_params.pop("skipTranspile", False): - # Set of gates supported by QIR targets. - circuits = transpile( - circuits, basis_gates=config.basis_gates, optimization_level=0 - ) - - (module, _) = self._generate_qir( - circuits, targetCapability, **to_qir_kwargs + skip_transpilation = input_params.pop("skipTranspile", False) + target_profile = self._get_target_profile(input_params) + module = self._generate_qir( + circuits, target_profile, skip_transpilation=skip_transpilation ) - + workspace = self.provider().get_workspace() target = workspace.get_targets(self.name()) return target.estimate_cost(module, shots=shots) + def _get_target_profile(self, input_params) -> TargetProfile: + # Default to Adaptive_RI if not specified on the backend + # this is really just a safeguard in case the backend doesn't have a default + default_profile = self.options.get("target_profile", TargetProfile.Adaptive_RI) + + # If the user is using the old targetCapability parameter, we'll warn them + # and use that value for now. This will be removed in the future. + if "targetCapability" in input_params: + warnings.warn( + "The 'targetCapability' parameter is deprecated and will be ignored in the future. " + "Please, use 'target_profile' parameter instead.", + category=DeprecationWarning, + ) + cap = input_params.pop("targetCapability") + if cap == "AdaptiveExecution": + default_profile = TargetProfile.Adaptive_RI + else: + default_profile = TargetProfile.Base + # If the user specifies a target profile, use that. + # Otherwise, use the profile we got from the backend/targetCapability. + return input_params.pop("target_profile", default_profile) + class AzureBackend(AzureBackendBase): """Base class for interfacing with a backend in Azure Quantum""" diff --git a/azure-quantum/azure/quantum/qiskit/backends/ionq.py b/azure-quantum/azure/quantum/qiskit/backends/ionq.py index cc88384c3..dbbe7aa69 100644 --- a/azure-quantum/azure/quantum/qiskit/backends/ionq.py +++ b/azure-quantum/azure/quantum/qiskit/backends/ionq.py @@ -7,7 +7,7 @@ from azure.quantum.qiskit.job import AzureQuantumJob from azure.quantum.target.ionq import IonQ from abc import abstractmethod - +from qsharp import TargetProfile from qiskit import QuantumCircuit from .backend import ( @@ -65,7 +65,7 @@ def _default_options(cls) -> Options: **{ cls._SHOTS_PARAM_NAME: _DEFAULT_SHOTS_COUNT, }, - targetCapability="BasicExecution", + target_profile=TargetProfile.Base, ) def _azure_config(self) -> Dict[str, str]: diff --git a/azure-quantum/azure/quantum/qiskit/backends/microsoft.py b/azure-quantum/azure/quantum/qiskit/backends/microsoft.py index c8b4b45bf..7daaae415 100644 --- a/azure-quantum/azure/quantum/qiskit/backends/microsoft.py +++ b/azure-quantum/azure/quantum/qiskit/backends/microsoft.py @@ -3,36 +3,17 @@ # Licensed under the MIT License. ## -from typing import TYPE_CHECKING, Any, Dict, List +from typing import TYPE_CHECKING, Any, Dict, List, Union from azure.quantum.version import __version__ from qiskit import QuantumCircuit from abc import abstractmethod -from .backend import AzureQirBackend +from .backend import AzureQirBackend, QIR_BASIS_GATES from qiskit.providers.models import BackendConfiguration from qiskit.providers import Options, Provider - -QIR_BASIS_GATES = [ - "measure", - "m", - "ccx", - "cx", - "cz", - "h", - "reset", - "rx", - "ry", - "rz", - "s", - "sdg", - "swap", - "t", - "tdg", - "x", - "y", - "z", - "id", -] +from qsharp import TargetProfile +from qsharp.interop.qiskit import ResourceEstimatorBackend +import pyqir as pyqir if TYPE_CHECKING: from azure.quantum.qiskit import AzureQuantumProvider @@ -55,7 +36,7 @@ def __init__( @classmethod def _default_options(cls): - return Options(targetCapability="AdaptiveExecution") + return Options(target_profile=TargetProfile.Adaptive_RI) def _azure_config(self) -> Dict[str, str]: config = super()._azure_config() @@ -63,11 +44,65 @@ def _azure_config(self) -> Dict[str, str]: { "provider_id": "microsoft-qc", "output_data_format": "microsoft.resource-estimates.v1", - "to_qir_kwargs": {"record_output": False}, } ) return config + def _translate_input( + self, + circuits: Union[QuantumCircuit, List[QuantumCircuit]], + input_params: Dict[str, Any], + ) -> bytes: + """Translates the input values to the QIR expected by the Backend.""" + # All the logic is in the base class, but we need to override + # this method to ensure that the bitcode QIR format is used for RE. + + # normal translation is to QIR text format in utf-8 encoded bytes + ir_byte_str = super()._translate_input(circuits, input_params) + # decode the utf-8 encoded bytes to a string + ir_str = ir_byte_str.decode('utf-8') + # convert the QIR text format to QIR bitcode format + module = pyqir.Module.from_ir(pyqir.Context(), ir_str) + return module.bitcode + + def _generate_qir( + self, circuits: List[QuantumCircuit], target_profile: TargetProfile, **kwargs + ) -> pyqir.Module: + if len(circuits) == 0: + raise ValueError("No QuantumCircuits provided") + + name = "circuits" + if isinstance(circuits, QuantumCircuit): + name = circuits.name + circuits = [circuits] + elif isinstance(circuits, list): + for value in circuits: + if not isinstance(value, QuantumCircuit): + raise ValueError( + "Input must be Union[QuantumCircuit, List[QuantumCircuit]]" + ) + else: + raise ValueError( + "Input must be Union[QuantumCircuit, List[QuantumCircuit]]" + ) + + skip_transpilation = kwargs.pop("skip_transpilation", False) + backend = ResourceEstimatorBackend( + skip_transpilation=skip_transpilation, **kwargs + ) + context = pyqir.Context() + llvm_module = pyqir.qir_module(context, name) + for circuit in circuits: + qir_str = backend.qir(circuit, target_profile=target_profile) + module = pyqir.Module.from_ir(context, qir_str) + llvm_module.link(module) + + err = llvm_module.verify() + if err is not None: + raise Exception(err) + + return llvm_module + class MicrosoftResourceEstimationBackend(MicrosoftBackend): """Backend class for interfacing with the resource estimator target""" @@ -77,7 +112,7 @@ class MicrosoftResourceEstimationBackend(MicrosoftBackend): @classmethod def _default_options(cls): return Options( - targetCapability="AdaptiveExecution", + target_profile=TargetProfile.Adaptive_RI, errorBudget=1e-3, qubitParams={"name": "qubit_gate_ns_e3"}, qecScheme={"name": "surface_code"} diff --git a/azure-quantum/azure/quantum/qiskit/backends/qci.py b/azure-quantum/azure/quantum/qiskit/backends/qci.py index 895c56c92..076f2f747 100644 --- a/azure-quantum/azure/quantum/qiskit/backends/qci.py +++ b/azure-quantum/azure/quantum/qiskit/backends/qci.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. ## -from typing import TYPE_CHECKING, Dict +from typing import TYPE_CHECKING, Dict, List from azure.quantum.version import __version__ from azure.quantum.qiskit.job import AzureQuantumJob from abc import abstractmethod @@ -14,6 +14,8 @@ from qiskit.providers.models import BackendConfiguration from qiskit.providers import Options, Provider +from qsharp import TargetProfile + if TYPE_CHECKING: from azure.quantum.qiskit import AzureQuantumProvider @@ -43,7 +45,7 @@ def _default_options(cls) -> Options: **{ cls._SHOTS_PARAM_NAME: _DEFAULT_SHOTS_COUNT, }, - targetCapability="AdaptiveExecution", + target_profile=TargetProfile.Adaptive_RI, ) def _azure_config(self) -> Dict[str, str]: @@ -54,9 +56,12 @@ def _azure_config(self) -> Dict[str, str]: } ) return config - + + def _basis_gates(self) -> List[str]: + return super()._basis_gates() + ["barrier"] + def run( - self, + self, run_input=None, shots: int = None, **options, diff --git a/azure-quantum/azure/quantum/qiskit/backends/quantinuum.py b/azure-quantum/azure/quantum/qiskit/backends/quantinuum.py index dbb1a3537..986d2995b 100644 --- a/azure-quantum/azure/quantum/qiskit/backends/quantinuum.py +++ b/azure-quantum/azure/quantum/qiskit/backends/quantinuum.py @@ -15,7 +15,7 @@ from qiskit.providers import Options from qiskit.providers import Provider from qiskit.qasm2 import dumps - +from qsharp import TargetProfile import logging logger = logging.getLogger(__name__) @@ -50,23 +50,6 @@ "reset", ] -QUANTINUUM_QIR_BASIS_GATES = [ - "x", - "y", - "z", - "rx", - "ry", - "rz", - "h", - "cx", - "cz", - "reset", - "s", - "sdg", - "t", - "tdg", - "measure", -] QUANTINUUM_PROVIDER_ID = "quantinuum" QUANTINUUM_PROVIDER_NAME = "Quantinuum" @@ -101,7 +84,7 @@ def _default_options(cls) -> Options: **{ cls._SHOTS_PARAM_NAME: _DEFAULT_SHOTS_COUNT }, - targetCapability="BasicExecution", + target_profile=TargetProfile.Adaptive_RI, ) def _azure_config(self) -> Dict[str, str]: @@ -112,9 +95,6 @@ def _azure_config(self) -> Dict[str, str]: } ) return config - - def _basis_gates(self) -> List[str]: - return QUANTINUUM_QIR_BASIS_GATES def _get_n_qubits(self, name): return _get_n_qubits(name) diff --git a/azure-quantum/azure/quantum/qiskit/backends/rigetti.py b/azure-quantum/azure/quantum/qiskit/backends/rigetti.py index a0e5886cf..47656bb5d 100644 --- a/azure-quantum/azure/quantum/qiskit/backends/rigetti.py +++ b/azure-quantum/azure/quantum/qiskit/backends/rigetti.py @@ -11,6 +11,7 @@ from qiskit.providers.models import BackendConfiguration from qiskit.providers import Options, Provider +from qsharp import TargetProfile if TYPE_CHECKING: from azure.quantum.qiskit import AzureQuantumProvider @@ -40,7 +41,7 @@ def _default_options(cls): other_options = { cls._SHOTS_PARAM_NAME: _DEFAULT_SHOTS_COUNT, } - return Options(targetCapability="BasicExecution", **other_options) + return Options(target_profile=TargetProfile.Base, **other_options) def _azure_config(self) -> Dict[str, str]: config = super()._azure_config() diff --git a/azure-quantum/azure/quantum/qiskit/job.py b/azure-quantum/azure/quantum/qiskit/job.py index 1d1202004..8953b62df 100644 --- a/azure-quantum/azure/quantum/qiskit/job.py +++ b/azure-quantum/azure/quantum/qiskit/job.py @@ -212,15 +212,19 @@ def _format_ionq_results(self, sampler_seed=None): @staticmethod def _qir_to_qiskit_bitstring(obj): - """Convert the data structure from Azure into the "schema" used by Qiskit """ + """Convert the data structure from Azure into the "schema" used by Qiskit""" if isinstance(obj, str) and not re.match(r"[\d\s]+$", obj): obj = ast.literal_eval(obj) if isinstance(obj, tuple): # the outermost implied container is a tuple, and each item is - # associated with a classical register. Azure and Qiskit order the - # registers in opposite directions, so reverse here to match. - return " ".join([AzureQuantumJob._qir_to_qiskit_bitstring(term) for term in reversed(obj)]) + # associated with a classical register. + return " ".join( + [ + AzureQuantumJob._qir_to_qiskit_bitstring(term) + for term in obj + ] + ) elif isinstance(obj, list): # a list is for an individual classical register return "".join([str(bit) for bit in obj]) diff --git a/azure-quantum/azure/quantum/target/ionq.py b/azure-quantum/azure/quantum/target/ionq.py index a0e1dd35c..054b6b423 100644 --- a/azure-quantum/azure/quantum/target/ionq.py +++ b/azure-quantum/azure/quantum/target/ionq.py @@ -59,12 +59,16 @@ def __init__( name: str = "ionq.simulator", input_data_format: str = "ionq.circuit.v1", output_data_format: str = "ionq.quantum-results.v1", - capability: str = "BasicExecution", + capability: str = "", provider_id: str = "IonQ", content_type: str = "application/json", encoding: str = "", - **kwargs + target_profile: Union[str, "TargetProfile"] = "Base", + **kwargs, ): + if capability: + msg = "The 'capability' parameter is not used for the Quantinuum target." + warn(msg, DeprecationWarning) super().__init__( workspace=workspace, name=name, @@ -74,7 +78,8 @@ def __init__( provider_id=provider_id, content_type=content_type, encoding=encoding, - **kwargs + target_profile=target_profile, + **kwargs, ) def submit( diff --git a/azure-quantum/azure/quantum/target/microsoft/target.py b/azure-quantum/azure/quantum/target/microsoft/target.py index 6438e3e7f..8b11d648d 100644 --- a/azure-quantum/azure/quantum/target/microsoft/target.py +++ b/azure-quantum/azure/quantum/target/microsoft/target.py @@ -392,6 +392,7 @@ def __init__( output_data_format="microsoft.resource-estimates.v1", provider_id="microsoft-qc", content_type=ContentType.json, + target_profile="Adaptive_RI", **kwargs ) @@ -422,14 +423,21 @@ def submit( warnings.warn("The 'shots' parameter is ignored in resource estimation job.") try: - from qiskit import QuantumCircuit, transpile - from qiskit_qir import to_qir_module - from qiskit_qir.visitor import SUPPORTED_INSTRUCTIONS + from qiskit import QuantumCircuit + from qsharp import TargetProfile + from qsharp.interop.qiskit import ResourceEstimatorBackend + from pyqir import Context, Module + if isinstance(input_data, QuantumCircuit): - input_data = transpile(input_data, - basis_gates=SUPPORTED_INSTRUCTIONS, - optimization_level=0) - (module, _) = to_qir_module(input_data, record_output=False) + backend = ResourceEstimatorBackend() + target_profile = TargetProfile.from_str(self.target_profile) + qir_str = backend.qir(input_data, target_profile=target_profile) + context = Context() + module = Module.from_ir(context, qir_str) + + err = module.verify() + if err is not None: + raise Exception(err) input_data = module.bitcode finally: return super().submit( diff --git a/azure-quantum/azure/quantum/target/pasqal/target.py b/azure-quantum/azure/quantum/target/pasqal/target.py index a38d710bb..102686122 100644 --- a/azure-quantum/azure/quantum/target/pasqal/target.py +++ b/azure-quantum/azure/quantum/target/pasqal/target.py @@ -80,9 +80,10 @@ def __init__( name: Union[PasqalTarget, str] = PasqalTarget.SIM_EMU_TN, input_data_format: str = "pasqal.pulser.v1", output_data_format: str = "pasqal.pulser-results.v1", - capability: str = "BasicExecution", + capability: str = "", provider_id: str = "pasqal", encoding: str = "", + target_profile: Union[str, "TargetProfile"] = "Base", **kwargs, ): """ @@ -102,7 +103,12 @@ def __init__( :type provider_id: str :param encoding: "Content-Encoding" attribute value to set on input blob (ex. "gzip") :type encoding: str + :param target_profile: Target QIR profile. + :type target_profile: str | TargetProfile """ + if capability: + msg = "The 'capability' parameter is not used for the Quantinuum target." + warn(msg, DeprecationWarning) super().__init__( workspace=workspace, diff --git a/azure-quantum/azure/quantum/target/quantinuum.py b/azure-quantum/azure/quantum/target/quantinuum.py index bd7c34a20..021c08006 100644 --- a/azure-quantum/azure/quantum/target/quantinuum.py +++ b/azure-quantum/azure/quantum/target/quantinuum.py @@ -2,7 +2,7 @@ # Copyright (c) Microsoft Corporation. # Licensed under the MIT License. ## -from typing import Any, Dict +from typing import Any, Dict, Union from warnings import warn from azure.quantum.target.target import ( @@ -12,7 +12,6 @@ from azure.quantum.job.job import Job from azure.quantum.workspace import Workspace from azure.quantum._client.models import CostEstimate, UsageEvent -from typing import Union class Quantinuum(Target): @@ -35,12 +34,16 @@ def __init__( name: str = "quantinuum.sim.h1-1sc", input_data_format: str = "honeywell.openqasm.v1", output_data_format: str = "honeywell.quantum-results.v1", - capability: str = "AdaptiveExecution", + capability: str = "", provider_id: str = "quantinuum", content_type: str = "application/qasm", encoding: str = "", + target_profile: Union[str, "TargetProfile"] = "Adaptive_RI", **kwargs ): + if capability: + msg = "The 'capability' parameter is not used for the Quantinuum target." + warn(msg, DeprecationWarning) super().__init__( workspace=workspace, name=name, @@ -50,6 +53,7 @@ def __init__( provider_id=provider_id, content_type=content_type, encoding=encoding, + target_profile=target_profile, **kwargs ) diff --git a/azure-quantum/azure/quantum/target/rigetti/target.py b/azure-quantum/azure/quantum/target/rigetti/target.py index 6e7fa13f0..b4074e7ea 100644 --- a/azure-quantum/azure/quantum/target/rigetti/target.py +++ b/azure-quantum/azure/quantum/target/rigetti/target.py @@ -14,6 +14,7 @@ from dataclasses import dataclass from enum import Enum from typing import Union, Any, Dict, List, Optional +from warnings import warn from ..target import Target from ... import Job @@ -137,9 +138,10 @@ def __init__( name: Union[RigettiTarget, str] = RigettiTarget.QVM, input_data_format: str = "rigetti.quil.v1", output_data_format: str = "rigetti.quil-results.v1", - capability: str = "BasicExecution", + capability: str = "", provider_id: str = "rigetti", encoding: str = "", + target_profile: Union[str, "TargetProfile"] = "Base", **kwargs, ): """ @@ -159,8 +161,12 @@ def __init__( :type provider_id: str :param encoding: "Content-Encoding" attribute value to set on input blob (ex. "gzip") :type encoding: str + :param target_profile: Target QIR profile. + :type target_profile: str | TargetProfile """ - + if capability: + msg = "The 'capability' parameter is not used for the Quantinuum target." + warn(msg, DeprecationWarning) super().__init__( workspace=workspace, name=name, @@ -170,6 +176,7 @@ def __init__( provider_id=provider_id, content_type="text/plain", encoding=encoding, + target_profile=target_profile, **kwargs, ) diff --git a/azure-quantum/azure/quantum/target/target.py b/azure-quantum/azure/quantum/target/target.py index fb012b91f..03dfd3e1a 100644 --- a/azure-quantum/azure/quantum/target/target.py +++ b/azure-quantum/azure/quantum/target/target.py @@ -68,7 +68,8 @@ def __init__( content_type: ContentType = ContentType.json, encoding: str = "", average_queue_time: Union[float, None] = None, - current_availability: str = "" + current_availability: str = "", + target_profile: Union[str, "TargetProfile"] = "Base", ): """ Initializes a new target. @@ -81,7 +82,7 @@ def __init__( :type input_data_format: str :param output_data_format: Format of output data (ex. "microsoft.resource-estimates.v1") :type output_data_format: str - :param capability: QIR capability + :param capability: QIR capability. Deprecated, use `target_profile` :type capability: str :param provider_id: Id of provider (ex. "microsoft-qc") :type provider_id: str @@ -93,6 +94,8 @@ def __init__( :type average_queue_time: float :param current_availability: Set current availability (for internal use) :type current_availability: str + :param target_profile: Target QIR profile. + :type target_profile: str | TargetProfile """ if not provider_id and "." in name: provider_id = name.split(".")[0] @@ -106,6 +109,7 @@ def __init__( self.encoding = encoding self._average_queue_time = average_queue_time self._current_availability = current_availability + self.target_profile = target_profile def __repr__(self): return f"=0.5,<0.6 -qiskit-qir>=0.5,<0.6 -qiskit>=1.0,<2.0 +qsharp[qiskit]>=1.9.0,<2.0 +pyqir>=0.10.6,<0.11 Markdown>=3.4.1,<4.0 python-markdown-math>=0.8.0,<1.0 \ No newline at end of file diff --git a/azure-quantum/tests/unit/recordings/test_qiskit_endianness_submit_to_qci.yaml b/azure-quantum/tests/unit/recordings/test_qiskit_endianness_submit_to_rigetti.yaml similarity index 55% rename from azure-quantum/tests/unit/recordings/test_qiskit_endianness_submit_to_qci.yaml rename to azure-quantum/tests/unit/recordings/test_qiskit_endianness_submit_to_rigetti.yaml index 3753e3f00..793696fde 100644 --- a/azure-quantum/tests/unit/recordings/test_qiskit_endianness_submit_to_qci.yaml +++ b/azure-quantum/tests/unit/recordings/test_qiskit_endianness_submit_to_rigetti.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-identity/1.17.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - azsdk-python-identity/1.18.0 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration response: @@ -55,7 +55,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-identity/1.17.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - azsdk-python-identity/1.18.0 Python/3.9.20 (Windows-10-10.0.22631-SP0) x-client-current-telemetry: - 4|730,2| x-client-os: @@ -63,13 +63,13 @@ interactions: x-client-sku: - MSAL.Python x-client-ver: - - 1.30.0 + - 1.31.0 method: POST uri: https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token response: body: - string: '{"token_type": "Bearer", "expires_in": 1756430743, "ext_expires_in": - 1756430743, "refresh_in": 31536000, "access_token": "PLACEHOLDER"}' + string: '{"token_type": "Bearer", "expires_in": 1759273587, "ext_expires_in": + 1759273587, "refresh_in": 31536000, "access_token": "PLACEHOLDER"}' headers: content-length: - '135' @@ -88,61 +88,48 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/providerStatus?api-version=2022-09-12-preview&test-sequence-id=1 response: body: - string: '{"value": [{"id": "microsoft-elements", "currentAvailability": "Available", - "targets": [{"id": "microsoft.dft", "currentAvailability": "Available", "averageQueueTime": - 0, "statusPage": null}]}, {"id": "ionq", "currentAvailability": "Degraded", - "targets": [{"id": "ionq.qpu", "currentAvailability": "Unavailable", "averageQueueTime": - 0, "statusPage": null}, {"id": "ionq.qpu.aria-1", "currentAvailability": "Available", - "averageQueueTime": 8363691, "statusPage": "https://status.ionq.co"}, {"id": - "ionq.qpu.aria-2", "currentAvailability": "Available", "averageQueueTime": - 2656571, "statusPage": "https://status.ionq.co"}, {"id": "ionq.simulator", - "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": "https://status.ionq.co"}]}, + string: '{"value": [{"id": "ionq", "currentAvailability": "Degraded", "targets": + [{"id": "ionq.qpu.aria-1", "currentAvailability": "Unavailable", "averageQueueTime": + 385766, "statusPage": "https://status.ionq.co"}, {"id": "ionq.qpu.aria-2", + "currentAvailability": "Unavailable", "averageQueueTime": 5034763, "statusPage": + "https://status.ionq.co"}, {"id": "ionq.simulator", "currentAvailability": + "Available", "averageQueueTime": 5741, "statusPage": "https://status.ionq.co"}]}, {"id": "microsoft-qc", "currentAvailability": "Available", "targets": [{"id": "microsoft.estimator", "currentAvailability": "Available", "averageQueueTime": 0, "statusPage": null}]}, {"id": "pasqal", "currentAvailability": "Degraded", "targets": [{"id": "pasqal.sim.emu-tn", "currentAvailability": "Available", - "averageQueueTime": 243, "statusPage": "https://pasqal.com"}, {"id": "pasqal.qpu.fresnel", + "averageQueueTime": 273, "statusPage": "https://pasqal.com"}, {"id": "pasqal.qpu.fresnel", "currentAvailability": "Degraded", "averageQueueTime": 0, "statusPage": "https://pasqal.com"}]}, - {"id": "quantinuum", "currentAvailability": "Available", "targets": [{"id": - "quantinuum.qpu.h1-1", "currentAvailability": "Available", "averageQueueTime": - 185442, "statusPage": "https://www.quantinuum.com/hardware/h1"}, {"id": "quantinuum.sim.h1-1sc", - "currentAvailability": "Available", "averageQueueTime": 0, "statusPage": "https://www.quantinuum.com/hardware/h1"}, + {"id": "quantinuum", "currentAvailability": "Degraded", "targets": [{"id": + "quantinuum.qpu.h1-1", "currentAvailability": "Degraded", "averageQueueTime": + 0, "statusPage": "https://www.quantinuum.com/hardware/h1"}, {"id": "quantinuum.sim.h1-1sc", + "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": "https://www.quantinuum.com/hardware/h1"}, {"id": "quantinuum.sim.h1-1e", "currentAvailability": "Available", "averageQueueTime": - 8, "statusPage": "https://www.quantinuum.com/hardware/h1"}, {"id": "quantinuum.qpu.h2-1", - "currentAvailability": "Available", "averageQueueTime": 115896, "statusPage": - "https://www.quantinuum.com/hardware/h2"}, {"id": "quantinuum.sim.h2-1sc", - "currentAvailability": "Available", "averageQueueTime": 2, "statusPage": "https://www.quantinuum.com/hardware/h2"}, - {"id": "quantinuum.sim.h2-1e", "currentAvailability": "Available", "averageQueueTime": - 0, "statusPage": "https://www.quantinuum.com/hardware/h2"}, {"id": "quantinuum.sim.h1-1sc-preview", - "currentAvailability": "Available", "averageQueueTime": 0, "statusPage": "https://www.quantinuum.com/hardware/h1"}, - {"id": "quantinuum.sim.h1-1e-preview", "currentAvailability": "Available", - "averageQueueTime": 8, "statusPage": "https://www.quantinuum.com/hardware/h1"}, - {"id": "quantinuum.sim.h1-2e-preview", "currentAvailability": "Available", - "averageQueueTime": 0, "statusPage": "https://www.quantinuum.com/hardware/h1"}, - {"id": "quantinuum.qpu.h1-1-preview", "currentAvailability": "Available", - "averageQueueTime": 185442, "statusPage": "https://www.quantinuum.com/hardware/h1"}]}, - {"id": "rigetti", "currentAvailability": "Available", "targets": [{"id": "rigetti.sim.qvm", + 5, "statusPage": "https://www.quantinuum.com/hardware/h1"}]}, {"id": "rigetti", + "currentAvailability": "Available", "targets": [{"id": "rigetti.sim.qvm", "currentAvailability": "Available", "averageQueueTime": 5, "statusPage": "https://rigetti.statuspage.io/"}, {"id": "rigetti.qpu.ankaa-2", "currentAvailability": "Available", "averageQueueTime": 5, "statusPage": "https://rigetti.statuspage.io/"}]}, {"id": "qci", "currentAvailability": - "Degraded", "targets": [{"id": "qci.simulator", "currentAvailability": "Available", - "averageQueueTime": 1, "statusPage": "https://quantumcircuits.com"}, {"id": + "Degraded", "targets": [{"id": "qci.simulator", "currentAvailability": "Unavailable", + "averageQueueTime": 0, "statusPage": "https://quantumcircuits.com"}, {"id": "qci.machine1", "currentAvailability": "Unavailable", "averageQueueTime": - 1, "statusPage": "https://quantumcircuits.com"}, {"id": "qci.simulator.noisy", - "currentAvailability": "Available", "averageQueueTime": 0, "statusPage": "https://quantumcircuits.com"}]}, - {"id": "Microsoft.Test", "currentAvailability": "Available", "targets": [{"id": - "echo-rigetti", "currentAvailability": "Available", "averageQueueTime": 1, - "statusPage": ""}, {"id": "echo-quantinuum", "currentAvailability": "Available", - "averageQueueTime": 1, "statusPage": ""}, {"id": "echo-qci", "currentAvailability": - "Available", "averageQueueTime": 1, "statusPage": ""}, {"id": "echo-ionq", + 0, "statusPage": "https://quantumcircuits.com"}, {"id": "qci.simulator.noisy", + "currentAvailability": "Unavailable", "averageQueueTime": 0, "statusPage": + "https://quantumcircuits.com"}]}, {"id": "Microsoft.ChemistryHpc", "currentAvailability": + "Degraded", "targets": [{"id": "microsoft.hpc", "currentAvailability": "Unavailable", + "averageQueueTime": 0, "statusPage": null}]}, {"id": "Microsoft.Test", "currentAvailability": + "Available", "targets": [{"id": "echo-rigetti", "currentAvailability": "Available", + "averageQueueTime": 1, "statusPage": ""}, {"id": "echo-quantinuum", "currentAvailability": + "Available", "averageQueueTime": 1, "statusPage": ""}, {"id": "echo-qci", "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": ""}, - {"id": "echo-aquarius", "currentAvailability": "Available", "averageQueueTime": - 1, "statusPage": ""}, {"id": "sparse-sim-rigetti", "currentAvailability": + {"id": "echo-ionq", "currentAvailability": "Available", "averageQueueTime": + 1, "statusPage": ""}, {"id": "echo-aquarius", "currentAvailability": "Available", + "averageQueueTime": 1, "statusPage": ""}, {"id": "sparse-sim-rigetti", "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": ""}, {"id": "sparse-sim-quantinuum", "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": ""}, {"id": "sparse-sim-qci", "currentAvailability": "Available", "averageQueueTime": @@ -153,7 +140,7 @@ interactions: connection: - keep-alive content-length: - - '4751' + - '3587' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -175,7 +162,7 @@ interactions: Content-Type: - application/json User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: POST uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/storage/sasUri?api-version=2022-09-12-preview&test-sequence-id=1 response: @@ -203,9 +190,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-storage-blob/12.20.0 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - azsdk-python-storage-blob/12.20.0 Python/3.9.20 (Windows-10-10.0.22631-SP0) x-ms-date: - - Thu, 29 Aug 2024 01:25:43 GMT + - Mon, 30 Sep 2024 23:06:29 GMT x-ms-version: - '2024-05-04' method: GET @@ -213,7 +200,7 @@ interactions: response: body: string: "\uFEFFContainerNotFoundThe - specified container does not exist.\nRequestId:82cded93-701e-0024-22b2-f9b5ca000000\nTime:2024-08-29T01:25:44.7886136Z" + specified container does not exist.\nRequestId:422acb1e-301e-0057-778d-13ed59000000\nTime:2024-09-30T23:06:29.4097791Z" headers: content-length: - '223' @@ -236,9 +223,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-blob/12.20.0 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - azsdk-python-storage-blob/12.20.0 Python/3.9.20 (Windows-10-10.0.22631-SP0) x-ms-date: - - Thu, 29 Aug 2024 01:25:44 GMT + - Mon, 30 Sep 2024 23:06:29 GMT x-ms-version: - '2024-05-04' method: PUT @@ -264,9 +251,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-storage-blob/12.20.0 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - azsdk-python-storage-blob/12.20.0 Python/3.9.20 (Windows-10-10.0.22631-SP0) x-ms-date: - - Thu, 29 Aug 2024 01:25:44 GMT + - Mon, 30 Sep 2024 23:06:29 GMT x-ms-version: - '2024-05-04' method: GET @@ -287,29 +274,50 @@ interactions: code: 200 message: OK - request: - body: 'b''BC\xc0\xde5\x14\x00\x00\x05\x00\x00\x00b\x0c0$JY\xbef\x8d\xfb\xb4\xaf\x0bQ\x80L\x01\x00\x00\x00!\x0c\x00\x00\xc4\x01\x00\x00\x0b\x02!\x00\x02\x00\x00\x00\x16\x00\x00\x00\x07\x81#\x91A\xc8\x04I\x06\x1029\x92\x01\x84\x0c%\x05\x08\x19\x1e\x04\x8bb\x80\x14E\x02B\x92\x0bB\xa4\x102\x148\x08\x18K\n2R\x88Hp\xc4!#D\x12\x87\x8c\x10A\x92\x02d\xc8\x08\xb1\x14 - CF\x88 \xc9\x012R\x84\x18*(*\x901|\xb0\\\x91 \xc5\xc8\x00\x00\x00\x89 \x00\x00\x18\x00\x00\x002"H\t - bF\x00!+$\x98\x14!%$\x98\x14\x19\''\x0c\x85\xa4\x90`Rd\\ $e\x82\xe0\x1a\x010\x01\xa00G\x80\xd00\x02 - T\xb0P\xa9\x00\x99\xc6\x08\x00:F\x00\x88\x12\x1a+!Q\xcb4F\x00\xd02\x03@\x8c\xda\x1c\x01(\x98\x01\x08\xd3\x17\x01#\x06\x05\x00\x82`Pp\xcb\x88A\x01\x80 - \x18$\x9b2b`\x00 \x08\x06\x8d\xa6$#\x06\x06\x00\x82`\x00e\xd32b`\x00 \x08\x06\x12\x86,#\x06\x06\x00\x82` - a\xc72b`\x00 \x08\x06\x12\x96,#\x06\x06\x00\x82`\x00e\xd32b`\x00 \x08\x06\x12f,#\x06\x06\x00\x82` - a\xc52b`\x00 \x08\x06\x12F,#\x06\x06\x00\x82`\x00e\xd32b`\x00 \x08\x06\x126,#\x06\x06\x00\x82` - a\xc22b`\x00 \x08\x06\x12\x16,\x1a\x0e\x04\x02\x00\x00\x00\x07P\x10\xcd\x14a\x00\x00\x00\x00\x00\x00q - \x00\x00\x03\x00\x00\x002\x0e\x10"\x84\x00\x90\x03\x00\x00\x00\x00\x00\x00\x00\x00]\x0c\x00\x006\x00\x00\x00\x12\x03\x94\xab\x01\x00\x00\x00endian0cr3__quantum__rt__initialize__quantum__qis__x__body__quantum__qis__mz__body__quantum__rt__array_record_output__quantum__rt__result_record_output14.0.6 - f28c006a5895fc0e329fe15fead81e37457cb1d1batch\x00\x00\x00\x00\x00''' + body: 'b''; ModuleID = \''endian0cr3\''\nsource_filename = "endian0cr3"\n\n%Qubit + = type opaque\n%Result = type opaque\n\ndefine void @ENTRYPOINT__main() #0 {\nblock_0:\n call + void @__quantum__qis__x__body(%Qubit* null)\n call void @__quantum__qis__cx__body(%Qubit* + inttoptr (i64 1 to %Qubit*), %Qubit* inttoptr (i64 3 to %Qubit*))\n call void + @__quantum__qis__cx__body(%Qubit* inttoptr (i64 3 to %Qubit*), %Qubit* inttoptr + (i64 4 to %Qubit*))\n call void @__quantum__qis__cx__body(%Qubit* inttoptr + (i64 4 to %Qubit*), %Qubit* inttoptr (i64 5 to %Qubit*))\n call void @__quantum__qis__cx__body(%Qubit* + inttoptr (i64 5 to %Qubit*), %Qubit* inttoptr (i64 6 to %Qubit*))\n call void + @__quantum__qis__cx__body(%Qubit* inttoptr (i64 2 to %Qubit*), %Qubit* inttoptr + (i64 7 to %Qubit*))\n call void @__quantum__qis__cx__body(%Qubit* inttoptr + (i64 7 to %Qubit*), %Qubit* inttoptr (i64 8 to %Qubit*))\n call void @__quantum__qis__m__body(%Qubit* + null, %Result* null)\n call void @__quantum__qis__m__body(%Qubit* inttoptr + (i64 1 to %Qubit*), %Result* inttoptr (i64 1 to %Result*))\n call void @__quantum__qis__m__body(%Qubit* + inttoptr (i64 3 to %Qubit*), %Result* inttoptr (i64 2 to %Result*))\n call + void @__quantum__qis__m__body(%Qubit* inttoptr (i64 4 to %Qubit*), %Result* + inttoptr (i64 3 to %Result*))\n call void @__quantum__qis__m__body(%Qubit* + inttoptr (i64 5 to %Qubit*), %Result* inttoptr (i64 4 to %Result*))\n call + void @__quantum__qis__m__body(%Qubit* inttoptr (i64 6 to %Qubit*), %Result* + inttoptr (i64 5 to %Result*))\n call void @__quantum__qis__m__body(%Qubit* + inttoptr (i64 2 to %Qubit*), %Result* inttoptr (i64 6 to %Result*))\n call + void @__quantum__qis__m__body(%Qubit* inttoptr (i64 7 to %Qubit*), %Result* + inttoptr (i64 7 to %Result*))\n call void @__quantum__qis__m__body(%Qubit* + inttoptr (i64 8 to %Qubit*), %Result* inttoptr (i64 8 to %Result*))\n call + void @__quantum__rt__tuple_record_output(i64 3, i8* null)\n call void @__quantum__rt__array_record_output(i64 + 3, i8* null)\n call void @__quantum__rt__result_record_output(%Result* inttoptr + (i64 8 to %Result*), i8* null)\n call void @__quantum__rt__result_record_output(%Result* + inttoptr (i64 7 to %Result*), i8* null)\n call void @__quantum__rt__result_record_output(%Result* + inttoptr (i64 6 to %Result*), i8* null)\n call void @__quantum__rt__array_record_output(i64 + 3, i8* null)\n call void @__quantum__rt__result_record_output(%Result* inttoptr + (i64 5 to %Result*), i8* null)\n call void @__quantum__rt__result_record_output(%Result* + inttoptr (i64 4 to %Result*), i8* null)\n call void @__quantum__rt__result_record_output(%Result* + inttoptr (i64 3 to %Result*), i8* null)\n call void @__quantum__rt__array_record_output(i64 + 3, i8* null)\n call void @__quantum__rt__result_record_output(%Result* inttoptr + (i64 2 to %Result*), i8* null)\n call void @__quantum__rt__result_record_output(%Result* + inttoptr (i64 1 to %Result*), i8* null)\n call void @__quantum__rt__result_record_output(%Result* + null, i8* null)\n ret void\n}\n\ndeclare void @__quantum__qis__x__body(%Qubit*)\n\ndeclare + void @__quantum__qis__cx__body(%Qubit*, %Qubit*)\n\ndeclare void @__quantum__qis__m__body(%Qubit*, + %Result*) #1\n\ndeclare void @__quantum__rt__tuple_record_output(i64, i8*)\n\ndeclare + void @__quantum__rt__array_record_output(i64, i8*)\n\ndeclare void @__quantum__rt__result_record_output(%Result*, + i8*)\n\nattributes #0 = { "entry_point" "output_labeling_schema" "qir_profiles"="base_profile" + "required_num_qubits"="9" "required_num_results"="9" }\nattributes #1 = { "irreversible" + }\n\n!llvm.module.flags = !{!0, !1, !2, !3}\n\n!0 = !{i32 1, !"qir_major_version", + i32 1}\n!1 = !{i32 7, !"qir_minor_version", i32 0}\n!2 = !{i32 1, !"dynamic_qubit_management", + i1 false}\n!3 = !{i32 1, !"dynamic_result_management", i1 false}\n''' headers: Accept: - application/xml @@ -318,15 +326,15 @@ interactions: Connection: - keep-alive Content-Length: - - '5616' + - '3803' Content-Type: - application/octet-stream User-Agent: - - azsdk-python-storage-blob/12.20.0 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - azsdk-python-storage-blob/12.20.0 Python/3.9.20 (Windows-10-10.0.22631-SP0) x-ms-blob-type: - BlockBlob x-ms-date: - - Thu, 29 Aug 2024 01:25:44 GMT + - Mon, 30 Sep 2024 23:06:29 GMT x-ms-version: - '2024-05-04' method: PUT @@ -344,12 +352,12 @@ interactions: message: Created - request: body: 'b''{"id": "00000000-0000-0000-0000-000000000001", "name": "endian0cr3", - "providerId": "qci", "target": "qci.simulator", "itemType": "Job", "containerUri": + "providerId": "rigetti", "target": "rigetti.sim.qvm", "itemType": "Job", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\\"some\\": \\"data\\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\\"some\\": \\"data\\"}"}, "outputDataFormat": "microsoft.quantum-results.v2"}''' headers: Accept: @@ -359,32 +367,32 @@ interactions: Connection: - keep-alive Content-Length: - - '763' + - '775' Content-Type: - application/json User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: PUT uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=1 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": null, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", - "id": "00000000-0000-0000-0000-000000000001", "providerId": "qci", "target": - "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", "endExecutionTime": + "id": "00000000-0000-0000-0000-000000000001", "providerId": "rigetti", "target": + "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1300' + - '1312' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -402,28 +410,28 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=1 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": null, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", - "id": "00000000-0000-0000-0000-000000000001", "providerId": "qci", "target": - "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", "endExecutionTime": + "id": "00000000-0000-0000-0000-000000000001", "providerId": "rigetti", "target": + "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1533' + - '1545' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -441,28 +449,28 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=2 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": null, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", - "id": "00000000-0000-0000-0000-000000000001", "providerId": "qci", "target": - "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", "endExecutionTime": + "id": "00000000-0000-0000-0000-000000000001", "providerId": "rigetti", "target": + "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1533' + - '1545' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -480,28 +488,28 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=3 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": null, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", - "id": "00000000-0000-0000-0000-000000000001", "providerId": "qci", "target": - "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", "endExecutionTime": + "id": "00000000-0000-0000-0000-000000000001", "providerId": "rigetti", "target": + "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1533' + - '1545' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -519,28 +527,28 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=4 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": null, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", - "id": "00000000-0000-0000-0000-000000000001", "providerId": "qci", "target": - "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", "endExecutionTime": + "id": "00000000-0000-0000-0000-000000000001", "providerId": "rigetti", "target": + "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1533' + - '1545' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -558,28 +566,28 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=5 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": null, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", - "id": "00000000-0000-0000-0000-000000000001", "providerId": "qci", "target": - "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", "endExecutionTime": + "id": "00000000-0000-0000-0000-000000000001", "providerId": "rigetti", "target": + "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1533' + - '1545' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -597,28 +605,28 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=6 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": null, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", - "id": "00000000-0000-0000-0000-000000000001", "providerId": "qci", "target": - "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", "endExecutionTime": + "id": "00000000-0000-0000-0000-000000000001", "providerId": "rigetti", "target": + "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1533' + - '1545' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -636,28 +644,28 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=7 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": - {"count": 1}, "errorData": null, "isCancelling": false, "tags": [], "name": - "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", "providerId": - "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' + null, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", + "id": "00000000-0000-0000-0000-000000000001", "providerId": "rigetti", "target": + "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": + null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1541' + - '1545' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -675,28 +683,28 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=8 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", "providerId": - "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", + "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1541' + - '1553' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -714,28 +722,29 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=9 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, - "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "sessionId": null, "status": "Finishing", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", - "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": - {"count": 1}, "errorData": null, "isCancelling": false, "tags": [], "name": - "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", "providerId": - "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": null, "costEstimate": null, "itemType": "Job"}' + "beginExecutionTime": "2024-09-30T23:06:38.1817472Z", "cancellationTime": + null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": + false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", + "providerId": "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", + "endExecutionTime": "2024-09-30T23:06:39.0453013Z", "costEstimate": null, + "itemType": "Job"}' headers: connection: - keep-alive content-length: - - '1541' + - '1607' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -753,31 +762,32 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=10 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", - "beginExecutionTime": "2024-08-29T01:25:56.000327Z", "cancellationTime": null, - "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": false, - "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", - "providerId": "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": "2024-08-29T01:25:57.302769Z", "costEstimate": {"currencyCode": - "USD", "events": [{"dimensionId": "jobseconds", "dimensionName": "Job Seconds", - "measureUnit": "second", "amountBilled": 1.0, "amountConsumed": 1.0, "unitPrice": - 0.0}], "estimatedTotal": 0.0}, "itemType": "Job"}' + "beginExecutionTime": "2024-09-30T23:06:38.1817472Z", "cancellationTime": + null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": + false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", + "providerId": "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", + "endExecutionTime": "2024-09-30T23:06:39.0453013Z", "costEstimate": {"currencyCode": + "USD", "events": [{"dimensionId": "qpu_time_centiseconds", "dimensionName": + "QPU Execution Time", "measureUnit": "10ms (rounded up)", "amountBilled": + 0.0, "amountConsumed": 0.0, "unitPrice": 0.0}], "estimatedTotal": 0.0}, "itemType": + "Job"}' headers: connection: - keep-alive content-length: - - '1797' + - '1840' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -795,31 +805,32 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=11 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", - "beginExecutionTime": "2024-08-29T01:25:56.000327Z", "cancellationTime": null, - "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": false, - "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", - "providerId": "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": "2024-08-29T01:25:57.302769Z", "costEstimate": {"currencyCode": - "USD", "events": [{"dimensionId": "jobseconds", "dimensionName": "Job Seconds", - "measureUnit": "second", "amountBilled": 1.0, "amountConsumed": 1.0, "unitPrice": - 0.0}], "estimatedTotal": 0.0}, "itemType": "Job"}' + "beginExecutionTime": "2024-09-30T23:06:38.1817472Z", "cancellationTime": + null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": + false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", + "providerId": "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", + "endExecutionTime": "2024-09-30T23:06:39.0453013Z", "costEstimate": {"currencyCode": + "USD", "events": [{"dimensionId": "qpu_time_centiseconds", "dimensionName": + "QPU Execution Time", "measureUnit": "10ms (rounded up)", "amountBilled": + 0.0, "amountConsumed": 0.0, "unitPrice": 0.0}], "estimatedTotal": 0.0}, "itemType": + "Job"}' headers: connection: - keep-alive content-length: - - '1797' + - '1840' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -837,31 +848,32 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=12 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", - "beginExecutionTime": "2024-08-29T01:25:56.000327Z", "cancellationTime": null, - "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": false, - "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", - "providerId": "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": "2024-08-29T01:25:57.302769Z", "costEstimate": {"currencyCode": - "USD", "events": [{"dimensionId": "jobseconds", "dimensionName": "Job Seconds", - "measureUnit": "second", "amountBilled": 1.0, "amountConsumed": 1.0, "unitPrice": - 0.0}], "estimatedTotal": 0.0}, "itemType": "Job"}' + "beginExecutionTime": "2024-09-30T23:06:38.1817472Z", "cancellationTime": + null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": + false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", + "providerId": "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", + "endExecutionTime": "2024-09-30T23:06:39.0453013Z", "costEstimate": {"currencyCode": + "USD", "events": [{"dimensionId": "qpu_time_centiseconds", "dimensionName": + "QPU Execution Time", "measureUnit": "10ms (rounded up)", "amountBilled": + 0.0, "amountConsumed": 0.0, "unitPrice": 0.0}], "estimatedTotal": 0.0}, "itemType": + "Job"}' headers: connection: - keep-alive content-length: - - '1797' + - '1840' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -879,61 +891,48 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/providerStatus?api-version=2022-09-12-preview&test-sequence-id=2 response: body: - string: '{"value": [{"id": "microsoft-elements", "currentAvailability": "Available", - "targets": [{"id": "microsoft.dft", "currentAvailability": "Available", "averageQueueTime": - 0, "statusPage": null}]}, {"id": "ionq", "currentAvailability": "Degraded", - "targets": [{"id": "ionq.qpu", "currentAvailability": "Unavailable", "averageQueueTime": - 0, "statusPage": null}, {"id": "ionq.qpu.aria-1", "currentAvailability": "Available", - "averageQueueTime": 8363691, "statusPage": "https://status.ionq.co"}, {"id": - "ionq.qpu.aria-2", "currentAvailability": "Available", "averageQueueTime": - 2656571, "statusPage": "https://status.ionq.co"}, {"id": "ionq.simulator", - "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": "https://status.ionq.co"}]}, + string: '{"value": [{"id": "ionq", "currentAvailability": "Degraded", "targets": + [{"id": "ionq.qpu.aria-1", "currentAvailability": "Unavailable", "averageQueueTime": + 385766, "statusPage": "https://status.ionq.co"}, {"id": "ionq.qpu.aria-2", + "currentAvailability": "Unavailable", "averageQueueTime": 5034763, "statusPage": + "https://status.ionq.co"}, {"id": "ionq.simulator", "currentAvailability": + "Available", "averageQueueTime": 5741, "statusPage": "https://status.ionq.co"}]}, {"id": "microsoft-qc", "currentAvailability": "Available", "targets": [{"id": "microsoft.estimator", "currentAvailability": "Available", "averageQueueTime": 0, "statusPage": null}]}, {"id": "pasqal", "currentAvailability": "Degraded", "targets": [{"id": "pasqal.sim.emu-tn", "currentAvailability": "Available", - "averageQueueTime": 243, "statusPage": "https://pasqal.com"}, {"id": "pasqal.qpu.fresnel", + "averageQueueTime": 273, "statusPage": "https://pasqal.com"}, {"id": "pasqal.qpu.fresnel", "currentAvailability": "Degraded", "averageQueueTime": 0, "statusPage": "https://pasqal.com"}]}, - {"id": "quantinuum", "currentAvailability": "Available", "targets": [{"id": - "quantinuum.qpu.h1-1", "currentAvailability": "Available", "averageQueueTime": - 185442, "statusPage": "https://www.quantinuum.com/hardware/h1"}, {"id": "quantinuum.sim.h1-1sc", - "currentAvailability": "Available", "averageQueueTime": 0, "statusPage": "https://www.quantinuum.com/hardware/h1"}, + {"id": "quantinuum", "currentAvailability": "Degraded", "targets": [{"id": + "quantinuum.qpu.h1-1", "currentAvailability": "Degraded", "averageQueueTime": + 0, "statusPage": "https://www.quantinuum.com/hardware/h1"}, {"id": "quantinuum.sim.h1-1sc", + "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": "https://www.quantinuum.com/hardware/h1"}, {"id": "quantinuum.sim.h1-1e", "currentAvailability": "Available", "averageQueueTime": - 8, "statusPage": "https://www.quantinuum.com/hardware/h1"}, {"id": "quantinuum.qpu.h2-1", - "currentAvailability": "Available", "averageQueueTime": 115896, "statusPage": - "https://www.quantinuum.com/hardware/h2"}, {"id": "quantinuum.sim.h2-1sc", - "currentAvailability": "Available", "averageQueueTime": 2, "statusPage": "https://www.quantinuum.com/hardware/h2"}, - {"id": "quantinuum.sim.h2-1e", "currentAvailability": "Available", "averageQueueTime": - 0, "statusPage": "https://www.quantinuum.com/hardware/h2"}, {"id": "quantinuum.sim.h1-1sc-preview", - "currentAvailability": "Available", "averageQueueTime": 0, "statusPage": "https://www.quantinuum.com/hardware/h1"}, - {"id": "quantinuum.sim.h1-1e-preview", "currentAvailability": "Available", - "averageQueueTime": 8, "statusPage": "https://www.quantinuum.com/hardware/h1"}, - {"id": "quantinuum.sim.h1-2e-preview", "currentAvailability": "Available", - "averageQueueTime": 0, "statusPage": "https://www.quantinuum.com/hardware/h1"}, - {"id": "quantinuum.qpu.h1-1-preview", "currentAvailability": "Available", - "averageQueueTime": 185442, "statusPage": "https://www.quantinuum.com/hardware/h1"}]}, - {"id": "rigetti", "currentAvailability": "Available", "targets": [{"id": "rigetti.sim.qvm", + 5, "statusPage": "https://www.quantinuum.com/hardware/h1"}]}, {"id": "rigetti", + "currentAvailability": "Available", "targets": [{"id": "rigetti.sim.qvm", "currentAvailability": "Available", "averageQueueTime": 5, "statusPage": "https://rigetti.statuspage.io/"}, {"id": "rigetti.qpu.ankaa-2", "currentAvailability": "Available", "averageQueueTime": 5, "statusPage": "https://rigetti.statuspage.io/"}]}, {"id": "qci", "currentAvailability": - "Degraded", "targets": [{"id": "qci.simulator", "currentAvailability": "Available", - "averageQueueTime": 1, "statusPage": "https://quantumcircuits.com"}, {"id": + "Degraded", "targets": [{"id": "qci.simulator", "currentAvailability": "Unavailable", + "averageQueueTime": 0, "statusPage": "https://quantumcircuits.com"}, {"id": "qci.machine1", "currentAvailability": "Unavailable", "averageQueueTime": - 1, "statusPage": "https://quantumcircuits.com"}, {"id": "qci.simulator.noisy", - "currentAvailability": "Available", "averageQueueTime": 0, "statusPage": "https://quantumcircuits.com"}]}, - {"id": "Microsoft.Test", "currentAvailability": "Available", "targets": [{"id": - "echo-rigetti", "currentAvailability": "Available", "averageQueueTime": 1, - "statusPage": ""}, {"id": "echo-quantinuum", "currentAvailability": "Available", - "averageQueueTime": 1, "statusPage": ""}, {"id": "echo-qci", "currentAvailability": - "Available", "averageQueueTime": 1, "statusPage": ""}, {"id": "echo-ionq", + 0, "statusPage": "https://quantumcircuits.com"}, {"id": "qci.simulator.noisy", + "currentAvailability": "Unavailable", "averageQueueTime": 0, "statusPage": + "https://quantumcircuits.com"}]}, {"id": "Microsoft.ChemistryHpc", "currentAvailability": + "Degraded", "targets": [{"id": "microsoft.hpc", "currentAvailability": "Unavailable", + "averageQueueTime": 0, "statusPage": null}]}, {"id": "Microsoft.Test", "currentAvailability": + "Available", "targets": [{"id": "echo-rigetti", "currentAvailability": "Available", + "averageQueueTime": 1, "statusPage": ""}, {"id": "echo-quantinuum", "currentAvailability": + "Available", "averageQueueTime": 1, "statusPage": ""}, {"id": "echo-qci", "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": ""}, - {"id": "echo-aquarius", "currentAvailability": "Available", "averageQueueTime": - 1, "statusPage": ""}, {"id": "sparse-sim-rigetti", "currentAvailability": + {"id": "echo-ionq", "currentAvailability": "Available", "averageQueueTime": + 1, "statusPage": ""}, {"id": "echo-aquarius", "currentAvailability": "Available", + "averageQueueTime": 1, "statusPage": ""}, {"id": "sparse-sim-rigetti", "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": ""}, {"id": "sparse-sim-quantinuum", "currentAvailability": "Available", "averageQueueTime": 1, "statusPage": ""}, {"id": "sparse-sim-qci", "currentAvailability": "Available", "averageQueueTime": @@ -944,7 +943,7 @@ interactions: connection: - keep-alive content-length: - - '4751' + - '3587' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -962,31 +961,32 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=13 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", - "beginExecutionTime": "2024-08-29T01:25:56.000327Z", "cancellationTime": null, - "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": false, - "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", - "providerId": "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": "2024-08-29T01:25:57.302769Z", "costEstimate": {"currencyCode": - "USD", "events": [{"dimensionId": "jobseconds", "dimensionName": "Job Seconds", - "measureUnit": "second", "amountBilled": 1.0, "amountConsumed": 1.0, "unitPrice": - 0.0}], "estimatedTotal": 0.0}, "itemType": "Job"}' + "beginExecutionTime": "2024-09-30T23:06:38.1817472Z", "cancellationTime": + null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": + false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", + "providerId": "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", + "endExecutionTime": "2024-09-30T23:06:39.0453013Z", "costEstimate": {"currencyCode": + "USD", "events": [{"dimensionId": "qpu_time_centiseconds", "dimensionName": + "QPU Execution Time", "measureUnit": "10ms (rounded up)", "amountBilled": + 0.0, "amountConsumed": 0.0, "unitPrice": 0.0}], "estimatedTotal": 0.0}, "itemType": + "Job"}' headers: connection: - keep-alive content-length: - - '1797' + - '1840' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -1004,31 +1004,32 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=14 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", - "beginExecutionTime": "2024-08-29T01:25:56.000327Z", "cancellationTime": null, - "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": false, - "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", - "providerId": "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": "2024-08-29T01:25:57.302769Z", "costEstimate": {"currencyCode": - "USD", "events": [{"dimensionId": "jobseconds", "dimensionName": "Job Seconds", - "measureUnit": "second", "amountBilled": 1.0, "amountConsumed": 1.0, "unitPrice": - 0.0}], "estimatedTotal": 0.0}, "itemType": "Job"}' + "beginExecutionTime": "2024-09-30T23:06:38.1817472Z", "cancellationTime": + null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": + false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", + "providerId": "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", + "endExecutionTime": "2024-09-30T23:06:39.0453013Z", "costEstimate": {"currencyCode": + "USD", "events": [{"dimensionId": "qpu_time_centiseconds", "dimensionName": + "QPU Execution Time", "measureUnit": "10ms (rounded up)", "amountBilled": + 0.0, "amountConsumed": 0.0, "unitPrice": 0.0}], "estimatedTotal": 0.0}, "itemType": + "Job"}' headers: connection: - keep-alive content-length: - - '1797' + - '1840' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -1046,31 +1047,32 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=15 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", - "beginExecutionTime": "2024-08-29T01:25:56.000327Z", "cancellationTime": null, - "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": false, - "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", - "providerId": "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": "2024-08-29T01:25:57.302769Z", "costEstimate": {"currencyCode": - "USD", "events": [{"dimensionId": "jobseconds", "dimensionName": "Job Seconds", - "measureUnit": "second", "amountBilled": 1.0, "amountConsumed": 1.0, "unitPrice": - 0.0}], "estimatedTotal": 0.0}, "itemType": "Job"}' + "beginExecutionTime": "2024-09-30T23:06:38.1817472Z", "cancellationTime": + null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": + false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", + "providerId": "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", + "endExecutionTime": "2024-09-30T23:06:39.0453013Z", "costEstimate": {"currencyCode": + "USD", "events": [{"dimensionId": "qpu_time_centiseconds", "dimensionName": + "QPU Execution Time", "measureUnit": "10ms (rounded up)", "amountBilled": + 0.0, "amountConsumed": 0.0, "unitPrice": 0.0}], "estimatedTotal": 0.0}, "itemType": + "Job"}' headers: connection: - keep-alive content-length: - - '1797' + - '1840' content-type: - application/json; charset=utf-8 transfer-encoding: @@ -1088,9 +1090,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-storage-blob/12.20.0 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - azsdk-python-storage-blob/12.20.0 Python/3.9.20 (Windows-10-10.0.22631-SP0) x-ms-date: - - Thu, 29 Aug 2024 01:26:00 GMT + - Mon, 30 Sep 2024 23:06:45 GMT x-ms-range: - bytes=0-33554431 x-ms-version: @@ -1100,88 +1102,88 @@ interactions: response: body: string: '{"DataFormat": "microsoft.quantum-results.v2", "Results": [{"Histogram": - [{"Outcome": {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - "Display": "([0, 0, 1], [0, 0, 0], [0, 0, 0])", "Count": 100}], "Shots": [{"Item1": - [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}]}]}' + [{"Outcome": {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + "Display": "([0, 0, 0], [0, 0, 0], [0, 0, 1])", "Count": 100}], "Shots": [{"Item1": + [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}]}]}' headers: accept-ranges: - bytes @@ -1192,11 +1194,11 @@ interactions: content-type: - application/octet-stream x-ms-blob-content-md5: - - /pdANioIP/rbk5uezNMNCQ== + - Q5jjlyuwyuJUDFjOdOjo8g== x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Thu, 29 Aug 2024 01:25:58 GMT + - Mon, 30 Sep 2024 23:06:40 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -1218,9 +1220,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-storage-blob/12.20.0 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - azsdk-python-storage-blob/12.20.0 Python/3.9.20 (Windows-10-10.0.22631-SP0) x-ms-date: - - Thu, 29 Aug 2024 01:26:01 GMT + - Mon, 30 Sep 2024 23:06:45 GMT x-ms-range: - bytes=0-33554431 x-ms-version: @@ -1230,88 +1232,88 @@ interactions: response: body: string: '{"DataFormat": "microsoft.quantum-results.v2", "Results": [{"Histogram": - [{"Outcome": {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - "Display": "([0, 0, 1], [0, 0, 0], [0, 0, 0])", "Count": 100}], "Shots": [{"Item1": - [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, - 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": - [0, 0, 0], "Item3": [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": - [0, 0, 0]}, {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}, - {"Item1": [0, 0, 1], "Item2": [0, 0, 0], "Item3": [0, 0, 0]}]}]}' + [{"Outcome": {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + "Display": "([0, 0, 0], [0, 0, 0], [0, 0, 1])", "Count": 100}], "Shots": [{"Item1": + [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, + 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": + [0, 0, 0], "Item3": [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": + [0, 0, 1]}, {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}, + {"Item1": [0, 0, 0], "Item2": [0, 0, 0], "Item3": [0, 0, 1]}]}]}' headers: accept-ranges: - bytes @@ -1322,11 +1324,11 @@ interactions: content-type: - application/octet-stream x-ms-blob-content-md5: - - /pdANioIP/rbk5uezNMNCQ== + - Q5jjlyuwyuJUDFjOdOjo8g== x-ms-blob-type: - BlockBlob x-ms-creation-time: - - Thu, 29 Aug 2024 01:25:58 GMT + - Mon, 30 Sep 2024 23:06:40 GMT x-ms-lease-state: - available x-ms-lease-status: @@ -1348,31 +1350,32 @@ interactions: Connection: - keep-alive User-Agent: - - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.19 (Windows-10-10.0.22631-SP0) + - testapp-azure-quantum-qiskit azsdk-python-quantum/0.0.1 Python/3.9.20 (Windows-10-10.0.22631-SP0) method: GET uri: https://eastus.quantum.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Quantum/workspaces/myworkspace/jobs/00000000-0000-0000-0000-000000000001?api-version=2022-09-12-preview&test-sequence-id=16 response: body: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", - "inputDataFormat": "qir.v1", "inputParams": {"shots": 100, "count": 100, "items": - [{"entryPoint": "endian0cr3", "arguments": []}]}, "metadata": {"qiskit": "True", - "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, + "inputDataFormat": "qir.v1", "inputParams": {"count": 100, "shots": 100, "items": + [{"entryPoint": "ENTRYPOINT__main", "arguments": []}]}, "metadata": {"qiskit": + "True", "name": "endian0cr3", "num_qubits": "3", "metadata": "{\"some\": \"data\"}"}, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dendian0cr3-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", - "beginExecutionTime": "2024-08-29T01:25:56.000327Z", "cancellationTime": null, - "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": false, - "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", - "providerId": "qci", "target": "qci.simulator", "creationTime": "2024-08-29T01:25:45.2071638+00:00", - "endExecutionTime": "2024-08-29T01:25:57.302769Z", "costEstimate": {"currencyCode": - "USD", "events": [{"dimensionId": "jobseconds", "dimensionName": "Job Seconds", - "measureUnit": "second", "amountBilled": 1.0, "amountConsumed": 1.0, "unitPrice": - 0.0}], "estimatedTotal": 0.0}, "itemType": "Job"}' + "beginExecutionTime": "2024-09-30T23:06:38.1817472Z", "cancellationTime": + null, "quantumComputingData": {"count": 1}, "errorData": null, "isCancelling": + false, "tags": [], "name": "endian0cr3", "id": "00000000-0000-0000-0000-000000000001", + "providerId": "rigetti", "target": "rigetti.sim.qvm", "creationTime": "2024-09-30T23:06:29.8415657+00:00", + "endExecutionTime": "2024-09-30T23:06:39.0453013Z", "costEstimate": {"currencyCode": + "USD", "events": [{"dimensionId": "qpu_time_centiseconds", "dimensionName": + "QPU Execution Time", "measureUnit": "10ms (rounded up)", "amountBilled": + 0.0, "amountConsumed": 0.0, "unitPrice": 0.0}], "estimatedTotal": 0.0}, "itemType": + "Job"}' headers: connection: - keep-alive content-length: - - '1797' + - '1840' content-type: - application/json; charset=utf-8 transfer-encoding: diff --git a/azure-quantum/tests/unit/recordings/test_qsharp_qir_file_quantinuum.yaml b/azure-quantum/tests/unit/recordings/test_qsharp_qir_file_quantinuum.yaml index ad9b6c82b..aeb4ed6e0 100644 --- a/azure-quantum/tests/unit/recordings/test_qsharp_qir_file_quantinuum.yaml +++ b/azure-quantum/tests/unit/recordings/test_qsharp_qir_file_quantinuum.yaml @@ -429,7 +429,7 @@ interactions: "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "microsoft.quantum-results.v2"}''' headers: Accept: @@ -451,7 +451,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -489,7 +489,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -527,7 +527,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -565,7 +565,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -603,7 +603,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -641,7 +641,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -679,7 +679,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -717,7 +717,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -755,7 +755,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -793,7 +793,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -831,7 +831,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:28:56.090461+00:00", "cancellationTime": @@ -872,7 +872,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:28:56.090461+00:00", "cancellationTime": diff --git a/azure-quantum/tests/unit/recordings/test_qsharp_qir_file_rigetti.yaml b/azure-quantum/tests/unit/recordings/test_qsharp_qir_file_rigetti.yaml index d2688b29d..4746ea27e 100644 --- a/azure-quantum/tests/unit/recordings/test_qsharp_qir_file_rigetti.yaml +++ b/azure-quantum/tests/unit/recordings/test_qsharp_qir_file_rigetti.yaml @@ -429,7 +429,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Base"}, "outputDataFormat": "microsoft.quantum-results.v2"}''' headers: Accept: @@ -451,7 +451,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -489,7 +489,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -527,7 +527,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -565,7 +565,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -603,7 +603,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -641,7 +641,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -679,7 +679,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -717,7 +717,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -755,7 +755,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:29:12.3993829Z", "cancellationTime": @@ -797,7 +797,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:29:12.3993829Z", "cancellationTime": diff --git a/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_quantinuum.yaml b/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_quantinuum.yaml index 1372541f4..46697835b 100644 --- a/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_quantinuum.yaml +++ b/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_quantinuum.yaml @@ -429,7 +429,7 @@ interactions: "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "microsoft.quantum-results.v2"}''' headers: Accept: @@ -451,7 +451,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -489,7 +489,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -527,7 +527,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -565,7 +565,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -603,7 +603,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -641,7 +641,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -679,7 +679,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -717,7 +717,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -755,7 +755,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -793,7 +793,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -831,7 +831,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:29:27.447957+00:00", "cancellationTime": @@ -872,7 +872,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:29:27.447957+00:00", "cancellationTime": diff --git a/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_quantinuum_h2.yaml b/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_quantinuum_h2.yaml index 919c33920..818da57c9 100644 --- a/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_quantinuum_h2.yaml +++ b/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_quantinuum_h2.yaml @@ -429,7 +429,7 @@ interactions: "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "microsoft.quantum-results.v2"}''' headers: Accept: @@ -451,7 +451,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -489,7 +489,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -527,7 +527,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -565,7 +565,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -603,7 +603,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -641,7 +641,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -679,7 +679,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -717,7 +717,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -755,7 +755,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -793,7 +793,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -831,7 +831,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -869,7 +869,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -907,7 +907,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -945,7 +945,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -983,7 +983,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -1021,7 +1021,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T18:41:18.991229+00:00", "cancellationTime": @@ -1062,7 +1062,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dquantinuum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T18:41:18.991229+00:00", "cancellationTime": diff --git a/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_rigetti.yaml b/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_rigetti.yaml index c89d8c67a..25808fc4c 100644 --- a/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_rigetti.yaml +++ b/azure-quantum/tests/unit/recordings/test_qsharp_qir_inline_rigetti.yaml @@ -429,7 +429,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Base"}, "outputDataFormat": "microsoft.quantum-results.v2"}''' headers: Accept: @@ -451,7 +451,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -489,7 +489,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -527,7 +527,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -565,7 +565,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -603,7 +603,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -641,7 +641,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -679,7 +679,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -717,7 +717,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": @@ -755,7 +755,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:34:44.6744391Z", "cancellationTime": @@ -797,7 +797,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000001/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3Dazure-quantum-job-00000000-0000-0000-0000-000000000001.output.json&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:34:44.6744391Z", "cancellationTime": diff --git a/azure-quantum/tests/unit/recordings/test_session_job_failure_policies_echo_quantinuum.yaml b/azure-quantum/tests/unit/recordings/test_session_job_failure_policies_echo_quantinuum.yaml index 572748743..8d26a139d 100644 --- a/azure-quantum/tests/unit/recordings/test_session_job_failure_policies_echo_quantinuum.yaml +++ b/azure-quantum/tests/unit/recordings/test_session_job_failure_policies_echo_quantinuum.yaml @@ -383,7 +383,7 @@ interactions: "sessionId": "00000000-0000-0000-0000-000000000001", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "invalid_output_format"}''' headers: Accept: @@ -405,7 +405,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -444,7 +444,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -483,7 +483,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -522,7 +522,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -561,7 +561,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -600,7 +600,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -639,7 +639,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -678,7 +678,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -717,7 +717,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -757,7 +757,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -797,7 +797,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Failed", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1121,7 +1121,7 @@ interactions: "sessionId": "00000000-0000-0000-0000-000000000001", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "honeywell.qir.v1"}''' headers: Accept: @@ -1171,7 +1171,7 @@ interactions: string: '{"value": [{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Failed", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -1565,7 +1565,7 @@ interactions: "sessionId": "00000000-0000-0000-0000-000000000004", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "honeywell.qir.v1"}''' headers: Accept: @@ -1587,7 +1587,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -1626,7 +1626,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1665,7 +1665,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1704,7 +1704,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1743,7 +1743,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1782,7 +1782,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1821,7 +1821,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1860,7 +1860,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1900,7 +1900,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1940,7 +1940,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -1980,7 +1980,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -2020,7 +2020,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/rawOutputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B1-00000000-0000-0000-0000-000000000005.output.json&sig=PLACEHOLDER", @@ -2341,7 +2341,7 @@ interactions: "sessionId": "00000000-0000-0000-0000-000000000004", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "invalid_output_format"}''' headers: Accept: @@ -2363,7 +2363,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -2402,7 +2402,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -2441,7 +2441,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -2480,7 +2480,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -2519,7 +2519,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -2558,7 +2558,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -2597,7 +2597,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -2636,7 +2636,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -2676,7 +2676,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -2716,7 +2716,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Failed", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DBad%2BJob%2B2-00000000-0000-0000-0000-000000000006.output.json&sig=PLACEHOLDER", @@ -3039,7 +3039,7 @@ interactions: "sessionId": "00000000-0000-0000-0000-000000000004", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "honeywell.qir.v1"}''' headers: Accept: @@ -3061,7 +3061,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000007/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -3100,7 +3100,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.output.json&sig=PLACEHOLDER", @@ -3139,7 +3139,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.output.json&sig=PLACEHOLDER", @@ -3178,7 +3178,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.output.json&sig=PLACEHOLDER", @@ -3217,7 +3217,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.output.json&sig=PLACEHOLDER", @@ -3256,7 +3256,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.output.json&sig=PLACEHOLDER", @@ -3295,7 +3295,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.output.json&sig=PLACEHOLDER", @@ -3334,7 +3334,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.output.json&sig=PLACEHOLDER", @@ -3374,7 +3374,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/rawOutputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DGood%2BJob%2B3-00000000-0000-0000-0000-000000000007.output.json&sig=PLACEHOLDER", @@ -3445,7 +3445,7 @@ interactions: string: '{"value": [{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000005/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000005/rawOutputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -3457,7 +3457,7 @@ interactions: "costEstimate": null, "itemType": "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000006/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Failed", "jobType": "QuantumComputing", "outputDataFormat": "invalid_output_format", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000006/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -3472,7 +3472,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000007/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000004", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000007/rawOutputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", diff --git a/azure-quantum/tests/unit/recordings/test_session_job_qsharp_callable_echo_quantinuum.yaml b/azure-quantum/tests/unit/recordings/test_session_job_qsharp_callable_echo_quantinuum.yaml index 9648757a6..d46735a3b 100644 --- a/azure-quantum/tests/unit/recordings/test_session_job_qsharp_callable_echo_quantinuum.yaml +++ b/azure-quantum/tests/unit/recordings/test_session_job_qsharp_callable_echo_quantinuum.yaml @@ -382,7 +382,7 @@ interactions: "00000000-0000-0000-0000-000000000001", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "honeywell.qir.v1"}''' headers: Accept: @@ -404,7 +404,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -693,7 +693,7 @@ interactions: "00000000-0000-0000-0000-000000000001", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "honeywell.qir.v1"}''' headers: Accept: @@ -715,7 +715,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -754,7 +754,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -793,7 +793,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -832,7 +832,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -871,7 +871,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -910,7 +910,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -949,7 +949,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/rawOutputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1163,7 +1163,7 @@ interactions: string: '{"value": [{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000002/rawOutputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -1175,7 +1175,7 @@ interactions: "costEstimate": null, "itemType": "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -1215,7 +1215,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/rawOutputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1255,7 +1255,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1294,7 +1294,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1333,7 +1333,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1372,7 +1372,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1411,7 +1411,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1450,7 +1450,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1490,7 +1490,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1530,7 +1530,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1570,7 +1570,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "honeywell.qir.v1", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/rawOutputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", diff --git a/azure-quantum/tests/unit/recordings/test_session_job_qsharp_callable_quantinuum.yaml b/azure-quantum/tests/unit/recordings/test_session_job_qsharp_callable_quantinuum.yaml index 4eb391ae9..4f9799e13 100644 --- a/azure-quantum/tests/unit/recordings/test_session_job_qsharp_callable_quantinuum.yaml +++ b/azure-quantum/tests/unit/recordings/test_session_job_qsharp_callable_quantinuum.yaml @@ -453,7 +453,7 @@ interactions: "00000000-0000-0000-0000-000000000001", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "microsoft.quantum-results.v2"}''' headers: Accept: @@ -475,7 +475,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -764,7 +764,7 @@ interactions: "00000000-0000-0000-0000-000000000001", "containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "outputDataFormat": + "arguments": [], "target_profile": "Adaptive_RI"}, "outputDataFormat": "microsoft.quantum-results.v2"}''' headers: Accept: @@ -786,7 +786,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -825,7 +825,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -864,7 +864,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -903,7 +903,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -942,7 +942,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -981,7 +981,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1020,7 +1020,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1059,7 +1059,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1098,7 +1098,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1137,7 +1137,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1176,7 +1176,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1215,7 +1215,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1434,7 +1434,7 @@ interactions: string: '{"value": [{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -1449,7 +1449,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -1489,7 +1489,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000002/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B1-00000000-0000-0000-0000-000000000002.output.json&sig=PLACEHOLDER", @@ -1531,7 +1531,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1570,7 +1570,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1609,7 +1609,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1648,7 +1648,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1687,7 +1687,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1726,7 +1726,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1765,7 +1765,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Executing", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", @@ -1805,7 +1805,7 @@ interactions: string: '{"containerUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=c&sp=rcwl&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.input.json&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "00000000-0000-0000-0000-000000000001", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net/job-00000000-0000-0000-0000-000000000003/outputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=r&rscd=attachment%3B+filename%3DJob%2B2-00000000-0000-0000-0000-000000000003.output.json&sig=PLACEHOLDER", diff --git a/azure-quantum/tests/unit/recordings/test_session_list_top_level_items.yaml b/azure-quantum/tests/unit/recordings/test_session_list_top_level_items.yaml index 80610f141..39f566107 100644 --- a/azure-quantum/tests/unit/recordings/test_session_list_top_level_items.yaml +++ b/azure-quantum/tests/unit/recordings/test_session_list_top_level_items.yaml @@ -2201,7 +2201,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-cd744097-3811-11ef-b04b-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cd744097-3811-11ef-b04b-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cd744097-3811-11ef-b04b-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T01:24:35.716887Z", "cancellationTime": null, @@ -2215,7 +2215,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-dbc0b44b-3811-11ef-bc4e-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-dbc0b44b-3811-11ef-bc4e-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-dbc0b44b-3811-11ef-bc4e-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T01:24:51.9017134Z", "cancellationTime": @@ -2229,7 +2229,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-e4fb2320-3811-11ef-af74-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e4fb2320-3811-11ef-af74-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e4fb2320-3811-11ef-af74-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T01:25:19.976323Z", "cancellationTime": null, @@ -2243,7 +2243,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-f9de7a30-3811-11ef-8fc3-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-f9de7a30-3811-11ef-8fc3-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-f9de7a30-3811-11ef-8fc3-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T01:25:44.1738865Z", "cancellationTime": @@ -2526,7 +2526,7 @@ interactions: "costEstimate": null, "itemType": "Session"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-a428ad2c-3d8f-11ef-8b4f-00155d8ff363?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a428ad2c-3d8f-11ef-8b4f-00155d8ff363/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution", "count": 100}, "metadata": + "arguments": [], "target_profile": "Adaptive_RI", "count": 100}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a428ad2c-3d8f-11ef-8b4f-00155d8ff363/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-09T01:07:52.462943Z", "cancellationTime": null, @@ -2540,7 +2540,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-ccdf8a06-43a7-11ef-9c6f-00155d752a85?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-ccdf8a06-43a7-11ef-9c6f-00155d752a85/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution", "count": 100}, "metadata": + "arguments": [], "target_profile": "Adaptive_RI", "count": 100}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-ccdf8a06-43a7-11ef-9c6f-00155d752a85/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-16T19:16:00.696483Z", "cancellationTime": null, @@ -2554,7 +2554,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-dbd6a882-43a7-11ef-9c6f-00155d752a85?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-dbd6a882-43a7-11ef-9c6f-00155d752a85/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution", "count": 100}, "metadata": + "arguments": [], "target_profile": "Adaptive_RI", "count": 100}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-dbd6a882-43a7-11ef-9c6f-00155d752a85/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-16T19:16:15.42659Z", "cancellationTime": null, @@ -2568,7 +2568,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-027939f4-4480-11ef-a1a2-00155d3af12a?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-027939f4-4480-11ef-a1a2-00155d3af12a/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution", "count": 100}, "metadata": + "arguments": [], "target_profile": "Adaptive_RI", "count": 100}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-027939f4-4480-11ef-a1a2-00155d3af12a/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-17T21:03:36.470512Z", "cancellationTime": null, @@ -3338,7 +3338,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-04960eeb-45e7-11ef-b5dc-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-04960eeb-45e7-11ef-b5dc-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-04960eeb-45e7-11ef-b5dc-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-20T06:12:06.290918Z", "cancellationTime": null, @@ -3352,7 +3352,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-b9cef7be-45e7-11ef-bac4-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-b9cef7be-45e7-11ef-bac4-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-b9cef7be-45e7-11ef-bac4-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-19T15:58:31.8087174Z", "cancellationTime": @@ -3366,7 +3366,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-c2bfaf12-45e7-11ef-a134-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-c2bfaf12-45e7-11ef-a134-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-c2bfaf12-45e7-11ef-a134-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-20T06:12:11.472624Z", "cancellationTime": null, @@ -3380,7 +3380,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-78878f5c-45e8-11ef-ba66-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-78878f5c-45e8-11ef-ba66-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-78878f5c-45e8-11ef-ba66-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-19T16:03:52.0492404Z", "cancellationTime": @@ -3652,7 +3652,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-99db5edd-45fe-11ef-84d0-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-99db5edd-45fe-11ef-84d0-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-99db5edd-45fe-11ef-84d0-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-20T06:29:20.801272Z", "cancellationTime": null, @@ -3676,7 +3676,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-d1dcafc1-45ff-11ef-b908-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d1dcafc1-45ff-11ef-b908-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d1dcafc1-45ff-11ef-b908-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-20T06:29:26.085389Z", "cancellationTime": null, @@ -3767,7 +3767,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-10211aa0-5393-11ef-a95b-00155d4403e7?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-10211aa0-5393-11ef-a95b-00155d4403e7/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution", "count": 100}, "metadata": + "arguments": [], "target_profile": "Adaptive_RI", "count": 100}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-10211aa0-5393-11ef-a95b-00155d4403e7/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T01:27:45.022906Z", "cancellationTime": null, @@ -4871,7 +4871,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-fa1f6dc0-5b61-11ef-a327-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fa1f6dc0-5b61-11ef-a327-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fa1f6dc0-5b61-11ef-a327-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T23:56:38.193499Z", "cancellationTime": null, @@ -4885,7 +4885,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-10a24a24-5b62-11ef-9f24-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-10a24a24-5b62-11ef-9f24-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-10a24a24-5b62-11ef-9f24-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T23:57:07.8121474Z", "cancellationTime": @@ -4899,7 +4899,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-16559445-5b62-11ef-8538-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-16559445-5b62-11ef-8538-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-16559445-5b62-11ef-8538-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T23:57:26.869383Z", "cancellationTime": null, @@ -4913,7 +4913,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2637b210-5b62-11ef-851e-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2637b210-5b62-11ef-851e-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2637b210-5b62-11ef-851e-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T23:57:44.0152486Z", "cancellationTime": @@ -6235,7 +6235,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-82813a08-64d5-11ef-b7a7-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-82813a08-64d5-11ef-b7a7-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-82813a08-64d5-11ef-b7a7-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-28T00:36:38.713294Z", "cancellationTime": null, @@ -6249,7 +6249,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-99731056-64d5-11ef-bf7e-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-99731056-64d5-11ef-bf7e-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-99731056-64d5-11ef-bf7e-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-28T00:36:50.0458127Z", "cancellationTime": @@ -6263,7 +6263,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-9f96d909-64d5-11ef-9115-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-9f96d909-64d5-11ef-9115-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-9f96d909-64d5-11ef-9115-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-28T00:37:29.235514Z", "cancellationTime": null, @@ -6277,7 +6277,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-c1713341-64d5-11ef-8d60-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-c1713341-64d5-11ef-8d60-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-c1713341-64d5-11ef-8d60-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-28T00:37:57.2828117Z", "cancellationTime": @@ -7316,7 +7316,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-4fadd0b4-657d-11ef-9f35-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-4fadd0b4-657d-11ef-9f35-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-4fadd0b4-657d-11ef-9f35-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-28T20:37:26.715206Z", "cancellationTime": null, @@ -7330,7 +7330,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-5ace1437-657d-11ef-854e-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-5ace1437-657d-11ef-854e-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-5ace1437-657d-11ef-854e-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-28T20:37:40.9719216Z", "cancellationTime": @@ -7344,7 +7344,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-60a6ca5c-657d-11ef-9cf6-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-60a6ca5c-657d-11ef-9cf6-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-60a6ca5c-657d-11ef-9cf6-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-28T20:39:16.968471Z", "cancellationTime": null, @@ -7358,7 +7358,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a8b786f6-657d-11ef-a7a8-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a8b786f6-657d-11ef-a7a8-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a8b786f6-657d-11ef-a7a8-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-28T20:39:52.2733021Z", "cancellationTime": diff --git a/azure-quantum/tests/unit/recordings/test_workspace_auth_connection_string_api_key.yaml b/azure-quantum/tests/unit/recordings/test_workspace_auth_connection_string_api_key.yaml index 77ae79939..db3d17bc4 100644 --- a/azure-quantum/tests/unit/recordings/test_workspace_auth_connection_string_api_key.yaml +++ b/azure-quantum/tests/unit/recordings/test_workspace_auth_connection_string_api_key.yaml @@ -19,7 +19,7 @@ interactions: string: '{"value": [{"containerUri": "https://mystorage.blob.core.windows.net/job-a9342dee-d4f5-11ee-8801-00155d699477?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a9342dee-d4f5-11ee-8801-00155d699477/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution", "shots": 100}, "metadata": + "arguments": [], "target_profile": "Base", "shots": 100}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a9342dee-d4f5-11ee-8801-00155d699477/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-02-26T22:23:37.824Z", "cancellationTime": null, @@ -4421,7 +4421,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-d7ae5d01-3818-11ef-9996-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d7ae5d01-3818-11ef-9996-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d7ae5d01-3818-11ef-9996-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:15:04.694844Z", "cancellationTime": null, @@ -4435,7 +4435,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-e90d0856-3818-11ef-a1e9-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e90d0856-3818-11ef-a1e9-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e90d0856-3818-11ef-a1e9-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:15:19.2522605Z", "cancellationTime": @@ -4449,7 +4449,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-f0a273c1-3818-11ef-8a50-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-f0a273c1-3818-11ef-8a50-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-f0a273c1-3818-11ef-8a50-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:15:35.501767Z", "cancellationTime": null, @@ -4463,7 +4463,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-fa4f6637-3818-11ef-b668-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fa4f6637-3818-11ef-b668-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fa4f6637-3818-11ef-b668-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:19:15.338052Z", "cancellationTime": null, @@ -4477,7 +4477,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-8c273531-3819-11ef-83a7-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-8c273531-3819-11ef-83a7-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-8c273531-3819-11ef-83a7-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:19:53.0735922Z", "cancellationTime": @@ -4855,7 +4855,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2e24ae34-3821-11ef-9d6b-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2e24ae34-3821-11ef-9d6b-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "2e18ee23-3821-11ef-b8a0-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2e24ae34-3821-11ef-9d6b-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -4870,7 +4870,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-3015589e-3821-11ef-b2f5-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-3015589e-3821-11ef-b2f5-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "2e18ee23-3821-11ef-b8a0-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-3015589e-3821-11ef-b2f5-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -4928,7 +4928,7 @@ interactions: "costEstimate": null, "itemType": "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-35cc60b8-4614-11ef-ace6-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-35cc60b8-4614-11ef-ace6-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-35cc60b8-4614-11ef-ace6-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-19T21:20:29.479526Z", "cancellationTime": null, @@ -5919,7 +5919,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-bea2b017-4859-11ef-a639-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-bea2b017-4859-11ef-a639-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-bea2b017-4859-11ef-a639-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-22T18:39:50.728164Z", "cancellationTime": null, @@ -5933,7 +5933,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-d236029b-4859-11ef-b698-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d236029b-4859-11ef-b698-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d236029b-4859-11ef-b698-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-22T18:40:41.9166134Z", "cancellationTime": @@ -13881,7 +13881,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-8481798b-5420-11ef-ade6-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-8481798b-5420-11ef-ade6-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-8481798b-5420-11ef-ade6-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:20:22.836962Z", "cancellationTime": null, @@ -13895,7 +13895,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-90677961-5420-11ef-9db0-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-90677961-5420-11ef-9db0-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-90677961-5420-11ef-9db0-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:20:38.7618203Z", "cancellationTime": @@ -13909,7 +13909,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-995216c3-5420-11ef-a20e-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-995216c3-5420-11ef-a20e-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-995216c3-5420-11ef-a20e-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:20:58.03068Z", "cancellationTime": null, @@ -13923,7 +13923,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a54f4e9e-5420-11ef-b38e-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a54f4e9e-5420-11ef-b38e-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a54f4e9e-5420-11ef-b38e-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:22:57.552315Z", "cancellationTime": null, @@ -13937,7 +13937,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-ee9ebb16-5420-11ef-9c58-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-ee9ebb16-5420-11ef-9c58-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-ee9ebb16-5420-11ef-9c58-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:23:16.6083634Z", "cancellationTime": @@ -14317,7 +14317,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-ff13eed2-5421-11ef-8242-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-ff13eed2-5421-11ef-8242-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "fe81061a-5421-11ef-8448-a0b339c1da8f", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-ff13eed2-5421-11ef-8242-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -14332,7 +14332,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-00192398-5422-11ef-96a3-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00192398-5422-11ef-96a3-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "fe81061a-5421-11ef-8448-a0b339c1da8f", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00192398-5422-11ef-96a3-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -15175,7 +15175,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-0234ac46-5497-11ef-a3b8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-0234ac46-5497-11ef-a3b8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-0234ac46-5497-11ef-a3b8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:28:31.740081Z", "cancellationTime": null, @@ -15189,7 +15189,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-0abb6f17-5497-11ef-ab8a-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-0abb6f17-5497-11ef-ab8a-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-0abb6f17-5497-11ef-ab8a-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:28:45.6480111Z", "cancellationTime": @@ -15203,7 +15203,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-133166e1-5497-11ef-bdbb-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-133166e1-5497-11ef-bdbb-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-133166e1-5497-11ef-bdbb-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:29:07.723347Z", "cancellationTime": null, @@ -15217,7 +15217,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2123f886-5497-11ef-86b5-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2123f886-5497-11ef-86b5-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2123f886-5497-11ef-86b5-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:31:04.262787Z", "cancellationTime": null, @@ -15231,7 +15231,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-6df62256-5497-11ef-8a19-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6df62256-5497-11ef-8a19-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6df62256-5497-11ef-8a19-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:31:32.4414191Z", "cancellationTime": @@ -15611,7 +15611,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-6276fcb3-5498-11ef-afca-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6276fcb3-5498-11ef-afca-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "6254d3da-5498-11ef-acc6-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6276fcb3-5498-11ef-afca-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -15626,7 +15626,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-6427a034-5498-11ef-aa5d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6427a034-5498-11ef-aa5d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "6254d3da-5498-11ef-acc6-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6427a034-5498-11ef-aa5d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -17069,7 +17069,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-c00aacbb-5570-11ef-ac41-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-c00aacbb-5570-11ef-ac41-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-c00aacbb-5570-11ef-ac41-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-09T15:19:17.516006Z", "cancellationTime": null, @@ -17083,7 +17083,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-766230d5-5571-11ef-ab7b-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-766230d5-5571-11ef-ab7b-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-766230d5-5571-11ef-ab7b-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-08T10:32:17.3436342Z", "cancellationTime": @@ -17097,7 +17097,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-7efc7141-5571-11ef-b915-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-7efc7141-5571-11ef-b915-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-7efc7141-5571-11ef-b915-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-09T15:19:17.558959Z", "cancellationTime": null, @@ -19214,7 +19214,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-1644b25a-55c0-11ef-a49d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-1644b25a-55c0-11ef-a49d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-1644b25a-55c0-11ef-a49d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-09T15:27:40.63627Z", "cancellationTime": null, @@ -19228,7 +19228,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-cd717b34-55c0-11ef-8749-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cd717b34-55c0-11ef-8749-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cd717b34-55c0-11ef-8749-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-08T20:00:14.2798396Z", "cancellationTime": @@ -19242,7 +19242,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-d62332d6-55c0-11ef-b30b-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d62332d6-55c0-11ef-b30b-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d62332d6-55c0-11ef-b30b-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-09T15:27:44.322289Z", "cancellationTime": null, @@ -19256,7 +19256,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-8d1057f3-55c1-11ef-a7f1-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-8d1057f3-55c1-11ef-a7f1-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-8d1057f3-55c1-11ef-a7f1-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-08T20:07:33.604513Z", "cancellationTime": null, @@ -19270,7 +19270,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-ea28755a-55c1-11ef-a595-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-ea28755a-55c1-11ef-a595-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-ea28755a-55c1-11ef-a595-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-08T20:08:12.5960577Z", "cancellationTime": @@ -20705,7 +20705,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-6eaa2daa-56b8-11ef-9cba-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6eaa2daa-56b8-11ef-9cba-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6eaa2daa-56b8-11ef-9cba-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:33:02.587466Z", "cancellationTime": null, @@ -20719,7 +20719,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-7e35c555-56b8-11ef-8219-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-7e35c555-56b8-11ef-8219-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-7e35c555-56b8-11ef-8219-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:33:14.5053569Z", "cancellationTime": @@ -20733,7 +20733,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-863ff6e7-56b8-11ef-880e-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-863ff6e7-56b8-11ef-880e-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-863ff6e7-56b8-11ef-880e-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:35:32.12508Z", "cancellationTime": null, @@ -20747,7 +20747,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-e034b938-56b8-11ef-86fc-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e034b938-56b8-11ef-86fc-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e034b938-56b8-11ef-86fc-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:37:48.034727Z", "cancellationTime": null, @@ -20761,7 +20761,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-3b84c692-56b9-11ef-856f-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-3b84c692-56b9-11ef-856f-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-3b84c692-56b9-11ef-856f-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:38:31.7645649Z", "cancellationTime": @@ -21141,7 +21141,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-fde2cd19-56ba-11ef-9c64-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fde2cd19-56ba-11ef-9c64-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "fc8767e7-56ba-11ef-a368-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fde2cd19-56ba-11ef-9c64-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -21156,7 +21156,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-fea48b14-56ba-11ef-b1f5-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fea48b14-56ba-11ef-b1f5-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "fc8767e7-56ba-11ef-a368-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fea48b14-56ba-11ef-b1f5-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -22610,7 +22610,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-b0b98e0a-58ac-11ef-9a94-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-b0b98e0a-58ac-11ef-9a94-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-b0b98e0a-58ac-11ef-9a94-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:13:59.121053Z", "cancellationTime": null, @@ -22624,7 +22624,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-c341f7e9-58ac-11ef-8dae-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-c341f7e9-58ac-11ef-8dae-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-c341f7e9-58ac-11ef-8dae-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:14:21.5657136Z", "cancellationTime": @@ -22638,7 +22638,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-cc00bebf-58ac-11ef-89e0-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cc00bebf-58ac-11ef-89e0-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cc00bebf-58ac-11ef-89e0-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:15:50.828468Z", "cancellationTime": null, @@ -22652,7 +22652,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-16db3edc-58ad-11ef-939d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-16db3edc-58ad-11ef-939d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-16db3edc-58ad-11ef-939d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:18:23.313515Z", "cancellationTime": null, @@ -22666,7 +22666,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-620e870b-58ad-11ef-8b9d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-620e870b-58ad-11ef-8b9d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-620e870b-58ad-11ef-8b9d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:18:45.8191432Z", "cancellationTime": @@ -23046,7 +23046,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-983fc9e4-58b0-11ef-90d3-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-983fc9e4-58b0-11ef-90d3-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "981f03ce-58b0-11ef-9d5c-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-983fc9e4-58b0-11ef-90d3-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -23061,7 +23061,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-99f75403-58b0-11ef-aa5d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-99f75403-58b0-11ef-aa5d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "981f03ce-58b0-11ef-9d5c-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-99f75403-58b0-11ef-aa5d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -23076,7 +23076,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-cb0ca80b-58b1-11ef-81b4-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cb0ca80b-58b1-11ef-81b4-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cb0ca80b-58b1-11ef-81b4-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:55:34.555673Z", "cancellationTime": null, @@ -23090,7 +23090,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-4268bc2c-58b2-11ef-8705-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-4268bc2c-58b2-11ef-8705-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-4268bc2c-58b2-11ef-8705-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:55:39.702152Z", "cancellationTime": null, @@ -24142,7 +24142,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-dfe5bd41-58b8-11ef-aac9-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-dfe5bd41-58b8-11ef-aac9-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-dfe5bd41-58b8-11ef-aac9-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:42:22.06896Z", "cancellationTime": null, @@ -24156,7 +24156,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2b457ce0-58b9-11ef-88c0-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2b457ce0-58b9-11ef-88c0-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2b457ce0-58b9-11ef-88c0-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:43:07.6808498Z", "cancellationTime": @@ -24170,7 +24170,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-33beebdc-58b9-11ef-9b7a-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-33beebdc-58b9-11ef-9b7a-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-33beebdc-58b9-11ef-9b7a-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:45:47.78021Z", "cancellationTime": null, @@ -24184,7 +24184,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a315a2b5-58b9-11ef-9cc8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a315a2b5-58b9-11ef-9cc8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a315a2b5-58b9-11ef-9cc8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:48:11.021995Z", "cancellationTime": null, @@ -24198,7 +24198,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-eed0732c-58b9-11ef-9334-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-eed0732c-58b9-11ef-9334-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-eed0732c-58b9-11ef-9334-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:48:35.7294285Z", "cancellationTime": @@ -24578,7 +24578,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-d5a018d1-58bc-11ef-9db8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d5a018d1-58bc-11ef-9db8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "d5806904-58bc-11ef-878b-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d5a018d1-58bc-11ef-9db8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -24593,7 +24593,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-d765ac8c-58bc-11ef-96e4-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d765ac8c-58bc-11ef-96e4-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "d5806904-58bc-11ef-878b-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d765ac8c-58bc-11ef-96e4-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -25436,7 +25436,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-e1d62987-58cc-11ef-9425-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e1d62987-58cc-11ef-9425-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e1d62987-58cc-11ef-9425-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:04:42.819675Z", "cancellationTime": null, @@ -25450,7 +25450,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-fb83e462-58cc-11ef-a393-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fb83e462-58cc-11ef-a393-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fb83e462-58cc-11ef-a393-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:04:57.6168267Z", "cancellationTime": @@ -25464,7 +25464,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-0429c78d-58cd-11ef-afe8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-0429c78d-58cd-11ef-afe8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-0429c78d-58cd-11ef-afe8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:05:49.956099Z", "cancellationTime": null, @@ -25478,7 +25478,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-297fba05-58cd-11ef-8fb8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-297fba05-58cd-11ef-8fb8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-297fba05-58cd-11ef-8fb8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:07:57.46738Z", "cancellationTime": null, @@ -25492,7 +25492,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-75282377-58cd-11ef-9fb6-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-75282377-58cd-11ef-9fb6-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-75282377-58cd-11ef-9fb6-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:08:21.6847989Z", "cancellationTime": @@ -25872,7 +25872,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-cb6a0695-58ce-11ef-b2de-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cb6a0695-58ce-11ef-b2de-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "cb4746a1-58ce-11ef-bcc4-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cb6a0695-58ce-11ef-b2de-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -25887,7 +25887,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-cd25c9b8-58ce-11ef-b9e9-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cd25c9b8-58ce-11ef-b9e9-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "cb4746a1-58ce-11ef-bcc4-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cd25c9b8-58ce-11ef-b9e9-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -26713,7 +26713,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-a1691dc5-58d4-11ef-b45d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a1691dc5-58d4-11ef-b45d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "a1477fbe-58d4-11ef-b0bc-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a1691dc5-58d4-11ef-b45d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -26728,7 +26728,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a30bddd5-58d4-11ef-aee6-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a30bddd5-58d4-11ef-aee6-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "a1477fbe-58d4-11ef-b0bc-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a30bddd5-58d4-11ef-aee6-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -27530,7 +27530,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-565d1fa1-59ae-11ef-b65b-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-565d1fa1-59ae-11ef-b65b-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution", "count": 20}, "metadata": + "arguments": [], "target_profile": "Base", "count": 20}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-565d1fa1-59ae-11ef-b65b-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-13T19:58:07.5504471Z", "cancellationTime": @@ -27544,7 +27544,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-68711e01-59ae-11ef-941a-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-68711e01-59ae-11ef-941a-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution", "count": 20}, "metadata": + "arguments": [], "target_profile": "Base", "count": 20}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-68711e01-59ae-11ef-941a-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-13T19:58:36.4716781Z", "cancellationTime": @@ -27558,7 +27558,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-784fda2e-59ae-11ef-ae33-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-784fda2e-59ae-11ef-ae33-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution", "count": 20}, "metadata": + "arguments": [], "target_profile": "Base", "count": 20}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-784fda2e-59ae-11ef-ae33-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-13T19:59:04.5233903Z", "cancellationTime": @@ -33083,7 +33083,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-1beb537b-5b57-11ef-9b59-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-1beb537b-5b57-11ef-9b59-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-1beb537b-5b57-11ef-9b59-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:39:09.61421Z", "cancellationTime": null, @@ -33097,7 +33097,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-339f8542-5b57-11ef-8ea3-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-339f8542-5b57-11ef-8ea3-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-339f8542-5b57-11ef-8ea3-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:39:23.152035Z", "cancellationTime": null, @@ -33111,7 +33111,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-3a77d40f-5b57-11ef-896f-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-3a77d40f-5b57-11ef-896f-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-3a77d40f-5b57-11ef-896f-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:39:49.214447Z", "cancellationTime": null, @@ -33125,7 +33125,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-4ae26aa9-5b57-11ef-934d-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-4ae26aa9-5b57-11ef-934d-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-4ae26aa9-5b57-11ef-934d-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:42:20.731863Z", "cancellationTime": null, @@ -33139,7 +33139,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a6632768-5b57-11ef-8273-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a6632768-5b57-11ef-8273-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a6632768-5b57-11ef-8273-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:42:35.9932632Z", "cancellationTime": @@ -33519,7 +33519,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2c16ff6e-5b59-11ef-83ee-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2c16ff6e-5b59-11ef-83ee-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "2c0b3b35-5b59-11ef-a388-a0b339c1da8f", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2c16ff6e-5b59-11ef-83ee-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -33534,7 +33534,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2d3e3985-5b59-11ef-b6b4-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2d3e3985-5b59-11ef-b6b4-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "2c0b3b35-5b59-11ef-a388-a0b339c1da8f", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2d3e3985-5b59-11ef-b6b4-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -34673,7 +34673,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-df3cbd64-5b6d-11ef-ab7a-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-df3cbd64-5b6d-11ef-ab7a-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-df3cbd64-5b6d-11ef-ab7a-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:21:42.894854Z", "cancellationTime": null, @@ -34687,7 +34687,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-e6f25a57-5b6d-11ef-a19e-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e6f25a57-5b6d-11ef-a19e-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e6f25a57-5b6d-11ef-a19e-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:21:52.477052Z", "cancellationTime": null, @@ -34701,7 +34701,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-eec268e0-5b6d-11ef-9139-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-eec268e0-5b6d-11ef-9139-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-eec268e0-5b6d-11ef-9139-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:22:08.20523Z", "cancellationTime": null, @@ -34715,7 +34715,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-f69295dd-5b6d-11ef-b8e2-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-f69295dd-5b6d-11ef-b8e2-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-f69295dd-5b6d-11ef-b8e2-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:24:17.250647Z", "cancellationTime": null, @@ -34729,7 +34729,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-5053e42f-5b6e-11ef-94d1-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-5053e42f-5b6e-11ef-94d1-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-5053e42f-5b6e-11ef-94d1-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:24:50.1320386Z", "cancellationTime": @@ -35109,7 +35109,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-3ff9e5d1-5b6f-11ef-9665-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-3ff9e5d1-5b6f-11ef-9665-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "3ff0889e-5b6f-11ef-9e9a-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-3ff9e5d1-5b6f-11ef-9665-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -35124,7 +35124,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-40f421df-5b6f-11ef-a643-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-40f421df-5b6f-11ef-a643-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "3ff0889e-5b6f-11ef-9e9a-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-40f421df-5b6f-11ef-a643-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -36506,7 +36506,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-5cdb6c59-5c37-11ef-a1dd-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-5cdb6c59-5c37-11ef-a1dd-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-5cdb6c59-5c37-11ef-a1dd-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:24:14.371028Z", "cancellationTime": null, @@ -36520,7 +36520,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-6db37b81-5c37-11ef-9d5d-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6db37b81-5c37-11ef-9d5d-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6db37b81-5c37-11ef-9d5d-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:24:27.790279Z", "cancellationTime": null, @@ -36534,7 +36534,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-743c173c-5c37-11ef-a6ae-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-743c173c-5c37-11ef-a6ae-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-743c173c-5c37-11ef-a6ae-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:25:03.557461Z", "cancellationTime": null, @@ -36548,7 +36548,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-8ba3d234-5c37-11ef-9cf1-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-8ba3d234-5c37-11ef-9cf1-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-8ba3d234-5c37-11ef-9cf1-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:27:29.175662Z", "cancellationTime": null, @@ -36562,7 +36562,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-e6081f8b-5c37-11ef-abd7-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e6081f8b-5c37-11ef-abd7-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e6081f8b-5c37-11ef-abd7-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:27:49.5227563Z", "cancellationTime": @@ -36794,7 +36794,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-9d4ebac5-6589-11ef-bff4-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-9d4ebac5-6589-11ef-bff4-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Waiting", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-9d4ebac5-6589-11ef-bff4-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": null, "cancellationTime": null, "quantumComputingData": diff --git a/azure-quantum/tests/unit/recordings/test_workspace_list_jobs.yaml b/azure-quantum/tests/unit/recordings/test_workspace_list_jobs.yaml index 7edb1030e..92ec2a870 100644 --- a/azure-quantum/tests/unit/recordings/test_workspace_list_jobs.yaml +++ b/azure-quantum/tests/unit/recordings/test_workspace_list_jobs.yaml @@ -96,7 +96,7 @@ interactions: string: '{"value": [{"containerUri": "https://mystorage.blob.core.windows.net/job-a9342dee-d4f5-11ee-8801-00155d699477?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a9342dee-d4f5-11ee-8801-00155d699477/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution", "shots": 100}, "metadata": + "arguments": [], "target_profile": "Base", "shots": 100}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a9342dee-d4f5-11ee-8801-00155d699477/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-02-26T22:23:37.824Z", "cancellationTime": null, @@ -4498,7 +4498,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-d7ae5d01-3818-11ef-9996-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d7ae5d01-3818-11ef-9996-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d7ae5d01-3818-11ef-9996-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:15:04.694844Z", "cancellationTime": null, @@ -4512,7 +4512,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-e90d0856-3818-11ef-a1e9-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e90d0856-3818-11ef-a1e9-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e90d0856-3818-11ef-a1e9-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:15:19.2522605Z", "cancellationTime": @@ -4526,7 +4526,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-f0a273c1-3818-11ef-8a50-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-f0a273c1-3818-11ef-8a50-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-f0a273c1-3818-11ef-8a50-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:15:35.501767Z", "cancellationTime": null, @@ -4540,7 +4540,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-fa4f6637-3818-11ef-b668-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fa4f6637-3818-11ef-b668-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fa4f6637-3818-11ef-b668-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:19:15.338052Z", "cancellationTime": null, @@ -4554,7 +4554,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-8c273531-3819-11ef-83a7-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-8c273531-3819-11ef-83a7-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-8c273531-3819-11ef-83a7-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-02T02:19:53.0735922Z", "cancellationTime": @@ -4932,7 +4932,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2e24ae34-3821-11ef-9d6b-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2e24ae34-3821-11ef-9d6b-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "2e18ee23-3821-11ef-b8a0-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2e24ae34-3821-11ef-9d6b-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -4947,7 +4947,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-3015589e-3821-11ef-b2f5-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-3015589e-3821-11ef-b2f5-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "2e18ee23-3821-11ef-b8a0-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v1", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-3015589e-3821-11ef-b2f5-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -5005,7 +5005,7 @@ interactions: "costEstimate": null, "itemType": "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-35cc60b8-4614-11ef-ace6-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-35cc60b8-4614-11ef-ace6-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-35cc60b8-4614-11ef-ace6-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-19T21:20:29.479526Z", "cancellationTime": null, @@ -5996,7 +5996,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-bea2b017-4859-11ef-a639-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-bea2b017-4859-11ef-a639-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-bea2b017-4859-11ef-a639-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-22T18:39:50.728164Z", "cancellationTime": null, @@ -6010,7 +6010,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-d236029b-4859-11ef-b698-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d236029b-4859-11ef-b698-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d236029b-4859-11ef-b698-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-07-22T18:40:41.9166134Z", "cancellationTime": @@ -13958,7 +13958,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-8481798b-5420-11ef-ade6-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-8481798b-5420-11ef-ade6-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-8481798b-5420-11ef-ade6-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:20:22.836962Z", "cancellationTime": null, @@ -13972,7 +13972,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-90677961-5420-11ef-9db0-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-90677961-5420-11ef-9db0-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-90677961-5420-11ef-9db0-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:20:38.7618203Z", "cancellationTime": @@ -13986,7 +13986,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-995216c3-5420-11ef-a20e-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-995216c3-5420-11ef-a20e-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-995216c3-5420-11ef-a20e-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:20:58.03068Z", "cancellationTime": null, @@ -14000,7 +14000,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a54f4e9e-5420-11ef-b38e-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a54f4e9e-5420-11ef-b38e-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a54f4e9e-5420-11ef-b38e-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:22:57.552315Z", "cancellationTime": null, @@ -14014,7 +14014,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-ee9ebb16-5420-11ef-9c58-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-ee9ebb16-5420-11ef-9c58-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-ee9ebb16-5420-11ef-9c58-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-06T18:23:16.6083634Z", "cancellationTime": @@ -14394,7 +14394,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-ff13eed2-5421-11ef-8242-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-ff13eed2-5421-11ef-8242-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "fe81061a-5421-11ef-8448-a0b339c1da8f", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-ff13eed2-5421-11ef-8242-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -14409,7 +14409,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-00192398-5422-11ef-96a3-a0b339c1da8f?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-00192398-5422-11ef-96a3-a0b339c1da8f/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "fe81061a-5421-11ef-8448-a0b339c1da8f", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-00192398-5422-11ef-96a3-a0b339c1da8f/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -15252,7 +15252,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-0234ac46-5497-11ef-a3b8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-0234ac46-5497-11ef-a3b8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-0234ac46-5497-11ef-a3b8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:28:31.740081Z", "cancellationTime": null, @@ -15266,7 +15266,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-0abb6f17-5497-11ef-ab8a-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-0abb6f17-5497-11ef-ab8a-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-0abb6f17-5497-11ef-ab8a-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:28:45.6480111Z", "cancellationTime": @@ -15280,7 +15280,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-133166e1-5497-11ef-bdbb-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-133166e1-5497-11ef-bdbb-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-133166e1-5497-11ef-bdbb-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:29:07.723347Z", "cancellationTime": null, @@ -15294,7 +15294,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2123f886-5497-11ef-86b5-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2123f886-5497-11ef-86b5-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2123f886-5497-11ef-86b5-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:31:04.262787Z", "cancellationTime": null, @@ -15308,7 +15308,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-6df62256-5497-11ef-8a19-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6df62256-5497-11ef-8a19-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6df62256-5497-11ef-8a19-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-07T08:31:32.4414191Z", "cancellationTime": @@ -15688,7 +15688,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-6276fcb3-5498-11ef-afca-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6276fcb3-5498-11ef-afca-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "6254d3da-5498-11ef-acc6-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6276fcb3-5498-11ef-afca-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -15703,7 +15703,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-6427a034-5498-11ef-aa5d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6427a034-5498-11ef-aa5d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "6254d3da-5498-11ef-acc6-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6427a034-5498-11ef-aa5d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -17146,7 +17146,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-c00aacbb-5570-11ef-ac41-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-c00aacbb-5570-11ef-ac41-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-c00aacbb-5570-11ef-ac41-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-09T15:19:17.516006Z", "cancellationTime": null, @@ -17160,7 +17160,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-766230d5-5571-11ef-ab7b-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-766230d5-5571-11ef-ab7b-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-766230d5-5571-11ef-ab7b-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-08T10:32:17.3436342Z", "cancellationTime": @@ -17174,7 +17174,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-7efc7141-5571-11ef-b915-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-7efc7141-5571-11ef-b915-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-7efc7141-5571-11ef-b915-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-09T15:19:17.558959Z", "cancellationTime": null, @@ -19291,7 +19291,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-1644b25a-55c0-11ef-a49d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-1644b25a-55c0-11ef-a49d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-1644b25a-55c0-11ef-a49d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-09T15:27:40.63627Z", "cancellationTime": null, @@ -19305,7 +19305,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-cd717b34-55c0-11ef-8749-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cd717b34-55c0-11ef-8749-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cd717b34-55c0-11ef-8749-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-08T20:00:14.2798396Z", "cancellationTime": @@ -19319,7 +19319,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-d62332d6-55c0-11ef-b30b-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d62332d6-55c0-11ef-b30b-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d62332d6-55c0-11ef-b30b-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-09T15:27:44.322289Z", "cancellationTime": null, @@ -19333,7 +19333,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-8d1057f3-55c1-11ef-a7f1-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-8d1057f3-55c1-11ef-a7f1-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-8d1057f3-55c1-11ef-a7f1-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-08T20:07:33.604513Z", "cancellationTime": null, @@ -19347,7 +19347,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-ea28755a-55c1-11ef-a595-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-ea28755a-55c1-11ef-a595-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-ea28755a-55c1-11ef-a595-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-08T20:08:12.5960577Z", "cancellationTime": @@ -20782,7 +20782,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-6eaa2daa-56b8-11ef-9cba-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6eaa2daa-56b8-11ef-9cba-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6eaa2daa-56b8-11ef-9cba-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:33:02.587466Z", "cancellationTime": null, @@ -20796,7 +20796,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-7e35c555-56b8-11ef-8219-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-7e35c555-56b8-11ef-8219-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-7e35c555-56b8-11ef-8219-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:33:14.5053569Z", "cancellationTime": @@ -20810,7 +20810,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-863ff6e7-56b8-11ef-880e-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-863ff6e7-56b8-11ef-880e-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-863ff6e7-56b8-11ef-880e-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:35:32.12508Z", "cancellationTime": null, @@ -20824,7 +20824,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-e034b938-56b8-11ef-86fc-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e034b938-56b8-11ef-86fc-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e034b938-56b8-11ef-86fc-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:37:48.034727Z", "cancellationTime": null, @@ -20838,7 +20838,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-3b84c692-56b9-11ef-856f-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-3b84c692-56b9-11ef-856f-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-3b84c692-56b9-11ef-856f-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-10T01:38:31.7645649Z", "cancellationTime": @@ -21218,7 +21218,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-fde2cd19-56ba-11ef-9c64-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fde2cd19-56ba-11ef-9c64-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "fc8767e7-56ba-11ef-a368-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fde2cd19-56ba-11ef-9c64-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -21233,7 +21233,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-fea48b14-56ba-11ef-b1f5-f8e4e3ddcdd5?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fea48b14-56ba-11ef-b1f5-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "fc8767e7-56ba-11ef-a368-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fea48b14-56ba-11ef-b1f5-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -22687,7 +22687,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-b0b98e0a-58ac-11ef-9a94-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-b0b98e0a-58ac-11ef-9a94-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-b0b98e0a-58ac-11ef-9a94-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:13:59.121053Z", "cancellationTime": null, @@ -22701,7 +22701,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-c341f7e9-58ac-11ef-8dae-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-c341f7e9-58ac-11ef-8dae-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-c341f7e9-58ac-11ef-8dae-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:14:21.5657136Z", "cancellationTime": @@ -22715,7 +22715,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-cc00bebf-58ac-11ef-89e0-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cc00bebf-58ac-11ef-89e0-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cc00bebf-58ac-11ef-89e0-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:15:50.828468Z", "cancellationTime": null, @@ -22729,7 +22729,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-16db3edc-58ad-11ef-939d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-16db3edc-58ad-11ef-939d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-16db3edc-58ad-11ef-939d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:18:23.313515Z", "cancellationTime": null, @@ -22743,7 +22743,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-620e870b-58ad-11ef-8b9d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-620e870b-58ad-11ef-8b9d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-620e870b-58ad-11ef-8b9d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:18:45.8191432Z", "cancellationTime": @@ -23123,7 +23123,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-983fc9e4-58b0-11ef-90d3-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-983fc9e4-58b0-11ef-90d3-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "981f03ce-58b0-11ef-9d5c-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-983fc9e4-58b0-11ef-90d3-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -23138,7 +23138,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-99f75403-58b0-11ef-aa5d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-99f75403-58b0-11ef-aa5d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "981f03ce-58b0-11ef-9d5c-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-99f75403-58b0-11ef-aa5d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -23153,7 +23153,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-cb0ca80b-58b1-11ef-81b4-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cb0ca80b-58b1-11ef-81b4-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cb0ca80b-58b1-11ef-81b4-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:55:34.555673Z", "cancellationTime": null, @@ -23167,7 +23167,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-4268bc2c-58b2-11ef-8705-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-4268bc2c-58b2-11ef-8705-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-4268bc2c-58b2-11ef-8705-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T13:55:39.702152Z", "cancellationTime": null, @@ -24219,7 +24219,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-dfe5bd41-58b8-11ef-aac9-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-dfe5bd41-58b8-11ef-aac9-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-dfe5bd41-58b8-11ef-aac9-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:42:22.06896Z", "cancellationTime": null, @@ -24233,7 +24233,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2b457ce0-58b9-11ef-88c0-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2b457ce0-58b9-11ef-88c0-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2b457ce0-58b9-11ef-88c0-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:43:07.6808498Z", "cancellationTime": @@ -24247,7 +24247,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-33beebdc-58b9-11ef-9b7a-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-33beebdc-58b9-11ef-9b7a-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-33beebdc-58b9-11ef-9b7a-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:45:47.78021Z", "cancellationTime": null, @@ -24261,7 +24261,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a315a2b5-58b9-11ef-9cc8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a315a2b5-58b9-11ef-9cc8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a315a2b5-58b9-11ef-9cc8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:48:11.021995Z", "cancellationTime": null, @@ -24275,7 +24275,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-eed0732c-58b9-11ef-9334-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-eed0732c-58b9-11ef-9334-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-eed0732c-58b9-11ef-9334-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T14:48:35.7294285Z", "cancellationTime": @@ -24655,7 +24655,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-d5a018d1-58bc-11ef-9db8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d5a018d1-58bc-11ef-9db8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "d5806904-58bc-11ef-878b-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d5a018d1-58bc-11ef-9db8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -24670,7 +24670,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-d765ac8c-58bc-11ef-96e4-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-d765ac8c-58bc-11ef-96e4-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "d5806904-58bc-11ef-878b-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-d765ac8c-58bc-11ef-96e4-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -25513,7 +25513,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-e1d62987-58cc-11ef-9425-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e1d62987-58cc-11ef-9425-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e1d62987-58cc-11ef-9425-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:04:42.819675Z", "cancellationTime": null, @@ -25527,7 +25527,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-fb83e462-58cc-11ef-a393-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-fb83e462-58cc-11ef-a393-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-fb83e462-58cc-11ef-a393-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:04:57.6168267Z", "cancellationTime": @@ -25541,7 +25541,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-0429c78d-58cd-11ef-afe8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-0429c78d-58cd-11ef-afe8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-0429c78d-58cd-11ef-afe8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:05:49.956099Z", "cancellationTime": null, @@ -25555,7 +25555,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-297fba05-58cd-11ef-8fb8-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-297fba05-58cd-11ef-8fb8-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-297fba05-58cd-11ef-8fb8-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:07:57.46738Z", "cancellationTime": null, @@ -25569,7 +25569,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-75282377-58cd-11ef-9fb6-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-75282377-58cd-11ef-9fb6-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-75282377-58cd-11ef-9fb6-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "beginExecutionTime": "2024-08-12T17:08:21.6847989Z", "cancellationTime": @@ -25949,7 +25949,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-cb6a0695-58ce-11ef-b2de-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cb6a0695-58ce-11ef-b2de-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "cb4746a1-58ce-11ef-bcc4-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cb6a0695-58ce-11ef-b2de-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -25964,7 +25964,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-cd25c9b8-58ce-11ef-b9e9-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-cd25c9b8-58ce-11ef-b9e9-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "cb4746a1-58ce-11ef-bcc4-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-cd25c9b8-58ce-11ef-b9e9-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -26790,7 +26790,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-a1691dc5-58d4-11ef-b45d-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a1691dc5-58d4-11ef-b45d-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "a1477fbe-58d4-11ef-b0bc-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a1691dc5-58d4-11ef-b45d-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -26805,7 +26805,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a30bddd5-58d4-11ef-aee6-d4e98a5f985c?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a30bddd5-58d4-11ef-aee6-d4e98a5f985c/inputData?sv=PLACEHOLDER&sr=b&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&sp=rcw", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "a1477fbe-58d4-11ef-b0bc-d4e98a5f985c", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a30bddd5-58d4-11ef-aee6-d4e98a5f985c/outputData?sv=PLACEHOLDER&sig=PLACEHOLDER&se=2050-01-01T00%3A00%3A00Z&srt=co&ss=b&sp=racwl", @@ -27607,7 +27607,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-565d1fa1-59ae-11ef-b65b-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-565d1fa1-59ae-11ef-b65b-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution", "count": 20}, "metadata": + "arguments": [], "target_profile": "Base", "count": 20}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-565d1fa1-59ae-11ef-b65b-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-13T19:58:07.5504471Z", "cancellationTime": @@ -27621,7 +27621,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-68711e01-59ae-11ef-941a-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-68711e01-59ae-11ef-941a-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution", "count": 20}, "metadata": + "arguments": [], "target_profile": "Base", "count": 20}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-68711e01-59ae-11ef-941a-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-13T19:58:36.4716781Z", "cancellationTime": @@ -27635,7 +27635,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-784fda2e-59ae-11ef-ae33-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-784fda2e-59ae-11ef-ae33-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution", "count": 20}, "metadata": + "arguments": [], "target_profile": "Base", "count": 20}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-784fda2e-59ae-11ef-ae33-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-13T19:59:04.5233903Z", "cancellationTime": @@ -33160,7 +33160,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-1beb537b-5b57-11ef-9b59-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-1beb537b-5b57-11ef-9b59-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-1beb537b-5b57-11ef-9b59-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:39:09.61421Z", "cancellationTime": null, @@ -33174,7 +33174,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-339f8542-5b57-11ef-8ea3-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-339f8542-5b57-11ef-8ea3-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-339f8542-5b57-11ef-8ea3-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:39:23.152035Z", "cancellationTime": null, @@ -33188,7 +33188,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-3a77d40f-5b57-11ef-896f-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-3a77d40f-5b57-11ef-896f-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-3a77d40f-5b57-11ef-896f-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:39:49.214447Z", "cancellationTime": null, @@ -33202,7 +33202,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-4ae26aa9-5b57-11ef-934d-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-4ae26aa9-5b57-11ef-934d-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-4ae26aa9-5b57-11ef-934d-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:42:20.731863Z", "cancellationTime": null, @@ -33216,7 +33216,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-a6632768-5b57-11ef-8273-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-a6632768-5b57-11ef-8273-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-a6632768-5b57-11ef-8273-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-15T22:42:35.9932632Z", "cancellationTime": @@ -33596,7 +33596,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2c16ff6e-5b59-11ef-83ee-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2c16ff6e-5b59-11ef-83ee-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "2c0b3b35-5b59-11ef-a388-a0b339c1da8f", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2c16ff6e-5b59-11ef-83ee-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -33611,7 +33611,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-2d3e3985-5b59-11ef-b6b4-a0b339c1da8f?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-2d3e3985-5b59-11ef-b6b4-a0b339c1da8f/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "2c0b3b35-5b59-11ef-a388-a0b339c1da8f", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-2d3e3985-5b59-11ef-b6b4-a0b339c1da8f/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -34750,7 +34750,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-df3cbd64-5b6d-11ef-ab7a-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-df3cbd64-5b6d-11ef-ab7a-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-df3cbd64-5b6d-11ef-ab7a-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:21:42.894854Z", "cancellationTime": null, @@ -34764,7 +34764,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-e6f25a57-5b6d-11ef-a19e-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e6f25a57-5b6d-11ef-a19e-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e6f25a57-5b6d-11ef-a19e-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:21:52.477052Z", "cancellationTime": null, @@ -34778,7 +34778,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-eec268e0-5b6d-11ef-9139-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-eec268e0-5b6d-11ef-9139-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-eec268e0-5b6d-11ef-9139-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:22:08.20523Z", "cancellationTime": null, @@ -34792,7 +34792,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-f69295dd-5b6d-11ef-b8e2-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-f69295dd-5b6d-11ef-b8e2-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-f69295dd-5b6d-11ef-b8e2-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:24:17.250647Z", "cancellationTime": null, @@ -34806,7 +34806,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-5053e42f-5b6e-11ef-94d1-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-5053e42f-5b6e-11ef-94d1-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-5053e42f-5b6e-11ef-94d1-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-16T01:24:50.1320386Z", "cancellationTime": @@ -35186,7 +35186,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-3ff9e5d1-5b6f-11ef-9665-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-3ff9e5d1-5b6f-11ef-9665-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "3ff0889e-5b6f-11ef-9e9a-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-3ff9e5d1-5b6f-11ef-9665-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -35201,7 +35201,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-40f421df-5b6f-11ef-a643-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-40f421df-5b6f-11ef-a643-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "3ff0889e-5b6f-11ef-9e9a-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-40f421df-5b6f-11ef-a643-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -36583,7 +36583,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-5cdb6c59-5c37-11ef-a1dd-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-5cdb6c59-5c37-11ef-a1dd-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-5cdb6c59-5c37-11ef-a1dd-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:24:14.371028Z", "cancellationTime": null, @@ -36597,7 +36597,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-6db37b81-5c37-11ef-9d5d-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-6db37b81-5c37-11ef-9d5d-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-6db37b81-5c37-11ef-9d5d-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:24:27.790279Z", "cancellationTime": null, @@ -36611,7 +36611,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-743c173c-5c37-11ef-a6ae-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-743c173c-5c37-11ef-a6ae-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-743c173c-5c37-11ef-a6ae-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:25:03.557461Z", "cancellationTime": null, @@ -36625,7 +36625,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-8ba3d234-5c37-11ef-9cf1-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-8ba3d234-5c37-11ef-9cf1-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-8ba3d234-5c37-11ef-9cf1-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:27:29.175662Z", "cancellationTime": null, @@ -36639,7 +36639,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-e6081f8b-5c37-11ef-abd7-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-e6081f8b-5c37-11ef-abd7-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-e6081f8b-5c37-11ef-abd7-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-17T01:27:49.5227563Z", "cancellationTime": @@ -36874,7 +36874,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-9d4ebac5-6589-11ef-bff4-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-9d4ebac5-6589-11ef-bff4-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-9d4ebac5-6589-11ef-bff4-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T04:38:48.303946Z", "cancellationTime": null, @@ -37727,7 +37727,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-099cd134-65a6-11ef-9f03-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-099cd134-65a6-11ef-9f03-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-099cd134-65a6-11ef-9f03-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:28:56.090461Z", "cancellationTime": null, @@ -37741,7 +37741,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-1462d9d3-65a6-11ef-9374-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-1462d9d3-65a6-11ef-9374-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-1462d9d3-65a6-11ef-9374-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:29:12.3993829Z", "cancellationTime": @@ -37755,7 +37755,7 @@ interactions: "Job"}, {"containerUri": "https://mystorage.blob.core.windows.net/job-1a24c3d2-65a6-11ef-830c-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-1a24c3d2-65a6-11ef-830c-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-1a24c3d2-65a6-11ef-830c-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:29:27.447957Z", "cancellationTime": null, @@ -37769,7 +37769,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-259dfcee-65a6-11ef-9cdc-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-259dfcee-65a6-11ef-9cdc-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-259dfcee-65a6-11ef-9cdc-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T04:40:34.952423Z", "cancellationTime": null, @@ -37783,7 +37783,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-da2ac7f1-65a6-11ef-98dc-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-da2ac7f1-65a6-11ef-98dc-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "BasicExecution"}, "metadata": null, + "arguments": [], "target_profile": "Base"}, "metadata": null, "sessionId": null, "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-da2ac7f1-65a6-11ef-98dc-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "beginExecutionTime": "2024-08-29T01:34:44.6744391Z", "cancellationTime": @@ -38163,7 +38163,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-471a7b02-65d3-11ef-a388-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-471a7b02-65d3-11ef-a388-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "470dd2a6-65d3-11ef-9935-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-471a7b02-65d3-11ef-a388-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", @@ -38178,7 +38178,7 @@ interactions: "https://mystorage.blob.core.windows.net/job-481a5adb-65d3-11ef-b0bc-f8e4e3ddcdd5?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", "inputDataUri": "https://mystorage.blob.core.windows.net/job-481a5adb-65d3-11ef-b0bc-f8e4e3ddcdd5/inputData?sv=PLACEHOLDER&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sr=b&sp=rcw&sig=PLACEHOLDER", "inputDataFormat": "qir.v1", "inputParams": {"entryPoint": "ENTRYPOINT__main", - "arguments": [], "targetCapability": "AdaptiveExecution"}, "metadata": null, + "arguments": [], "target_profile": "Adaptive_RI"}, "metadata": null, "sessionId": "470dd2a6-65d3-11ef-9935-f8e4e3ddcdd5", "status": "Succeeded", "jobType": "QuantumComputing", "outputDataFormat": "microsoft.quantum-results.v2", "outputDataUri": "https://mystorage.blob.core.windows.net:443/job-481a5adb-65d3-11ef-b0bc-f8e4e3ddcdd5/outputData?sv=PLACEHOLDER&ss=b&srt=co&spr=https&st=2000-01-01T00%3A00%3A00Z&se=2050-01-01T00%3A00%3A00Z&sp=rwlac&sig=PLACEHOLDER", diff --git a/azure-quantum/tests/unit/test_qiskit.py b/azure-quantum/tests/unit/test_qiskit.py index 0bf1e7ebb..fc4ab323a 100644 --- a/azure-quantum/tests/unit/test_qiskit.py +++ b/azure-quantum/tests/unit/test_qiskit.py @@ -199,15 +199,6 @@ def _5_qubit_superposition(self): circuit.measure([0], [0]) return circuit - def _endianness(self, pos=0): - self.assertLess(pos, 3) - qr = QuantumRegister(3) - cr = [ClassicalRegister(3) for _ in range(3)] - circuit = QuantumCircuit(qr, *cr, name=f"endian{pos}cr3") - circuit.x(pos) - circuit.measure(qr[pos], cr[pos][pos]) - return circuit - def _controlled_s(self): circuit = QuantumCircuit(3) circuit.t(0) @@ -282,7 +273,7 @@ def test_qir_to_qiskit_bitstring(self): self.assertEqual(AzureQuantumJob._qir_to_qiskit_bitstring(azure_register), bitstring) self.assertEqual(AzureQuantumJob._qir_to_qiskit_bitstring(azure_registers), " ".join( - f"{bit}10" for bit in reversed(bits) + f"{bit}10" for bit in bits )) self.assertEqual(AzureQuantumJob._qir_to_qiskit_bitstring(bitstring), bitstring) @@ -1845,20 +1836,29 @@ def test_qiskit_get_qci_qpu_targets(self): self.assertEqual("qir.v1", config.azure["input_data_format"]) self.assertEqual("microsoft.quantum-results.v2", backend._get_output_data_format()) - # @pytest.mark.parametrize("endian_pos, expectation", - # [(0,"000 000 001"), (1,"000 010 000"), (2,"100 000 000")] - # ) - @pytest.mark.qci + @pytest.mark.rigetti @pytest.mark.live_test - def test_qiskit_endianness_submit_to_qci( - self, endian_pos=0, expectation="000 000 001" + def test_qiskit_endianness_submit_to_rigetti( + self, expectation="000 000 001" ): workspace = self.create_workspace() provider = AzureQuantumProvider(workspace=workspace) - backend = provider.get_backend("qci.simulator") + backend = provider.get_backend("rigetti.sim.qvm") shots = 100 - circuit = self._endianness(pos=endian_pos) + qr = QuantumRegister(3) + cr = [ClassicalRegister(3) for _ in range(3)] + circuit = QuantumCircuit(qr, *cr, name="endian0cr3") + circuit.x(0) + circuit.measure(qr[0], cr[0][0]) + circuit.measure(qr[1], cr[0][1]) + circuit.measure(qr[1], cr[0][2]) + circuit.measure(qr[1], cr[1][0]) + circuit.measure(qr[1], cr[1][1]) + circuit.measure(qr[1], cr[1][2]) + circuit.measure(qr[2], cr[2][0]) + circuit.measure(qr[2], cr[2][1]) + circuit.measure(qr[2], cr[2][2]) circuit.metadata = {"some": "data"} qiskit_job = backend.run(circuit, shots=shots)