@@ -703,7 +703,7 @@ contains
703703 real (kind (0d0 )) :: t_start, t_finish
704704 integer :: i, j, k, l, id !< Generic loop iterators
705705
706- call nvtxStartRange(" Compute_RHS " )
706+ call nvtxStartRange(" COMPUTE-RHS " )
707707
708708 call cpu_time(t_start)
709709 ! Association/ Population of Working Variables ======================
@@ -750,7 +750,7 @@ contains
750750 gm_alpha_qp%vf)
751751 call nvtxEndRange
752752
753- call nvtxStartRange(" RHS-MPI+BufPack " )
753+ call nvtxStartRange(" RHS-MPI+BUFPACK " )
754754 call s_populate_variables_buffers(q_prim_qp%vf, pb, mv)
755755 call nvtxEndRange
756756
@@ -764,7 +764,7 @@ contains
764764
765765 if (qbmm) call s_mom_inv(q_cons_qp%vf, q_prim_qp%vf, mom_sp, mom_3d, pb, rhs_pb, mv, rhs_mv, idwbuff(1 ), idwbuff(2 ), idwbuff(3 ), nbub)
766766
767- call nvtxStartRange(" Viscous " )
767+ call nvtxStartRange(" RHS-VISCOUS " )
768768 if (viscous) call s_get_viscous(qL_rsx_vf, qL_rsy_vf, qL_rsz_vf, &
769769 dqL_prim_dx_n, dqL_prim_dy_n, dqL_prim_dz_n, &
770770 qL_prim, &
@@ -776,7 +776,7 @@ contains
776776 idwbuff(1 ), idwbuff(2 ), idwbuff(3 ))
777777 call nvtxEndRange
778778
779- call nvtxStartRange(" Surface_Tension " )
779+ call nvtxStartRange(" RHS-SURFACE-TENSION " )
780780 if (surface_tension) call s_get_capilary(q_prim_qp%vf)
781781 call nvtxEndRange
782782 ! Dimensional Splitting Loop =======================================
@@ -858,7 +858,7 @@ contains
858858 irx%end = m; iry%end = n; irz%end = p
859859 ! ===============================================================
860860
861- call nvtxStartRange(" RHS_riemann_solver " )
861+ call nvtxStartRange(" RHS-RIEMANN-SOLVER " )
862862
863863 ! Computing Riemann Solver Flux and Source Flux =================
864864
@@ -882,7 +882,7 @@ contains
882882 ! Additional physics and source terms ==============================
883883
884884 ! RHS addition for advection source
885- call nvtxStartRange(" RHS_advection_source " )
885+ call nvtxStartRange(" RHS-ADVECTION-SRC " )
886886 call s_compute_advection_source_term(id, &
887887 rhs_vf, &
888888 q_cons_qp, &
@@ -891,14 +891,14 @@ contains
891891 call nvtxEndRange
892892
893893 ! RHS additions for hypoelasticity
894- call nvtxStartRange(" RHS_Hypoelasticity " )
894+ call nvtxStartRange(" RHS-HYPOELASTICITY " )
895895 if (hypoelasticity) call s_compute_hypoelastic_rhs(id, &
896896 q_prim_qp%vf, &
897897 rhs_vf)
898898 call nvtxEndRange
899899
900900 ! RHS additions for viscosity
901- call nvtxStartRange(" RHS_add_phys " )
901+ call nvtxStartRange(" RHS-ADD-PHYSICS " )
902902 if (viscous .or. surface_tension) then
903903 call s_compute_additional_physics_rhs(id, &
904904 q_prim_qp%vf, &
@@ -911,14 +911,16 @@ contains
911911 call nvtxEndRange
912912
913913 ! RHS additions for sub- grid bubbles
914- call nvtxStartRange(" RHS_bubbles" )
915- if (bubbles) call s_compute_bubbles_rhs(id, &
916- q_prim_qp%vf)
917- call nvtxEndRange
914+ if (bubbles) then
915+ call nvtxStartRange(" RHS-BUBBLES-COMPUTE" )
916+ call s_compute_bubbles_rhs(id, q_prim_qp%vf)
917+ call nvtxEndRange
918+ end if
918919
919920 ! RHS additions for qbmm bubbles
920- call nvtxStartRange(" RHS_qbmm" )
921- if (qbmm) call s_compute_qbmm_rhs(id, &
921+ if (qbmm) then
922+ call nvtxStartRange(" RHS-QBMM" )
923+ call s_compute_qbmm_rhs(id, &
922924 q_cons_qp%vf, &
923925 q_prim_qp%vf, &
924926 rhs_vf, &
@@ -927,14 +929,15 @@ contains
927929 rhs_pb, &
928930 mv, &
929931 rhs_mv)
930- call nvtxEndRange
932+ call nvtxEndRange
933+ end if
931934 ! END: Additional physics and source terms =========================
932935
933936 end do
934937 ! END: Dimensional Splitting Loop =================================
935938
936939 if (chemistry) then
937- call nvtxStartRange(" RHS_Chem_Advection " )
940+ call nvtxStartRange(" RHS-CHEM-ADVECTION " )
938941 call s_compute_chemistry_advection_flux(flux_n, rhs_vf)
939942 call nvtxEndRange
940943 end if
@@ -956,25 +959,29 @@ contains
956959
957960 ! Additional Physics and Source Temrs ==================================
958961 ! Additions for acoustic_source
959- call nvtxStartRange(" RHS_acoustic_src" )
960- if (acoustic_source) call s_acoustic_src_calculations(q_cons_qp%vf(1 :sys_size), &
962+ if (acoustic_source) then
963+ call nvtxStartRange(" RHS-ACOUSTIC-SRC" )
964+ call s_acoustic_src_calculations(q_cons_qp%vf(1 :sys_size), &
961965 q_prim_qp%vf(1 :sys_size), &
962966 t_step, &
963967 rhs_vf)
964- call nvtxEndRange
968+ call nvtxEndRange
969+ end if
965970
966971 ! Add bubles source term
967- call nvtxStartRange(" RHS_bubbles" )
968- if (bubbles .and. (.not. adap_dt) .and. (.not. qbmm)) call s_compute_bubble_source( &
969- q_cons_qp%vf(1 :sys_size), &
970- q_prim_qp%vf(1 :sys_size), &
971- t_step, &
972- rhs_vf)
973- call nvtxEndRange
972+ if (bubbles .and. (.not. adap_dt) .and. (.not. qbmm)) then
973+ call nvtxStartRange(" RHS-BUBBLES-SOURCE" )
974+ call s_compute_bubble_source( &
975+ q_cons_qp%vf(1 :sys_size), &
976+ q_prim_qp%vf(1 :sys_size), &
977+ t_step, &
978+ rhs_vf)
979+ call nvtxEndRange
980+ end if
974981
975982 if (chemistry) then
976983 if (chem_params%reactions) then
977- call nvtxStartRange(" RHS_Chem_Reactions " )
984+ call nvtxStartRange(" RHS-CHEM-REACTIONS " )
978985 call s_compute_chemistry_reaction_flux(rhs_vf, q_cons_qp%vf, q_prim_qp%vf)
979986 call nvtxEndRange
980987 end if
0 commit comments