Skip to content

Commit 4dc9072

Browse files
Missed on comparison that NVHPC allows, but GNU does not
1 parent 5fc31be commit 4dc9072

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/simulation/m_compute_levelset.fpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ contains
691691
call f_distance_normals_3D_flat(gpu_ntrs(patch_id), gpu_trs_v, gpu_trs_n, patch_id, xyz_local, normals, distance)
692692

693693
! Get the shortest distance between the cell center and the interpolated model boundary
694-
if (interpolate) then
694+
if (interpolate == 1) then
695695
gp%levelset = f_interpolated_distance(gpu_interpolated_boundary_v(:, :, patch_id), total_vertices, xyz_local)
696696
else
697697
gp%levelset = distance

0 commit comments

Comments
 (0)