ローカル構成¶
Qiskitをインストールし実行できるようになった後で、特定のユースケースに合わせてQiskitのデフォルトの動作を変更するためのオプション構成手順がいくつかあります。
ユーザー構成ファイル¶
Qiskitのローカル設定の主なロケーションはユーザー設定ファイルです。 これは、Qiskitのデフォルトを変更するために使用できる ini 形式のファイルです。
例:
[default]
circuit_drawer = mpl
circuit_mpl_style = default
circuit_mpl_style_path = ~:~/.qiskit
state_drawer = hinton
transpile_optimization_level = 3
parallel = False
num_processes = 15
デフォルトでは、このファイルは ~/.qiskit/settings.conf
にありますが、使用されるパスは QISKIT_SETTINGS
環境変数でオーバーライドできます。 QISKIT_SETTINGS
が設定されている場合、その値はユーザー構成ファイルへのパスとして使用されます。
利用可能なオプション:
circuit_drawer
:これは、回路ドロワーqiskit.circuit.QuantumCircuit.draw()
およびqiskit.visualization.circuit_drawer()
のデフォルトのバックエンドを変更するために使用されます。 これは、latex
、mpl
、text
またはlatex_source
に設定でき、ouptut
kwargが明示的に設定されていない場合は、ドロワーバックエンドが使用されます。
circuit_mpl_style
:これは、回路ドロワーqiskit.circuit.QuantumCircuit.draw()
およびqiskit.visualization.circuit_drawer()
のmpl
出力バックエンドに使用されるデフォルトのスタイルシートです。default
またはbw
に設定できます。
circuit_mpl_style_path
: This can be used to set the path(s) to have the circuit drawer,qiskit.circuit.QuantumCircuit.draw()
orqiskit.visualization.circuit_drawer()
, use to look for json style sheets when using thempl
output mode.
state_drawer
: This is used to change the default backend for the state visualization draw methodsqiskit.quantum_info.Statevector.draw()
andqiskit.quantum_info.DensityMatrix.draw()
. It can be set torepr
,text
』,latex
,latex_source
,qsphere
,hinton
, or blochbloch
and when theoutput
kwarg is not explicitly set on thedraw()
method that output method will be used.
transpile_optimization_level
:これは0〜3の整数を取り、transpile()
およびexecute()
のデフォルトの最適化レベルを変更するために使用されます。
parallel
: This option takes a boolean value (eitherTrue
orFalse
) and is used to configure whether Python multiprocessing is enabled for operations that support running in parallel (for example transpilation of multipleQuantumCircuit
objects). The default setting in the user config file can be overriden by theQISKIT_PARALLEL
environment variable.
num_processes
: This option takes an integer value (> 0) that is used to specify the maximum number of parallel processes to launch for parallel operations if parallel execution is enabled. The default setting in the user config file can be overriden by theQISKIT_NUM_PROCS
environment variable.
環境変数¶
Qiskitのデフォルトの動作を変更するために設定できる環境変数もいくつかあります。
QISKIT_PARALLEL
: if this variable is set toTRUE
it will enable the use of Python multiprocessing to parallelize certain operations (for example transpilation over multiple circuits) in Qiskit Terra.
QISKIT_NUM_PROCS
: Specifies the maximum number of parallel processes to launch for parallel operations if parallel execution is enabled. It takes an integer > 0 as the expected value.
QISKIT_IBMQ_PROVIDER_LOG_LEVEL
:qiskit-ibmq-provider
モジュールに使用するログレベルを指定します。 無効なレベルが設定されている場合、ログレベルはデフォルトでWARNINGになります。 有効なログレベルは、DEBUG
、INFO
、WARNING
、ERROR
およびCRITICAL
(大文字と小文字を区別しない)です。 環境変数が設定されていない場合は、親ロガーのレベルが使用されます。これもデフォルトでWARNING
になります。
QISKIT_IBMQ_PROVIDER_LOG_FILE
:qiskit-ibmq-provider
から発信されたログメッセージから使用するログファイルの名前を指定します。 指定した場合、メッセージはファイルにのみ記録されます。 それ以外の場合、メッセージは標準エラー(通常は画面)に記録されます。
QISKIT_AQUA_MAX_GATES_PER_JOB
:ゲートの数に基づいて、Aquaで生成された回路を、バックエンドに送信される複数のジョブに分割するためのしきい値を設定するオプションのパラメーター。