Compare commits
7 Commits
0.7.10
...
renovate/m
Author | SHA1 | Date | |
---|---|---|---|
0f44495a30 | |||
e5f7085324
|
|||
578481324b
|
|||
bf8ac9850d
|
|||
ab408b6412
|
|||
4aa0a6f234
|
|||
f9646e3386
|
15
CHANGELOG.md
15
CHANGELOG.md
@@ -2,6 +2,21 @@
|
|||||||
|
|
||||||
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.
|
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.8.1](https://gitea.deepak.science:2222/physics/deepdog/compare/0.8.0...0.8.1) (2024-04-28)
|
||||||
|
|
||||||
|
### [0.8.1](https://gitea.deepak.science:2222/physics/deepdog/compare/0.8.0...0.8.1) (2024-04-28)
|
||||||
|
|
||||||
|
## [0.8.0](https://gitea.deepak.science:2222/physics/deepdog/compare/0.7.10...0.8.0) (2024-04-28)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* fixes the spin qubit frequency phase shift calculation which had an index problem
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* fixes the spin qubit frequency phase shift calculation which had an index problem ([f9646e3](https://gitea.deepak.science:2222/physics/deepdog/commit/f9646e33868e1a0da8ab663230c0c692ac25bb74))
|
||||||
|
|
||||||
### [0.7.10](https://gitea.deepak.science:2222/physics/deepdog/compare/0.7.9...0.7.10) (2024-04-28)
|
### [0.7.10](https://gitea.deepak.science:2222/physics/deepdog/compare/0.7.9...0.7.10) (2024-04-28)
|
||||||
|
|
||||||
|
|
||||||
|
@@ -144,7 +144,7 @@ def get_a_result_fast_filter_tarucha_spin_qubit_pair_phase_only(input) -> int:
|
|||||||
* numpy.transpose(diffses1)
|
* numpy.transpose(diffses1)
|
||||||
)[:, :, :, 0]
|
)[:, :, :, 0]
|
||||||
)
|
)
|
||||||
- ps[:, :, 0, numpy.newaxis]
|
- ps[:, numpy.newaxis, :, 0]
|
||||||
) / (norms1**3)
|
) / (norms1**3)
|
||||||
alphses2 = (
|
alphses2 = (
|
||||||
(
|
(
|
||||||
@@ -156,7 +156,7 @@ def get_a_result_fast_filter_tarucha_spin_qubit_pair_phase_only(input) -> int:
|
|||||||
* numpy.transpose(diffses2)
|
* numpy.transpose(diffses2)
|
||||||
)[:, :, :, 0]
|
)[:, :, :, 0]
|
||||||
)
|
)
|
||||||
- ps[:, :, 0, numpy.newaxis]
|
- ps[:, numpy.newaxis, :, 0]
|
||||||
) / (norms2**3)
|
) / (norms2**3)
|
||||||
|
|
||||||
bses = (1 / numpy.pi) * (
|
bses = (1 / numpy.pi) * (
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "deepdog"
|
name = "deepdog"
|
||||||
version = "0.7.10"
|
version = "0.8.1"
|
||||||
description = ""
|
description = ""
|
||||||
authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]
|
authors = ["Deepak Mallubhotla <dmallubhotla+github@gmail.com>"]
|
||||||
|
|
||||||
@@ -15,7 +15,7 @@ tqdm = "^4.66.2"
|
|||||||
pytest = ">=6"
|
pytest = ">=6"
|
||||||
flake8 = "^4.0.1"
|
flake8 = "^4.0.1"
|
||||||
pytest-cov = "^4.1.0"
|
pytest-cov = "^4.1.0"
|
||||||
mypy = "^0.971"
|
mypy = "^0.991"
|
||||||
python-semantic-release = "^7.24.0"
|
python-semantic-release = "^7.24.0"
|
||||||
black = "^22.3.0"
|
black = "^22.3.0"
|
||||||
syrupy = "^4.0.8"
|
syrupy = "^4.0.8"
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
const pattern = /(\[tool\.poetry\]\nname = "deepdog"\nversion = ")(?<vers>\d+\.\d+\.\d)(")/mg;
|
const pattern = /(\[tool\.poetry\]\nname = "deepdog"\nversion = ")(?<vers>\d+\.\d+\.\d+)(")/mg;
|
||||||
|
|
||||||
module.exports.readVersion = function (contents) {
|
module.exports.readVersion = function (contents) {
|
||||||
const result = pattern.exec(contents);
|
const result = pattern.exec(contents);
|
||||||
|
Reference in New Issue
Block a user