Skip to content

Commit

Permalink
Update changelog-dev.md
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillermoAbadLopez committed Aug 23, 2024
1 parent f74acc1 commit f4816ad
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions docs/releases/changelog-dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,15 +182,18 @@

[#770](https://github.com/qilimanjaro-tech/qililab/pull/770)

- Added `checkpoints` logic for calibration, to skip parts of the graph that are already good to go
- Added `checkpoints` logic for calibration, to skip parts of the graph that are already good to go.
This diagnose of the checkpoints starts from the first ones, until finds the first in each branch, that doesn't pass.

Example:

If \[i\] are notebooks and \[V\] or \[X\] are checkpoints that pass or not respectively, in a graph like:

\[0\] - \[1\] - \[V\] - \[3\] - \[4\] - \[X\] - \[5\], calibration would start from notebook 3
\[0\] - \[1\] - \[V\] - \[3\] - \[4\] - \[V\] - \[5\], calibration would start from notebook 5
\[0\] - \[1\] - \[X\] - \[3\] - \[4\] - \[.\] - \[5\], calibration would start from notebook 0
- `[0] - [1] - [V] - [3] - [4] - [X] - [5]`, calibration would start from notebook 3

- `[0] - [1] - [V] - [3] - [4] - [V] - [5]`, calibration would start from notebook 5

- `[0] - [1] - [X] - [3] - [4] - [.] - [5]`, calibration would start from notebook 0 (Notice that the second checkpoints is not checked, since the first one already fails)

[#777](https://github.com/qilimanjaro-tech/qililab/pull/777)

Expand Down

0 comments on commit f4816ad

Please sign in to comment.