Skip to content

Commit 08b5367

Browse files
committed
update calculation of NERSC node hours after 2025 benchmark
1 parent e5bf080 commit 08b5367

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

comp_mod/comp_mod.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
# defaults values for variable that may not be present in all files
4444
#NERSC_unitsPerFile = 880
45-
NERSC_unitsPerFile = 3. # Average node hours per file determined by Igal for GlueX data in 2022
45+
NERSC_unitsPerFile = 0.33 # Average node hours per file determined by Igal for 2023 GlueX data in 2025
4646
PSC_unitsPerFile = 156.8
4747

4848
# input values (with unit checks
@@ -160,7 +160,8 @@ class bcolors:
160160
print( ' Good run fraction: ' + str(goodRunFraction))
161161
print( ' Number of recon passes: ' + str(reconPasses))
162162
print( 'Number of analysis passes: ' + str(analysisPasses))
163-
print( ' Reconstruction CPU: ' + '%3.1f' % reconstructionTimeAllCores_Mhr + ' Mhr' + ' (=%2.0fk NERSC units or %2.0fM PSC units)' %(NERSC_units_total, PSC_units_total))
163+
#print( ' Reconstruction CPU: ' + '%3.1f' % reconstructionTimeAllCores_Mhr + ' Mhr' + ' (=%2.0fk NERSC units or %2.0fM PSC units)' %(NERSC_units_total, PSC_units_total))
164+
print( ' Reconstruction CPU: ' + '%3.1f' % reconstructionTimeAllCores_Mhr + ' Mhr' + ' (=%2.0fk NERSC units)' %(NERSC_units_total))
164165
print( ' Analysis CPU: ' + '%3.3f' % analysisCPU_Mhr + ' Mhr')
165166
print( ' Calibration CPU: ' + '%3.1f' % calibCPU_Mhr + ' Mhr')
166167
print( ' Offline Monitoring CPU: ' + '%3.1f' % offlineMonitoring_Mhr + ' Mhr')

0 commit comments

Comments
 (0)