기본 옵션
qiskit_ibm_runtime.options
IBM Quantum Compute (이전 명칭: Qiskit Runtime ) 프리미티브에 전달할 수 있는 옵션들입니다.
V2 기본형
SamplerV2 와 EstimatorV2 에는 각각 고유한 옵션이 있습니다. options 속성을 사용하여 옵션을 설정할 수 있습니다. 예를 들어,
from qiskit_ibm_runtime import QiskitRuntimeService, EstimatorV2
service = QiskitRuntimeService()
backend = service.least_busy(operational=True, simulator=False)
estimator = EstimatorV2(mode=backend)
estimator.options.resilience_level = 1update() 방법을 사용하여 일괄 업데이트를 수행할 수도 있습니다. 예를 들어,
from qiskit_ibm_runtime import QiskitRuntimeService, EstimatorV2
service = QiskitRuntimeService()
backend = service.least_busy(operational=True, simulator=False)
estimator = EstimatorV2(mode=backend)
estimator.options.update(resilience_level=1)V2 샘플러 및 V2 추정기 옵션에 대해서는 각각 및 EstimatorOptions 을 qiskit_ibm_runtime.options.SamplerOptions 참조하십시오.
참고
옵션을 지정하지 않으면 서버 기본값이 사용됩니다. 기본값은 변경될 수 있습니다. 최신 기본값은 이 현재 모듈의 설명서를 참조하세요.
클래스
기본 원시 옵션
EstimatorOptions | V2 견적기 옵션. |
SamplerOptions | V2 샘플러의 옵션입니다. |
등록 옵션
NoiseLearnerOptions | NoiseLearner.에 대한 옵션 |
DynamicalDecouplingOptions | 동적 디커플링(DD) 옵션. |
ResilienceOptionsV2 | V2 추정기의 복원력 옵션. |
LayerNoiseLearningOptions | 레이어 노이즈 학습 옵션. |
MeasureNoiseLearningOptions | 측정 노이즈 학습을 위한 옵션. |
PecOptions | 확률론적 오류 취소 완화 옵션. |
ZneOptions | 제로 노이즈 외삽 완화 옵션. |
TwirlingOptions | 회전 옵션. |
ExecutionOptionsV2 | V2 프리미티브에 대한 실행 옵션. |
SamplerExecutionOptionsV2 | 샘플러 프리미티브에 대해 확장합니다 ExecutionOptionsV2 . |
EnvironmentOptions | 실행 환경과 관련된 옵션입니다. |
SimulatorOptions | 시뮬레이터 옵션. |
이 페이지가 도움이 되었습니까?
GitHub에서 버그, 오타를 보고하거나 컨텐츠를 요청하십시오.