Skip to content

Commit 7371da0

Browse files
Eric-Arellanokt474
andcommitted
Remove remaining qiskit.org links (Qiskit#1397)
* Remove remaining qiskit.org links * Update qiskit_ibm_runtime/provider_session.py Co-authored-by: Kevin Tian <[email protected]> --------- Co-authored-by: Kevin Tian <[email protected]>
1 parent e975e16 commit 7371da0

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

docs/tutorials/how-to-getting-started-with-estimator.ipynb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
}
4747
},
4848
"source": [
49-
"[Primitives](https://qiskit.org/ecosystem/ibm-runtime/primitives.html) are core functions that make it easier to build modular algorithms and applications. \n",
49+
"[Primitives](https://docs.quantum.ibm.com/run/primitives) are core functions that make it easier to build modular algorithms and applications. \n",
5050
"\n",
5151
"The initial release of Qiskit Runtime includes two primitives:\n",
5252
"\n",
@@ -115,7 +115,7 @@
115115
}
116116
},
117117
"source": [
118-
"For a basic expectation value calculation you will need at least one quantum circuit to prepare our system in a precise quantum state for study. Our examples all have circuits in them, but you can use Qiskit to create your own. To learn how to create circuits by using Qiskit, see the [Circuit basics tutorial](https://qiskit.org/documentation/tutorials/circuits/01_circuit_basics.html)."
118+
"For a basic expectation value calculation you will need at least one quantum circuit to prepare our system in a precise quantum state for study. Our examples all have circuits in them, but you can use Qiskit to create your own. To learn how to create circuits by using Qiskit, see [the documentation](https://docs.quantum.ibm.com/build/circuit-construction)."
119119
]
120120
},
121121
{
@@ -167,7 +167,7 @@
167167
}
168168
},
169169
"source": [
170-
"You will also need at least one observable to measure. Observables represent physical properties of a quantum system (such as energy or spin), and allow said properties to be measured (such as their expectation values) for a given state of our system. For simplicity, you can use the [SparsePauliOp class](https://qiskit.org/documentation/stubs/qiskit.quantum_info.SparsePauliOp.html#qiskit.quantum_info.SparsePauliOp) in Qiskit to define them, as illustrated in the following example."
170+
"You will also need at least one observable to measure. Observables represent physical properties of a quantum system (such as energy or spin), and allow said properties to be measured (such as their expectation values) for a given state of our system. For simplicity, you can use the [SparsePauliOp class](https://docs.quantum.ibm.com/api/qiskit/qiskit.quantum_info.SparsePauliOp) in Qiskit to define them, as illustrated in the following example."
171171
]
172172
},
173173
{
@@ -218,7 +218,7 @@
218218
},
219219
"source": [
220220
"<!-- vale IBMQuantum.Spelling = NO -->\n",
221-
"The next step is to create an instance of an `Estimator` class, which can be any of the subclasses that comply with the base specification. For simplicity, we will use Qiskit Terra's `qiskit.primitives.Estimator` class, based on the [Statevector construct](https://qiskit.org/documentation/stubs/qiskit.quantum_info.Statevector.html?highlight=statevector#qiskit.quantum_info.Statevector) (algebraic simulation).\n",
221+
"The next step is to create an instance of an `Estimator` class, which can be any of the subclasses that comply with the base specification. For simplicity, we will use Qiskit Terra's `qiskit.primitives.Estimator` class, based on the [Statevector construct](https://docs.quantum.ibm.com/api/qiskit/qiskit.quantum_info.Statevector) (algebraic simulation).\n",
222222
"<!-- vale IBMQuantum.Spelling = YES -->"
223223
]
224224
},
@@ -551,7 +551,7 @@
551551
"source": [
552552
"Since Qiskit Runtime `Estimator` is a managed service, you will first need to initialize your account. You can then select the simulator or real backend you want to use to calculate the expectation value.\n",
553553
"\n",
554-
"Follow the steps in the [getting started guide](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/getting_started.html) if you don't already have an account set up."
554+
"Follow the steps in the [set up documentation](https://docs.quantum.ibm.com/start/setup-channel) if you don't already have an account set up."
555555
]
556556
},
557557
{
@@ -788,7 +788,7 @@
788788
}
789789
},
790790
"source": [
791-
"You can use the [Options](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/stubs/qiskit_ibm_runtime.options.Options.html#qiskit_ibm_runtime.options.Options) class to specify different options."
791+
"You can use the [Options](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.options.Options) class to specify different options."
792792
]
793793
},
794794
{
@@ -1044,7 +1044,7 @@
10441044
"\n",
10451045
"If you don't specify a timeout value, it is set to the initial job's maximum execution time and is the smaller of these values:\n",
10461046
"\n",
1047-
"- The system limit (see [What is the maximum execution time for a Qiskit Runtime job?](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/faqs/max_execution_time.html)).\n",
1047+
"- The system limit (see [What is the maximum execution time for a Qiskit Runtime job?](https://docs.quantum.ibm.com/run/max-execution-time)).\n",
10481048
"- The `max_execution_time` defined by the program.\n",
10491049
"\n",
10501050
"After this time limit is reached, the session is permanently closed."
@@ -1366,9 +1366,9 @@
13661366
"id": "bf0fe74a",
13671367
"metadata": {},
13681368
"source": [
1369-
"You can find more details about the ``Estimator`` methods in the [Estimator API reference](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/stubs/qiskit_ibm_runtime.Estimator.html#qiskit_ibm_runtime.Estimator).\n",
1369+
"You can find more details about the ``Estimator`` methods in the [Estimator API reference](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.Estimator).\n",
13701370
"\n",
1371-
"And all the available options in the [Options API reference](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/stubs/qiskit_ibm_runtime.options.Options.html#qiskit_ibm_runtime.options.Options)."
1371+
"And all the available options in the [Options API reference](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.options.Options)."
13721372
]
13731373
},
13741374
{

docs/tutorials/how-to-getting-started-with-sampler.ipynb

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
}
4747
},
4848
"source": [
49-
"[Primitives](https://qiskit.org/ecosystem/ibm-runtime/primitives.html) are core functions that make it easier to build modular algorithms and applications. \n",
49+
"[Primitives](https://docs.quantum.ibm.com/run/primitives) are core functions that make it easier to build modular algorithms and applications. \n",
5050
"\n",
5151
"The initial release of Qiskit Runtime includes two primitives:\n",
5252
"\n",
@@ -115,7 +115,7 @@
115115
}
116116
},
117117
"source": [
118-
"You will need at least one quantum circuit to prepare our system in a precise quantum state for study. Our examples all have circuits in them, but you can use Qiskit to create your own. To learn how to create circuits by using Qiskit, see the [Circuit basics tutorial](https://qiskit.org/documentation/tutorials/circuits/01_circuit_basics.html)."
118+
"You will need at least one quantum circuit to prepare our system in a precise quantum state for study. Our examples all have circuits in them, but you can use Qiskit to create your own. To learn how to create circuits by using Qiskit, see the [circuit construction documentation](https://docs.quantum.ibm.com/build/circuit-construction)."
119119
]
120120
},
121121
{
@@ -492,7 +492,7 @@
492492
"source": [
493493
"Since Qiskit Runtime `Sampler` is a managed service, you will first need to initialize your account. You can then select the simulator or real backend you want to use to calculate the expectation value.\n",
494494
"\n",
495-
"Follow the steps in the [getting started guide](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/getting_started.html) if you don't already have an account set up."
495+
"Follow the steps in the [setup guide](https://docs.quantum.ibm.com/start/setup-channel) if you don't already have an account set up."
496496
]
497497
},
498498
{
@@ -719,7 +719,7 @@
719719
}
720720
},
721721
"source": [
722-
"You can use the [Options](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/stubs/qiskit_ibm_runtime.options.Options.html#qiskit_ibm_runtime.options.Options) class to specify different options."
722+
"You can use the [Options](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.options.Options) class to specify different options."
723723
]
724724
},
725725
{
@@ -973,7 +973,7 @@
973973
"\n",
974974
"If you don't specify a timeout value, it is set to the initial job's maximum execution time and is the smaller of these values:\n",
975975
"\n",
976-
"- The system limit (see [What is the maximum execution time for a Qiskit Runtime job?](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/faqs/max_execution_time.html)).\n",
976+
"- The system limit (see [What is the maximum execution time for a Qiskit Runtime job?](https://docs.quantum.ibm.com/run/max-execution-time)).\n",
977977
"- The `max_execution_time` defined by the program.\n",
978978
"\n",
979979
"After this time limit is reached, the session is permanently closed."
@@ -1305,9 +1305,9 @@
13051305
"id": "e5827c27",
13061306
"metadata": {},
13071307
"source": [
1308-
"You can find more details about the ``Sampler`` methods in the [Sampler API reference](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/stubs/qiskit_ibm_runtime.Sampler.html#qiskit_ibm_runtime.Sampler).\n",
1308+
"You can find more details about the ``Sampler`` methods in the [Sampler API reference](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.Sampler).\n",
13091309
"\n",
1310-
"And all the available options in the [Options API reference](https://qiskit.org/documentation/partners/qiskit_ibm_runtime/stubs/qiskit_ibm_runtime.options.Options.html#qiskit_ibm_runtime.options.Options)."
1310+
"And all the available options in the [Options API reference](https://docs.quantum.ibm.com/api/qiskit-ibm-runtime/qiskit_ibm_runtime.options.Options)."
13111311
]
13121312
},
13131313
{

qiskit_ibm_runtime/provider_session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def __init__(
6666
forcibly closed. Can be specified as seconds (int) or a string like "2h 30m 40s".
6767
This value must be in between 300 seconds and the
6868
`system imposed maximum
69-
<https://qiskit.org/documentation/partners/qiskit_ibm_runtime/faqs/max_execution_time.html>`_.
69+
<https://docs.quantum.ibm.com/run/max-execution-time>`_.
7070
7171
Raises:
7272
ValueError: If an input value is invalid.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
long_description_content_type="text/markdown",
4949
url="https://github.com/Qiskit/qiskit-ibm-runtime",
5050
author="Qiskit Development Team",
51-
author_email="hello@qiskit.org",
51+
author_email="qiskit@us.ibm.com",
5252
license="Apache 2.0",
5353
classifiers=[
5454
"Environment :: Console",

0 commit comments

Comments
 (0)