Compare commits

..

4 Commits
0.7.6 ... 0.7.8

Author SHA1 Message Date
e8201865eb chore(release): 0.7.8
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good
gitea-physics/deepdog/pipeline/tag This commit looks good
2024-02-28 18:41:32 -06:00
5f534a60cc fix: uses correct measurements
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good
2024-02-28 18:41:05 -06:00
ce90f6774b chore(release): 0.7.7
All checks were successful
gitea-physics/deepdog/pipeline/tag This commit looks good
gitea-physics/deepdog/pipeline/head This commit looks good
2024-02-28 18:34:13 -06:00
48e41cbd2c fix: fixes phase calculation issue with setting input array
All checks were successful
gitea-physics/deepdog/pipeline/head This commit looks good
2024-02-28 18:33:05 -06:00
3 changed files with 24 additions and 2 deletions

View File

@@ -2,6 +2,20 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.7.8](https://gitea.deepak.science:2222/physics/deepdog/compare/0.7.7...0.7.8) (2024-02-29)
### Bug Fixes
* uses correct measurements ([5f534a6](https://gitea.deepak.science:2222/physics/deepdog/commit/5f534a60cc7c4838fcacee11a7e58b97d34e154a))
### [0.7.7](https://gitea.deepak.science:2222/physics/deepdog/compare/0.7.6...0.7.7) (2024-02-29)
### Bug Fixes
* fixes phase calculation issue with setting input array ([48e41cb](https://gitea.deepak.science:2222/physics/deepdog/commit/48e41cbd2c58d4c4d2747822d618d7d55257643d))
### [0.7.6](https://gitea.deepak.science:2222/physics/deepdog/compare/0.7.5...0.7.6) (2024-02-28)

View File

@@ -195,7 +195,15 @@ class RealSpectrumRun:
self.use_pair_measurements = False
self.use_pair_phase_measurements = True
self.pair_phase_measurements = pair_phase_measurements
self.dot_pair_inputs = [
(measure.r1, measure.r2, measure.f)
for measure in self.pair_phase_measurements
]
self.dot_pair_inputs_array = (
pdme.measurement.input_types.dot_pair_inputs_to_array(
self.dot_pair_inputs
)
)
else:
self.use_pair_measurements = False
self.use_pair_phase_measurements = False

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "deepdog"
version = "0.7.6"
version = "0.7.8"
description = ""
authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]