Skip to content

Commit

Permalink
Frontier tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Anand Radhakrishnan committed Nov 11, 2024
1 parent ea836f1 commit 4debf59
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/simulation/m_ibm.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ contains

! @:ALLOCATE(ib_markers%sf(0:m, 0:n, 0:p))
@:ALLOCATE(levelset(0:m, 0:n, 0:p, num_ibs))
@:ALLOCATE(levelset_norm(0:m, 0:n, 0:p, num_ibs, 3))
@:ALLOCATE(levelset_norm(0:m, 0:n, 0:p, 1:num_ibs, 1:3))

Check warning on line 76 in src/simulation/m_ibm.fpp

View check run for this annotation

Codecov / codecov/patch

src/simulation/m_ibm.fpp#L75-L76

Added lines #L75 - L76 were not covered by tests

!$acc enter data copyin(gp_layers, num_gps, num_inner_gps)

Expand All @@ -93,8 +93,8 @@ contains
call s_find_num_ghost_points()

!$acc update device(num_gps, num_inner_gps)
@:ALLOCATE(ghost_points(num_gps))
@:ALLOCATE(inner_points(num_inner_gps))
@:ALLOCATE(ghost_points(1:num_gps))
@:ALLOCATE(inner_points(1:num_inner_gps))

Check warning on line 97 in src/simulation/m_ibm.fpp

View check run for this annotation

Codecov / codecov/patch

src/simulation/m_ibm.fpp#L96-L97

Added lines #L96 - L97 were not covered by tests

!$acc enter data copyin(ghost_points, inner_points)

Expand Down
2 changes: 1 addition & 1 deletion src/simulation/m_qbmm.fpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ contains

#:endif

@:ALLOCATE(momrhs(3, 0:2, 0:2, nterms, nb))
@:ALLOCATE(momrhs(1:3, 0:2, 0:2, 1:nterms, 1:nb))

Check warning on line 69 in src/simulation/m_qbmm.fpp

View check run for this annotation

Codecov / codecov/patch

src/simulation/m_qbmm.fpp#L69

Added line #L69 was not covered by tests
momrhs = 0d0

! Assigns the required RHS moments for moment transport equations
Expand Down

0 comments on commit 4debf59

Please sign in to comment.