Skip to content

Commit

Permalink
Added URL links back
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeunkim committed Aug 23, 2023
1 parent acb5ee9 commit c681760
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion qiskit/transpiler/passes/calibration/rx_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ class RXCalibrationBuilder(CalibrationBuilder):
References
* [1]: Gokhale et al. (2020), Optimized Quantum Compilation for
Near-Term Algorithms with OpenPulse. https://arxiv.org/abs/2004.11205
Near-Term Algorithms with OpenPulse.
`arXiv:2004.11205 <https://arxiv.org/abs/2004.11205>`
"""

def __init__(
Expand Down
4 changes: 2 additions & 2 deletions qiskit/transpiler/passes/optimization/normalize_rx_angle.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, target=None, resolution_in_radian=0):
"""NormalizeRXAngle initializer.
Args:
target (Target): The Target of the backend to run the circuit on.
target (Target): The :class:`~.Target` representing the target backend.
If the target contains SX and X calibrations, this pass will replace the
corresponding RX gates with SX and X gates.
resolution_in_radian (float): Resolution for RX rotation angle quantization.
Expand Down Expand Up @@ -78,7 +78,7 @@ def quantize_angles(self, qubit, original_angle):
return quantized_angle

def run(self, dag):
"""Run the NormalizeRXAngle pass on dag. This pass consists of three parts:
"""Run the NormalizeRXAngle pass on ``dag``. This pass consists of three parts:
normalize_rx_angles(), convert_to_hardware_sx_x(), quantize_rx_angles().
Args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ features:
Two new transpiler passes are added to generate single-pulse RX gate calibrations on the fly.
These single-pulse RX calibrations will reduce the gate time in half, as described in
P.Gokhale et al, Optimized Quantum Compilation for Near-Term Algorithms with OpenPulse
(2020), arXiv:2004.11205.
(2020), `arXiv:2004.11205 <https://arxiv.org/abs/2004.11205>`.
To reduce the amount of RX calibration data that needs to be generated,
qiskit.transpiler.passes.optimization.normalize_rx_angle.NormalizeRXAngle
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ddt>=1.2.0,!=1.4.0,!=1.4.3
# themselves. These are the requirements that are _only_ required for the docs
# build, and are not used by Terra itself.
Sphinx>=6.0,<7.2
qiskit-sphinx-theme~=1.14.0
qiskit-sphinx-theme~=1.15.0
sphinx-design>=0.2.0
nbsphinx~=0.9.2
nbconvert~=7.7.1
Expand Down

0 comments on commit c681760

Please sign in to comment.