forked from Qiskit/qiskit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial commit of Settings dataclass
- Loading branch information
Showing
3 changed files
with
60 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# This code is part of Qiskit. | ||
# | ||
# (C) Copyright IBM 2022. | ||
# | ||
# This code is licensed under the Apache License, Version 2.0. You may | ||
# obtain a copy of this license in the LICENSE.txt file in the root directory | ||
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Any modifications or derivative works of this code must retain this | ||
# copyright notice, and modified files need to carry a notice indicating | ||
# that they have been altered from the originals. | ||
"""Run options for Primitives.""" | ||
from __future__ import annotations | ||
|
||
from dataclasses import dataclass, field | ||
|
||
import numpy as np | ||
|
||
|
||
@dataclass | ||
class RunOptions: | ||
... | ||
|
||
|
||
@dataclass | ||
class Settings: | ||
run_options: RunOptions | ||
|
||
|
||
@dataclass | ||
class ReferenceRunOptions(RunOptions): | ||
shots: int | None = None | ||
seed: int | np.random.Generator | None = None | ||
|
||
|
||
@dataclass | ||
class ReferenceSettings(Settings): | ||
run_options: RunOptions = field(default_factory=ReferenceRunOptions) |