@@ -744,7 +744,7 @@ contains
744744 integer :: i, c, j, k, l, q, ii, id !< Generic loop iterators
745745 integer :: term_index
746746
747- call nvtxStartRange(" Compute_RHS " )
747+ call nvtxStartRange(" RHS " )
748748
749749 ! Configuring Coordinate Direction Indexes =========================
750750 ix%beg = - buff_size; iy%beg = 0 ; iz%beg = 0
@@ -807,9 +807,8 @@ contains
807807 ix, iy, iz)
808808 call nvtxEndRange
809809
810- call nvtxStartRange(" RHS-MPI+BufPack " )
810+ call nvtxStartRange(" RHS-COMM " )
811811 call s_populate_variables_buffers(q_prim_qp%vf, pb, mv)
812-
813812 call nvtxEndRange
814813
815814 if (cfl_dt) then
@@ -822,7 +821,7 @@ contains
822821
823822 if (qbmm) call s_mom_inv(q_cons_qp%vf, q_prim_qp%vf, mom_sp, mom_3d, pb, rhs_pb, mv, rhs_mv, ix, iy, iz, nbub)
824823
825- call nvtxStartRange(" Viscous " )
824+ call nvtxStartRange(" RHS-VISCOUS " )
826825 if (any (Re_size > 0 )) call s_get_viscous(qL_rsx_vf, qL_rsy_vf, qL_rsz_vf, &
827826 dqL_prim_dx_n, dqL_prim_dy_n, dqL_prim_dz_n, &
828827 qL_prim, &
@@ -834,7 +833,7 @@ contains
834833 ix, iy, iz)
835834 call nvtxEndRange
836835
837- call nvtxStartRange(" Surface_Tension " )
836+ call nvtxStartRange(" RHS-SURFACE-TENSION " )
838837 if (.not. f_is_default(sigma)) call s_get_capilary(q_prim_qp%vf)
839838 call nvtxEndRange
840839
@@ -923,7 +922,7 @@ contains
923922 end if
924923 ix%end = m; iy%end = n; iz%end = p
925924 ! ===============================================================
926- call nvtxStartRange(" RHS_riemann_solver " )
925+ call nvtxStartRange(" RHS-RIEMANN-SOLVER " )
927926
928927 ! Computing Riemann Solver Flux and Source Flux =================
929928
@@ -947,7 +946,7 @@ contains
947946 ! Additional physics and source terms ==============================
948947
949948 ! RHS addition for advection source
950- call nvtxStartRange(" RHS_advection_source " )
949+ call nvtxStartRange(" RHS-ADVECTION-SOURCE " )
951950 call s_compute_advection_source_term(id, &
952951 rhs_vf, &
953952 q_cons_qp, &
@@ -956,14 +955,14 @@ contains
956955 call nvtxEndRange
957956
958957 ! RHS additions for hypoelasticity
959- call nvtxStartRange(" RHS_Hypoelasticity " )
958+ call nvtxStartRange(" RHS-HYPOELASTICITY " )
960959 if (hypoelasticity) call s_compute_hypoelastic_rhs(id, &
961960 q_prim_qp%vf, &
962961 rhs_vf)
963962 call nvtxEndRange
964963
965964 ! RHS additions for viscosity
966- call nvtxStartRange(" RHS_add_phys " )
965+ call nvtxStartRange(" RHS-ADD-PHYS " )
967966 if (any (Re_size > 0d0 ) .or. (.not. f_is_default(sigma))) then
968967 call s_compute_additional_physics_rhs(id, &
969968 q_prim_qp%vf, &
@@ -977,13 +976,13 @@ contains
977976 call nvtxEndRange
978977
979978 ! RHS additions for sub- grid bubbles
980- call nvtxStartRange(" RHS_bubbles " )
979+ call nvtxStartRange(" RHS-BUBBLES " )
981980 if (bubbles) call s_compute_bubbles_rhs(id, &
982981 q_prim_qp%vf)
983982 call nvtxEndRange
984983
985984 ! RHS additions for qbmm bubbles
986- call nvtxStartRange(" RHS_qbmm " )
985+ call nvtxStartRange(" RHS-QBMM " )
987986 if (qbmm) call s_compute_qbmm_rhs(id, &
988987 q_cons_qp%vf, &
989988 q_prim_qp%vf, &
@@ -998,7 +997,7 @@ contains
998997
999998 #:if chemistry
1000999 if (chem_params%advection) then
1001- call nvtxStartRange(" RHS_Chem_Advection " )
1000+ call nvtxStartRange(" RHS-CHEM-ADVECTION " )
10021001
10031002 #:for NORM_DIR, XYZ in [(1 , ' x' ), (2 , ' y' ), (3 , ' z' )]
10041003
@@ -1036,15 +1035,15 @@ contains
10361035
10371036 ! Additional Physics and Source Temrs ==================================
10381037 ! Additions for acoustic_source
1039- call nvtxStartRange(" RHS_acoustic_src " )
1038+ call nvtxStartRange(" RHS-ACOUSTIC-SRC " )
10401039 if (acoustic_source) call s_acoustic_src_calculations(q_cons_qp%vf(1 :sys_size), &
10411040 q_prim_qp%vf(1 :sys_size), &
10421041 t_step, &
10431042 rhs_vf)
10441043 call nvtxEndRange
10451044
10461045 ! Add bubles source term
1047- call nvtxStartRange(" RHS_bubbles " )
1046+ call nvtxStartRange(" RHS-BUBBLES-SRC " )
10481047 if (bubbles .and. (.not. adap_dt) .and. (.not. qbmm)) call s_compute_bubble_source( &
10491048 q_cons_qp%vf(1 :sys_size), &
10501049 q_prim_qp%vf(1 :sys_size), &
@@ -1054,7 +1053,7 @@ contains
10541053
10551054 #:if chemistry
10561055 if (chem_params%reactions) then
1057- call nvtxStartRange(" RHS_Chem_Reactions " )
1056+ call nvtxStartRange(" RHS-CHEM-REACTIONS " )
10581057 call s_compute_chemistry_reaction_flux(rhs_vf, q_cons_vf, q_prim_qp%vf)
10591058 call nvtxEndRange
10601059 end if
0 commit comments