-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'oksanaguba/homme/small-change-dss' into next (PR #1054)
Minor changes in indexing in homme communications: Instead of code like this ! SEAST do l=swest+max_corner_elem,swest+2*max_corner_elem-1 if(edge%getmap(l,ielem) /= -1) then !dir$ ivdep do k=1,vlyr v(np ,1 ,k)=MAX(v(np,1 ,k),edge%receive(kptr+k+edge%getmap(l,ielem))) enddo endif end do one can introduce a variable ! SEAST do l=swest+max_corner_elem,swest+2*max_corner_elem-1 getmapL = edge%getmap(l,ielem) if(getmapL /= -1) then !dir$ ivdep do k=1,vlyr v(np ,1 ,k)=MAX(v(np,1 ,k),edge%receive(kptr+k+getmapL)) enddo endif end do [BFB] - Bit-For-Bit Conflicts: components/homme/src/share/edge_mod_base.F90
- Loading branch information
Showing
1 changed file
with
102 additions
and
56 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