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

Fix bounds error when assigning M matrices #490

Merged
merged 1 commit into from
Feb 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install \
sudo apt-get -y install \
gfortran \
libblas-dev \
liblapack-dev \
Expand Down
2 changes: 1 addition & 1 deletion src/readwrite.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2103,7 +2103,7 @@ subroutine w90_readwrite_chkpt_dist(dis_manifold, wannier_data, u_matrix, u_matr
ikl = 1
do ikg = 1, num_kpts
if (distk(ikg) == rank) then
m_matrix_local(:, :, :, ikl) = m_matrix(:, :, :, ikg)
m_matrix_local(:num_wann, :num_wann, :, ikl) = m_matrix(:, :, :, ikg)
ikl = ikl + 1
endif
enddo
Expand Down
Loading