Skip to content

Commit

Permalink
bump version + change docs noise op for each qubit
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles MOUSSA committed Nov 26, 2024
1 parent 7ca2fda commit 2acef56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/content/time_dependent.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ omega_param = FeatureParameter("omega")
td_generator = omega_param * (t * X(0) + t**2 * Y(1))

# Create parameterized HamEvo block
noise_operators = [X(0) + Y(0)]
noise_operators = [X(i) for i in td_generator.qubit_support]
hamevo = HamEvo(td_generator, t, noise_operators = noise_operators)

values = {"omega": torch.tensor(10.0), "duration": torch.tensor(1.0)}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ authors = [
]
requires-python = ">=3.9"
license = { text = "Apache 2.0" }
version = "1.8.0"
version = "1.9.0"
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
Expand Down

0 comments on commit 2acef56

Please sign in to comment.