From af0afaa60f8efa98002eaa03d16f1763e8a166c3 Mon Sep 17 00:00:00 2001 From: Becky Dimock Date: Thu, 14 May 2026 11:40:13 -0500 Subject: [PATCH 1/3] Set up Box link --- scripts/config/api-html-artifacts.json | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/config/api-html-artifacts.json b/scripts/config/api-html-artifacts.json index b4ef47fc1e67..9dae83389d6d 100644 --- a/scripts/config/api-html-artifacts.json +++ b/scripts/config/api-html-artifacts.json @@ -90,6 +90,7 @@ "0.3": "https://ibm.box.com/shared/static/qiskfdazhq1dpxcl9b627x9yi60gncb4.zip" }, "qiskit-addon-aqc-tensor": { + "0.3": "https://ibm.box.com/shared/static/uzw1mzmypuqf2one830vdrvy27x2brvu.zip", "0.2": "https://ibm.box.com/shared/static/dhuyxtri674xvb3oky5rg019bd1a44hf.zip", "0.1": "https://ibm.box.com/shared/static/jnxlji7b6cguhbvp1txdi2vhym38wcnc.zip" }, From 5139e2296e0c2e2967576d193d842faa27d5a74c Mon Sep 17 00:00:00 2001 From: Becky Dimock Date: Mon, 6 Jul 2026 15:09:08 -0500 Subject: [PATCH 2/3] It's just 3 hrs --- docs/guides/c-extension-for-python.mdx | 4 +--- docs/guides/max-execution-time.ipynb | 11 ++--------- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/docs/guides/c-extension-for-python.mdx b/docs/guides/c-extension-for-python.mdx index 3c2c1543bc10..86fae5e0e3f9 100644 --- a/docs/guides/c-extension-for-python.mdx +++ b/docs/guides/c-extension-for-python.mdx @@ -111,9 +111,7 @@ dependencies = [ package-dir = {"" = "src"} ``` -As of Qiskit v2.4, the C API is not yet stable outside of minor versions (for example, the C API for v2.4.0 will be -compatible with v2.4.1 but not v2.5.0). In the future, we intend to extend -this stability to with major versions. For now, set Qiskit's runtime version in +Set Qiskit's runtime version in `project.dependencies` to match the minor version used at build time. In many pure-Python `setuptools`-based projects, it would be sufficient to have the diff --git a/docs/guides/max-execution-time.ipynb b/docs/guides/max-execution-time.ipynb index ea6edf2133ee..a6fd7fecd165 100644 --- a/docs/guides/max-execution-time.ipynb +++ b/docs/guides/max-execution-time.ipynb @@ -29,7 +29,7 @@ "id": "a0d6acc5-754c-4955-8cf0-5e3e12b9dd1f", "metadata": {}, "source": [ - "To ensure fairness, there is a [service-calculated](#max-QPU) maximum amount of time each Qiskit Runtime job can run. If a job exceeds this time limit, it is forcibly canceled and a `RuntimeJobMaxTimeoutError` exception is raised. You can also [set a maximum execution time](#max-job) on your jobs to help control costs.\n", + "To ensure fairness, no Qiskit Runtime job is allowed to run longer than three hours. If a job exceeds this time limit, it is forcibly canceled and a `RuntimeJobMaxTimeoutError` exception is raised. You can also [set a maximum execution time](#max-job) on your jobs to help control costs.\n", "\n", "\n", " \n", @@ -42,7 +42,7 @@ "The maximum execution time for a job is the smaller of these values:\n", "\n", "- The value set for `max_execution_time`\n", - "- The service-determined job timeout value\n", + "- The service's maximum timeout value (three hours)\n", "\n", "The `max_execution_time` value is based on *QPU usage*, not wall clock time.\n", "\n", @@ -67,13 +67,6 @@ "print(f\"QPU usage of job {job.job_id()} was {job.metrics()['usage']['quantum_seconds']} seconds\")\n", "```\n", "\n", - "\n", - "## Service-calculated maximum execution time\n", - "\n", - "The service calculates an appropriate job timeout value based on the input circuits and options. This service-calculated timeout is capped at 3 hours to ensure fair device usage. If a `max_execution_time` is also specified for the job, the lesser of the two values is used.\n", - "\n", - "For example, if you specify `max_execution_time=5000` (approximately 83 minutes), but the service determines it should not take more than 5 minutes (300 seconds) to execute the job, then the job is canceled after 5 minutes.\n", - "\n", "\n", "## Batch maximum execution time\n", "\n", From 074c824e16ec9f3b5573e3f4caf0cc59336d0e81 Mon Sep 17 00:00:00 2001 From: Becky Dimock Date: Mon, 6 Jul 2026 15:11:36 -0500 Subject: [PATCH 3/3] Update c-extension-for-python.mdx --- docs/guides/c-extension-for-python.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/guides/c-extension-for-python.mdx b/docs/guides/c-extension-for-python.mdx index 86fae5e0e3f9..3c2c1543bc10 100644 --- a/docs/guides/c-extension-for-python.mdx +++ b/docs/guides/c-extension-for-python.mdx @@ -111,7 +111,9 @@ dependencies = [ package-dir = {"" = "src"} ``` -Set Qiskit's runtime version in +As of Qiskit v2.4, the C API is not yet stable outside of minor versions (for example, the C API for v2.4.0 will be +compatible with v2.4.1 but not v2.5.0). In the future, we intend to extend +this stability to with major versions. For now, set Qiskit's runtime version in `project.dependencies` to match the minor version used at build time. In many pure-Python `setuptools`-based projects, it would be sufficient to have the