-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from qiboteam/avoid_storing_h
Avoid storing hamiltonian at each iteration
- Loading branch information
Showing
16 changed files
with
74 additions
and
24 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
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,24 @@ | ||
{ | ||
"backend": "numpy", | ||
"platform": null, | ||
"nthreads": 1, | ||
"optimizer": "Powell", | ||
"tol": 1e-10, | ||
"nqubits": 11, | ||
"nlayers": 20, | ||
"output_folder": "bp_tests", | ||
"nboost": 2, | ||
"boost_frequency": 100, | ||
"dbi_steps": 1, | ||
"stepsize": 0.01, | ||
"optimize_dbi_step": false, | ||
"store_h": false, | ||
"hamiltonian": "XXZ", | ||
"seed": "1", | ||
"best_loss": -15.793532338989099, | ||
"true_ground_energy": -15.94339416470582, | ||
"success": false, | ||
"message": "Maximum number of function evaluations has been exceeded.", | ||
"energy": -15.78486757135421, | ||
"fluctuations": 1.2778472869243782 | ||
} |
Binary file not shown.
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
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,2 @@ | ||
#!/bin/bash | ||
python main.py --nqubits 5 --nlayers 1 --optimizer Powell --output_folder test --backend numpy --nboost 0 --dbi_steps 0 --boost_frequency 1000 |