Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #131

Merged
merged 35 commits into from
Jun 14, 2022
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
fb711db
OpenMP parallelism for sz before Hacker's delite.
mitsuaki1987 Sep 28, 2021
de7a1a6
Forgot to delete debug message
mitsuaki1987 Sep 29, 2021
3e06677
OpenMP parallelism of sz for Hubbard(Sz conserved)
mitsuaki1987 Sep 30, 2021
c4af74c
dos2unix run.sh
yomichi Oct 1, 2021
a1acecf
update old links (QLMS) with new ones (issp-center-dev)
ultimatile Oct 9, 2021
4a0b635
sz OpenMP: Use explicit loop decomposition rather than "omp for"
mitsuaki1987 Nov 30, 2021
5b387ab
Update Parameters_for_time-evolution.rst
MasakiYama Dec 3, 2021
3f64bb9
Update Lanczos_ja.rst
MasakiYama Dec 7, 2021
bffeb1b
Update Lanczos_en.rst
MasakiYama Dec 7, 2021
9daef21
Update TPQ_en.rst
MasakiYama Dec 7, 2021
53ac412
Update Realtime_en.rst
MasakiYama Dec 7, 2021
bb15953
Merge pull request #124 from MasakiYama/master
k-yoshimi Dec 7, 2021
3c5c3f2
Merge branch 'develop' into sz_omp
mitsuaki1987 Dec 7, 2021
159b59e
Add Hubbard-Sz-unconserved test to check sz-OpenMP feature.
mitsuaki1987 Dec 7, 2021
12db97a
File mode for shell script should be 755
mitsuaki1987 Dec 7, 2021
2b170d2
Merge branch 'develop' into sz_omp
mitsuaki1987 Dec 7, 2021
f6d90c8
Merge pull request #123 from issp-center-dev/sz_omp
tmisawa Dec 9, 2021
9266082
BugFix : greenr2k+multi-orbital+TPQ/mVMC case
mitsuaki1987 Dec 23, 2021
c52763a
Checking R=0 for the left operator of each correlation.
mitsuaki1987 Jan 5, 2022
422fc05
change long int to long unsigned int
k-yoshimi Jan 11, 2022
29e64a4
Checking whether the required indices for the to-body Green function …
mitsuaki1987 Jan 11, 2022
1d9d3ea
Fix Typo
mitsuaki1987 Jan 11, 2022
8e3969d
Merge pull request #122 from ultimatile/update_link
k-yoshimi Mar 1, 2022
52cec28
bugfix for counting inteall interactions
k-yoshimi Apr 7, 2022
3c5ff49
update documents
k-yoshimi Apr 7, 2022
1de59c2
delete condition branch for interall
k-yoshimi Apr 14, 2022
cf67eb2
Merge pull request #125 from issp-center-dev/fix_sign
tmisawa Apr 14, 2022
9c96e87
add and modify condition branch for InterAll
k-yoshimi Apr 14, 2022
a9c76c8
change the line of for-loop and consider the condition, J!=L and I!=K.
k-yoshimi Apr 14, 2022
b3ebac6
Adaptive preconditioning must be applyed with shifting the diagonal t…
mitsuaki1987 Jun 10, 2022
96f59f5
Merge branch 'develop' of github.com:issp-center-dev/HPhi into develop
mitsuaki1987 Jun 10, 2022
7c1afc3
Merge pull request #127 from issp-center-dev/fix_interall
tmisawa Jun 10, 2022
035513e
update version info in manuals
k-yoshimi Jun 14, 2022
7895506
update manuals
k-yoshimi Jun 14, 2022
139ea8d
Merge branch 'develop' into release
k-yoshimi Jun 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
BugFix : greenr2k+multi-orbital+TPQ/mVMC case
The ordering of average and standard error is not the same as written in the comment.
mitsuaki1987 committed Dec 23, 2021
commit 92660825b3e1aac445c13783931d5fd26a4b8d75
8 changes: 7 additions & 1 deletion tool/greenr2k.F90
Original file line number Diff line number Diff line change
@@ -867,7 +867,13 @@ SUBROUTINE output_cor()
END DO
!
DO ik = 1, ikk
WRITE(fo,'(1000e15.5)') xk(ik), cor_ave(ik,1:6, 1:norb, 1:norb), cor_err(ik,1:6, 1:norb, 1:norb)
WRITE(fo,'(e15.5)',advance="no") xk(ik)
DO iorb = 1, norb
DO jorb = 1, norb
WRITE(fo,'(24e15.5)',advance="no") cor_ave(ik,1:6, jorb, iorb), cor_err(ik,1:6, jorb, iorb)
END DO
END DO
WRITE(fo,*)
END DO
!
CLOSE(fo)