Skip to content

Speed up runTheMatrix.py by up to 7x - #51654

Open
felicepantaleo wants to merge 2 commits into
cms-sw:masterfrom
felicepantaleo:runTheMatrix-speedup-20_1_X
Open

Speed up runTheMatrix.py by up to 7x#51654
felicepantaleo wants to merge 2 commits into
cms-sw:masterfrom
felicepantaleo:runTheMatrix-speedup-20_1_X

Conversation

@felicepantaleo

@felicepantaleo felicepantaleo commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

runTheMatrix.py spends almost all of its time building the upgrade matrix at import, and most of that work is thrown away. Two independent commits, the first with byte-identical output, the second changing only what -l prints.

1. Do not build what is then discarded (no behaviour change)

relval_upgrade.py built a full step list for each of the ~1.5 M (upgrade key, fragment, special workflow) combinations and only afterwards asked condition() whether to keep it. Of the 69 condition() implementations only UpgradeWorkflow_DigiNoHLT looks at the step list, so UpgradeWorkflow gains a class attribute conditionUsesStepList (False by default, True on DigiNoHLT) and the caller now asks first and builds the list only for the flavors that are accepted. A flavor that customises no step ends up with the baseline list, which workflow_() drops as spurious anyway, so it is skipped.
MatrixUtil.merge() becomes iterative instead of recursive (same values, same key order, same result type, 5.78 M calls down to 2.07 M), a fragment step's dictionary is assembled the first time it is read rather than up front, Steps.__setitem__ and Matrix.__setitem__ no longer allocate a throwaway dict per insertion, and MatrixReader reuses a step's cmsDriver command across the workflows that run it (438708 step instances resolve to 37317 distinct step names, and no upgrade workflow carries overrides or an added command).

2. Build the step families on demand and expand only what -l selects

The upgrade matrix defines 2,388,313 step entries in 196 families, one per step name across every fragment and every upgrade key, and a run reads a few percent of them. Every name a family defines ends in _<step name>, so the family a name belongs to is known from the name alone and can be built the first time one of its names is looked up. After the change 210,362 entries are built eagerly and the rest only when asked for. MatrixReader additionally expands only the workflows given to -l, so a single selected workflow touches a single family.

Measurements

Host release CMSSW_20_1_X_2026-08-06-1200, single run each, same machine:

invocation master commit 1 commit 1+2
-n 26.04 s 8.96 s 4.53 s
-n -l 12834.0 25.68 s 8.95 s 4.08 s
-n -w upgrade -l 29634.0 30.37 s 11.03 s 4.07 s
-n -l limited 26.24 s 9.16 s 4.19 s
-n -w upgrade 30.31 s 11.34 s 8.83 s
--interactive 35.73 s 13.88 s 11.76 s

Peak resident memory for -n goes from 1.42 GB to 0.32 GB, and for -n -l <workflow> from 1.42 GB to 0.28 GB.

Behaviour changes

None in the first commit. In the second commit, and only when -l is given:

  • found a total of N workflows now reports the number of selected workflows, since the others are no longer expanded.
  • --checkInputs checks only the selected workflows, and the duplicate name notices from createWorkFlows cover only them.
  • --raw deliberately keeps the old unfiltered path.

The insertion order of the steps dictionary changes, because a family is appended when it is first touched. Nothing prints or depends on that order: the only two functions that iterate it, changeRefRelease and addForAll, act per entry.

Validation

Two independent checks against the unmodified release, run separately for each commit.

  • A state dump of every relval module's workflows (111,268 for the upgrade matrix alone, with names, overrides, step lists and insertion order) plus the entire steps dictionary (2,388,313 entries with per-step key order and values). The first commit reproduces it byte for byte including the steps insertion order; the second reproduces it byte for byte with workflows in insertion order and steps sorted by name.
  • An output harness of 36 invocations covering every matrix file, --show, -e, -l with single workflows and with predefined sets, --raw, --step1, -i, --maxSteps, --command, --use-rntuple, --noCafVeto, --dryRun, --checkInputs and --interactive, comparing 112 captured files. For the first commit 109 of 112 are byte-identical, the three exceptions being tracebacks that quote a source line number of MatrixReader.py, which grew by three lines. For the second commit the only further differences are the eight -l invocations, and in each of them the sole changed line is the found a total of N workflows count.

Ask a special upgrade workflow's condition() before building its step list, skip the
flavors that customise no step, make merge() iterative, build a fragment step's
dictionary on first read, and reuse a step's cmsDriver command across the workflows
that share it.

runTheMatrix.py -n goes from 26.0 s to 9.0 s and -n -w upgrade from 30.3 s to 11.3 s,
peak memory for -n from 1.42 GB to 0.77 GB. Output is byte identical over 36
invocations covering every matrix file, --show, --raw, --dryRun, --interactive and
--checkInputs.
…ly what -l selects

The upgrade matrix defines 2.4 M fragment steps in some 196 families and a run reads a
few percent of them. Every name a family defines ends in the step name, so a family is
built the first time one of its names is looked up, and readMatrix expands only the
workflows -l selects.

runTheMatrix.py -n goes from 9.0 s to 4.5 s and -n -l <workflow> from 9.0 s to 4.1 s,
peak memory for -n from 0.77 GB to 0.32 GB. With -l, "found a total of N workflows" now
reports the selected workflows, and the duplicate name notices cover only those.
@cmsbuild

cmsbuild commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

cms-bot internal usage

@felicepantaleo

Copy link
Copy Markdown
Contributor Author

@waredjeb @AuroraPerego fyi this is something we were looking at together last year.

@cmsbuild

cmsbuild commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

+code-checks

Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-51654/50518

@felicepantaleo

Copy link
Copy Markdown
Contributor Author

type ngt

@cmsbuild

cmsbuild commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

A new Pull Request was created by @felicepantaleo for master.

It involves the following packages:

  • Configuration/PyReleaseValidation (pdmv)

@AdrianoDee, @DickyChant, @antoniovagnerini, @cmsbuild, @kfjack, @miquork, @sroychow can you please review it and eventually sign? Thanks.
@Martin-Grunewald, @fabiocos, @makortel, @slomeo this is something you requested to watch as well.
@ftenchini, @mandrenguyen, @sextonkennedy you are the release manager for this.

cms-bot commands are listed here

@felicepantaleo

Copy link
Copy Markdown
Contributor Author

type improvements

@felicepantaleo

Copy link
Copy Markdown
Contributor Author

ignore tests-rejected with ib-failure

@felicepantaleo

Copy link
Copy Markdown
Contributor Author

@cmsbuild please test

@cmsbuild

cmsbuild commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

+1

Size: This PR adds an extra 100KB to repository
Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-1212c7/55192/summary.html
COMMIT: f302f8f
CMSSW: CMSSW_20_1_X_2026-08-07-2300/el9_amd64_gcc13
User test area: For local testing, you can use /cvmfs/cms-ci.cern.ch/week1/cms-sw/cmssw/51654/55192/install.sh to create a dev area with all the needed externals and cmssw changes.

Comparison Summary

Summary:

  • You potentially added 1 lines to the logs
  • ROOTFileChecks: Some differences in event products or their sizes found
  • Reco comparison results: 4 differences found in the comparisons
  • DQMHistoTests: Total files compared: 45
  • DQMHistoTests: Total histograms compared: 3589140
  • DQMHistoTests: Total failures: 4
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 3589118
  • DQMHistoTests: Total skipped: 18
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 44 files compared)
  • Checked 195 log files, 163 edm output root files, 45 DQM output files
  • TriggerResults: no differences found

@smuzaffar

Copy link
Copy Markdown
Contributor

enable gpu,threading,profiling,nano,rntuple,hlt_p2_timing

@smuzaffar

Copy link
Copy Markdown
Contributor

please test

@cmsbuild

cmsbuild commented Aug 8, 2026

Copy link
Copy Markdown
Contributor

-1

Failed Tests: RelVals-AMD_W7900
Size: This PR adds an extra 16KB to repository
Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-1212c7/55195/summary.html
COMMIT: f302f8f
CMSSW: CMSSW_20_1_X_2026-08-08-1100/el9_amd64_gcc13
Additional Tests: GPU,THREADING,PROFILING,NANO,RNTUPLE,HLT_P2_TIMING,AMD_MI300X,AMD_W7900,NVIDIA_H100,NVIDIA_L40S,NVIDIA_T4
User test area: For local testing, you can use /cvmfs/cms-ci.cern.ch/week1/cms-sw/cmssw/51654/55195/install.sh to create a dev area with all the needed externals and cmssw changes.

HLT P2 Timing: chart

Failed RelVals-AMD_W7900

  • 34434.40434434.404_TTbar_14TeV+Run4D121_Patatrack_PixelOnlyAlpaka_Profiling/step2_TTbar_14TeV+Run4D121_Patatrack_PixelOnlyAlpaka_Profiling.log

Comparison Summary

Summary:

  • You potentially added 1 lines to the logs
  • ROOTFileChecks: Some differences in event products or their sizes found
  • Reco comparison results: 0 differences found in the comparisons
  • DQMHistoTests: Total files compared: 45
  • DQMHistoTests: Total histograms compared: 3589140
  • DQMHistoTests: Total failures: 11
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 3589111
  • DQMHistoTests: Total skipped: 18
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 44 files compared)
  • Checked 195 log files, 163 edm output root files, 45 DQM output files
  • TriggerResults: no differences found

Nano size comparison Summary:

workflow id kb/ev ref kb/ev diff kb/ev ev/s/thd ref ev/s/thd diff rate mem/thd ref mem/thd
ScoutingNANOdata124Xrun3 2500.1501 0.772 0.772 0.000 ( +0.0% ) 35.34 33.62 +5.1% 1.568 1.572
ScoutingNANOmonitordata124Xrun3 2500.1502 0.862 0.862 0.000 ( +0.0% ) 15.11 14.27 +5.9% 1.422 1.432
ScoutingNANOdata130Xrun3 2500.1503 1.251 1.251 0.000 ( +0.0% ) 25.89 24.96 +3.7% 1.556 1.561
ScoutingNANOmonitordata130Xrun3 2500.1504 1.297 1.297 0.000 ( +0.0% ) 11.45 11.03 +3.8% 1.421 1.425
ScoutingNANOdata140Xrun3 2500.2307 1.101 1.101 0.000 ( +0.0% ) 31.00 29.89 +3.7% 1.586 1.585
L1ScoutingSelectionNANOdata140Xrun3 2500.2311 0.081 0.081 0.000 ( +0.0% ) 51.38 49.64 +3.5% 0.839 0.840
L1ScoutingNANOdata140Xrun3 2500.231 0.082 0.082 0.000 ( +0.0% ) 4.44 4.25 +4.6% 0.922 0.945
muDPGNANOBkg140Xrun3 2500.2403 2.840 2.840 0.000 ( +0.0% ) 21.56 17.68 +21.9% 1.161 1.165
hcalDPGNANO140Xrun3 2500.2404 486.015 486.015 0.000 ( +0.0% ) 1.20 1.14 +5.1% 1.720 1.701
hcalDPGCalibNANO140Xrun3 2500.2405 826.418 826.418 0.000 ( +0.0% ) 1.57 1.48 +6.2% 1.696 1.722
ScoutingNANOdata150Xrun3 2500.3307 1.738 1.738 0.000 ( +0.0% ) 32.92 31.52 +4.5% 1.450 1.578
L1ScoutingNANOdata150Xrun3 2500.3312 0.078 0.078 0.000 ( +0.0% ) 3.86 3.69 +4.8% 0.926 0.941
L1ScoutingSelectionNANOdata150Xrun3 2500.3313 0.078 0.078 0.000 ( +0.0% ) 28.29 25.86 +9.4% 0.944 0.952
L1ScoutingNANOdata160Xrun3 2500.4301 0.110 0.110 0.000 ( +0.0% ) 2.27 2.21 +2.7% 0.930 0.931
L1ScoutingSelectionNANOdata160Xrun3 2500.4302 0.113 0.113 0.000 ( +0.0% ) 20.21 18.91 +6.9% 0.944 0.965
DYToLL_M-50_13TeV_pythia8 2500.9101 14.970 14.970 0.000 ( +0.0% ) 7.59 6.90 +9.9% 1.099 1.137
DYToll01234Jets_5f_LO_MLM_Madgraph_LHE_13TeV 2500.9102 0.171 0.171 -0.001 ( -0.4% ) 3.04 3.47 -12.3% 0.850 0.863
TTbar_Pow_LHE_13TeV 2500.9103 0.110 0.110 0.000 ( +0.0% ) 2.94 2.78 +5.6% 0.842 0.865
TTbar_14TeV+Run4D121_HLTPhase2WithNano 3000.0001 11.637 11.637 0.000 ( +0.0% ) 0.12 0.11 +6.6% 4.152 4.289
TTbar_14TeV+Run4D121_HLTPhase2WithNanoValid 3000.0002 203.268 203.268 0.000 ( +0.0% ) 0.11 0.11 +3.7% 4.616 4.787
TTbar_14TeV+Run4D121_NGTScoutingWithNano 3000.0003 11.750 11.750 0.000 ( +0.0% ) 0.13 0.12 +3.6% 4.008 4.112
TTbar_14TeV+Run4D121_NGTScoutingWithNanoValid 3000.0004 196.975 196.975 0.000 ( +0.0% ) 0.12 0.12 +4.0% 4.502 4.572
TTbar_14TeV+Run4D121_L1NGTScoutingWithNanoValid 3000.0005 148.438 148.438 0.000 ( +0.0% ) 0.11 0.11 +2.4% 5.083 5.296

NANO Comparison Summary

Summary:

  • You potentially added 450 lines to the logs
  • Reco comparison results: 0 differences found in the comparisons
  • DQMHistoTests: Total files compared: 1
  • DQMHistoTests: Total histograms compared: 0
  • DQMHistoTests: Total failures: 0
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 0
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0 KiB( 0 files compared)
  • Checked 43 log files, 29 edm output root files, 1 DQM output files
  • TriggerResults: WARNING - found zero valid hltDiff JSON outputs to summarise (no outputs produced)

NVIDIA_H100 Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 60 differences found in the comparisons
  • DQMHistoTests: Total files compared: 7
  • DQMHistoTests: Total histograms compared: 172823
  • DQMHistoTests: Total failures: 7471
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 165352
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 6 files compared)
  • Checked 25 log files, 20 edm output root files, 7 DQM output files
  • TriggerResults: no differences found

NVIDIA_L40S Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 59 differences found in the comparisons
  • DQMHistoTests: Total files compared: 7
  • DQMHistoTests: Total histograms compared: 172823
  • DQMHistoTests: Total failures: 7729
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 165094
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 6 files compared)
  • Checked 25 log files, 20 edm output root files, 7 DQM output files
  • TriggerResults: no differences found

NVIDIA_T4 Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 60 differences found in the comparisons
  • DQMHistoTests: Total files compared: 7
  • DQMHistoTests: Total histograms compared: 172823
  • DQMHistoTests: Total failures: 8142
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 164681
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 6 files compared)
  • Checked 25 log files, 20 edm output root files, 7 DQM output files
  • TriggerResults: no differences found

RNTUPLE Comparison Summary

Summary:

  • You potentially added 1 lines to the logs
  • Reco comparison results: 0 differences found in the comparisons
  • DQMHistoTests: Total files compared: 45
  • DQMHistoTests: Total histograms compared: 3589140
  • DQMHistoTests: Total failures: 5
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 3589117
  • DQMHistoTests: Total skipped: 18
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 44 files compared)
  • Checked 195 log files, 4 edm output root files, 45 DQM output files
  • TriggerResults: no differences found

Max Memory Comparisons exceeding threshold NVIDIA_H100

@cms-sw/core-l2 , I found 1 workflow step(s) with memory usage exceeding the error threshold:

Expand to see workflows ...
  • Error: Workflow 34434.7503_TTbar_14TeV+Run4D121_HLTHeterogeneousValid step2 max memory diff -237.8 exceeds +/- 30.0 MiB

Max Memory Comparisons exceeding threshold RNTUPLE

@cms-sw/core-l2 , I found 120 workflow step(s) with memory usage exceeding the error threshold:

Expand to see workflows ...
  • Error: Workflow 4.22_RunCosmics2011A step4 max memory diff 187.5 exceeds +/- 30.0 MiB
  • Error: Workflow 4.53_RunPhoton2012B step3 max memory diff 786.2 exceeds +/- 30.0 MiB
  • Error: Workflow 4.53_RunPhoton2012B step2 max memory diff 448.8 exceeds +/- 30.0 MiB
  • Error: Workflow 5.1_TTbarFS step1 max memory diff 101.5 exceeds +/- 30.0 MiB
  • Error: Workflow 7.3_CosmicsSPLoose2018 step1 max memory diff 85.7 exceeds +/- 30.0 MiB
  • Error: Workflow 7.3_CosmicsSPLoose2018 step2 max memory diff 295.2 exceeds +/- 30.0 MiB
  • Error: Workflow 7.3_CosmicsSPLoose2018 step3 max memory diff 387.3 exceeds +/- 30.0 MiB
  • Error: Workflow 7.3_CosmicsSPLoose2018 step4 max memory diff 69.1 exceeds +/- 30.0 MiB
  • Error: Workflow 8.0_BeamHalo step3 max memory diff 387.4 exceeds +/- 30.0 MiB
  • Error: Workflow 8.0_BeamHalo step4 max memory diff 265.1 exceeds +/- 30.0 MiB
  • Error: Workflow 8.0_BeamHalo step2 max memory diff 296.4 exceeds +/- 30.0 MiB
  • Error: Workflow 8.0_BeamHalo step1 max memory diff 85.8 exceeds +/- 30.0 MiB
  • Error: Workflow 9.0_Higgs200ChargedTaus step1 max memory diff 106.8 exceeds +/- 30.0 MiB
  • Error: Workflow 9.0_Higgs200ChargedTaus step2 max memory diff 439.2 exceeds +/- 30.0 MiB
  • Error: Workflow 9.0_Higgs200ChargedTaus step3 max memory diff 477.9 exceeds +/- 30.0 MiB
  • Error: Workflow 25.0_TTbar step5 max memory diff 339.7 exceeds +/- 30.0 MiB
  • Error: Workflow 25.0_TTbar step2 max memory diff 450.7 exceeds +/- 30.0 MiB
  • Error: Workflow 25.0_TTbar step1 max memory diff 108.0 exceeds +/- 30.0 MiB
  • Error: Workflow 25.0_TTbar step3 max memory diff 314.9 exceeds +/- 30.0 MiB
  • Error: Workflow 135.4_ZEEFS_13 step4 max memory diff -77.3 exceeds +/- 30.0 MiB
  • Error: Workflow 135.4_ZEEFS_13 step1 max memory diff 87.8 exceeds +/- 30.0 MiB
  • Error: Workflow 136.731_RunSinglePh2016B step2 max memory diff 558.1 exceeds +/- 30.0 MiB
  • Error: Workflow 136.731_RunSinglePh2016B step3 max memory diff 513.3 exceeds +/- 30.0 MiB
  • Error: Workflow 136.793_RunDoubleEG2017C step3 max memory diff 787.7 exceeds +/- 30.0 MiB
  • Error: Workflow 136.793_RunDoubleEG2017C step2 max memory diff 572.8 exceeds +/- 30.0 MiB
  • Error: Workflow 136.874_RunEGamma2018C step2 max memory diff 583.3 exceeds +/- 30.0 MiB
  • Error: Workflow 136.874_RunEGamma2018C step3 max memory diff 397.5 exceeds +/- 30.0 MiB
  • Error: Workflow 139.001_RunMinimumBias2021 step3 max memory diff 500.1 exceeds +/- 30.0 MiB
  • Error: Workflow 139.001_RunMinimumBias2021 step2 max memory diff 438.3 exceeds +/- 30.0 MiB
  • Error: Workflow 140.56_RunHI2018 step2 max memory diff 210.3 exceeds +/- 30.0 MiB
  • Error: Workflow 1000.0_RunMinBias2011A step5 max memory diff -466.7 exceeds +/- 30.0 MiB
  • Error: Workflow 1000.0_RunMinBias2011A step3 max memory diff 284.5 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step3 max memory diff 175.7 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step7 max memory diff 32.8 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step6 max memory diff -59.6 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step2 max memory diff 424.5 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step5 max memory diff -61.2 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step11 max memory diff 33.4 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step9 max memory diff 32.8 exceeds +/- 30.0 MiB
  • Error: Workflow 1306.0_SingleMuPt1_UP15 step2 max memory diff 398.0 exceeds +/- 30.0 MiB
  • Error: Workflow 1306.0_SingleMuPt1_UP15 step1 max memory diff 85.7 exceeds +/- 30.0 MiB
  • Error: Workflow 1306.0_SingleMuPt1_UP15 step3 max memory diff 462.7 exceeds +/- 30.0 MiB
  • Error: Workflow 1330.0_ZMM_13 step1 max memory diff 94.4 exceeds +/- 30.0 MiB
  • Error: Workflow 1330.0_ZMM_13 step5 max memory diff -79.2 exceeds +/- 30.0 MiB
  • Error: Workflow 1330.0_ZMM_13 step2 max memory diff 396.4 exceeds +/- 30.0 MiB
  • Error: Workflow 1330.0_ZMM_13 step3 max memory diff 444.9 exceeds +/- 30.0 MiB
  • Error: Workflow 2022.0010001_RunTau2022D_10k step3 max memory diff 892.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2022.0010001_RunTau2022D_10k step2 max memory diff 576.8 exceeds +/- 30.0 MiB
  • Error: Workflow 2023.0020001_RunJetMET02023D_10k step2 max memory diff 614.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2023.0020001_RunJetMET02023D_10k step3 max memory diff 979.7 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0000001_RunZeroBias2024B_10k step3 max memory diff 791.7 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0000001_RunZeroBias2024B_10k step2 max memory diff 517.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0010001_RunJetMET02024C_10k step2 max memory diff 509.1 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0010001_RunJetMET02024C_10k step3 max memory diff 972.7 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0020001_RunEGamma02024D_10k step2 max memory diff 492.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0020001_RunEGamma02024D_10k step3 max memory diff 858.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0030001_RunDisplacedJet2024E_10k step2 max memory diff 518.1 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0030001_RunDisplacedJet2024E_10k step3 max memory diff 988.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0040001_RunPark2MuonLowMass02024F_10k step3 max memory diff 912.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0040001_RunPark2MuonLowMass02024F_10k step2 max memory diff 501.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0050001_RunBTagMu2024G_10k step3 max memory diff 1004.1 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0050001_RunBTagMu2024G_10k step2 max memory diff 512.1 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0060001_RunMuon02024H_10k step3 max memory diff 852.8 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0060001_RunMuon02024H_10k step2 max memory diff 493.9 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0070001_RunTau2024I_10k step2 max memory diff 496.1 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0070001_RunTau2024I_10k step3 max memory diff 934.0 exceeds +/- 30.0 MiB
  • Error: Workflow 2025.0000002_RunZeroBias2025B_10k step3 max memory diff 4920.9 exceeds +/- 30.0 MiB
  • Error: Workflow 2025.0000002_RunZeroBias2025B_10k step2 max memory diff 3286.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2025.0010001_RunJetMET02025C_10k step2 max memory diff 3556.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2025.0010001_RunJetMET02025C_10k step3 max memory diff 5194.6 exceeds +/- 30.0 MiB
  • Error: Workflow 11634.0_TTbar_14TeV+2022 step3 max memory diff 324.1 exceeds +/- 30.0 MiB
  • Error: Workflow 11634.0_TTbar_14TeV+2022 step1 max memory diff 110.0 exceeds +/- 30.0 MiB
  • Error: Workflow 11634.0_TTbar_14TeV+2022 step2 max memory diff 465.1 exceeds +/- 30.0 MiB
  • Error: Workflow 11634.0_TTbar_14TeV+2022 step5 max memory diff -73.1 exceeds +/- 30.0 MiB
  • Error: Workflow 12434.0_TTbar_14TeV+2023 step2 max memory diff 464.0 exceeds +/- 30.0 MiB
  • Error: Workflow 12434.0_TTbar_14TeV+2023 step3 max memory diff 322.9 exceeds +/- 30.0 MiB
  • Error: Workflow 12434.0_TTbar_14TeV+2023 step1 max memory diff 110.7 exceeds +/- 30.0 MiB
  • Error: Workflow 12434.0_TTbar_14TeV+2023 step5 max memory diff -77.8 exceeds +/- 30.0 MiB
  • Error: Workflow 12834.0_TTbar_14TeV+2024 step5 max memory diff -77.6 exceeds +/- 30.0 MiB
  • Error: Workflow 12834.0_TTbar_14TeV+2024 step2 max memory diff 462.5 exceeds +/- 30.0 MiB
  • Error: Workflow 12834.0_TTbar_14TeV+2024 step3 max memory diff 324.2 exceeds +/- 30.0 MiB
  • Error: Workflow 12834.0_TTbar_14TeV+2024 step1 max memory diff 108.3 exceeds +/- 30.0 MiB
  • Error: Workflow 12846.0_ZEE_14+2024 step3 max memory diff 295.5 exceeds +/- 30.0 MiB
  • Error: Workflow 12846.0_ZEE_14+2024 step5 max memory diff -86.2 exceeds +/- 30.0 MiB
  • Error: Workflow 12846.0_ZEE_14+2024 step2 max memory diff 447.0 exceeds +/- 30.0 MiB
  • Error: Workflow 12846.0_ZEE_14+2024 step1 max memory diff 107.8 exceeds +/- 30.0 MiB
  • Error: Workflow 13234.0_TTbar_14TeV+2022FS step1 max memory diff 88.8 exceeds +/- 30.0 MiB
  • Error: Workflow 14034.0_TTbar_14TeV+2023FS step1 max memory diff 88.8 exceeds +/- 30.0 MiB
  • Error: Workflow 16834.0_TTbar_14TeV+2025 step5 max memory diff -58.1 exceeds +/- 30.0 MiB
  • Error: Workflow 16834.0_TTbar_14TeV+2025 step3 max memory diff 329.5 exceeds +/- 30.0 MiB
  • Error: Workflow 16834.0_TTbar_14TeV+2025 step1 max memory diff 110.8 exceeds +/- 30.0 MiB
  • Error: Workflow 16834.0_TTbar_14TeV+2025 step2 max memory diff 467.0 exceeds +/- 30.0 MiB
  • Error: Workflow 17034.96_TTbar_14TeV+2025PU_HybridPUS1S2 step1 max memory diff 110.7 exceeds +/- 30.0 MiB
  • Error: Workflow 17034.96_TTbar_14TeV+2025PU_HybridPUS1S2 step4 max memory diff 487.9 exceeds +/- 30.0 MiB
  • Error: Workflow 17034.96_TTbar_14TeV+2025PU_HybridPUS1S2 step3 max memory diff 512.2 exceeds +/- 30.0 MiB
  • Error: Workflow 18434.0_TTbar_14TeV+2026 step2 max memory diff 2681.6 exceeds +/- 30.0 MiB
  • Error: Workflow 18434.0_TTbar_14TeV+2026 step3 max memory diff 2965.1 exceeds +/- 30.0 MiB
  • Error: Workflow 18434.0_TTbar_14TeV+2026 step1 max memory diff 110.8 exceeds +/- 30.0 MiB
  • Error: Workflow 18434.0_TTbar_14TeV+2026 step5 max memory diff -100.0 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.0_TTbar_14TeV+Run4D121 step3 max memory diff 1026.0 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.0_TTbar_14TeV+Run4D121 step2 max memory diff 493.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.0_TTbar_14TeV+Run4D121 step1 max memory diff 111.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.0_TTbar_14TeV+Run4D121 step5 max memory diff 659.3 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.75_TTbar_14TeV+Run4D121_HLT75e33Timing step2 max memory diff 241.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.75_TTbar_14TeV+Run4D121_HLT75e33Timing step1 max memory diff 111.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.911_TTbar_14TeV+Run4D121_DD4hep step2 max memory diff 500.0 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.911_TTbar_14TeV+Run4D121_DD4hep step3 max memory diff 1018.8 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.911_TTbar_14TeV+Run4D121_DD4hep step5 max memory diff 645.1 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.911_TTbar_14TeV+Run4D121_DD4hep step1 max memory diff 113.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34496.0_CloseByPGun_CE_E_Front_120um+Run4D121 step1 max memory diff 97.1 exceeds +/- 30.0 MiB
  • Error: Workflow 34496.0_CloseByPGun_CE_E_Front_120um+Run4D121 step3 max memory diff 979.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34496.0_CloseByPGun_CE_E_Front_120um+Run4D121 step2 max memory diff 458.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34496.0_CloseByPGun_CE_E_Front_120um+Run4D121 step5 max memory diff 631.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34500.0_CloseByPGun_CE_H_Coarse_Scint+Run4D121 step2 max memory diff 456.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34500.0_CloseByPGun_CE_H_Coarse_Scint+Run4D121 step5 max memory diff 629.3 exceeds +/- 30.0 MiB
  • Error: Workflow 34500.0_CloseByPGun_CE_H_Coarse_Scint+Run4D121 step1 max memory diff 93.0 exceeds +/- 30.0 MiB
  • Error: Workflow 34500.0_CloseByPGun_CE_H_Coarse_Scint+Run4D121 step3 max memory diff 984.1 exceeds +/- 30.0 MiB
  • Error: Workflow 34634.0_TTbar_14TeV+Run4D121PU step1 max memory diff 111.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34634.0_TTbar_14TeV+Run4D121PU step2 max memory diff -646.2 exceeds +/- 30.0 MiB
  • Error: Workflow 34634.0_TTbar_14TeV+Run4D121PU step3 max memory diff 982.1 exceeds +/- 30.0 MiB

@mmusich

mmusich commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

test parameters:

  • workflows = ph2_hlt

@mmusich

mmusich commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

@cmsbuild, please test

@cmsbuild

cmsbuild commented Aug 9, 2026

Copy link
Copy Markdown
Contributor

-1

Failed Tests: RelVals-AMD_MI300X
Size: This PR adds an extra 16KB to repository
Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-1212c7/55198/summary.html
COMMIT: f302f8f
CMSSW: CMSSW_20_1_X_2026-08-08-1100/el9_amd64_gcc13
Additional Tests: GPU,THREADING,PROFILING,NANO,RNTUPLE,HLT_P2_TIMING,AMD_MI300X,AMD_W7900,NVIDIA_H100,NVIDIA_L40S,NVIDIA_T4
User test area: For local testing, you can use /cvmfs/cms-ci.cern.ch/week1/cms-sw/cmssw/51654/55198/install.sh to create a dev area with all the needed externals and cmssw changes.

HLT P2 Timing: chart

Failed RelVals-AMD_MI300X

  • 34434.40434434.404_TTbar_14TeV+Run4D121_Patatrack_PixelOnlyAlpaka_Profiling/step2_TTbar_14TeV+Run4D121_Patatrack_PixelOnlyAlpaka_Profiling.log
  • 34434.75134434.751_TTbar_14TeV+Run4D121_HLT75e33TimingAlpaka/step2_TTbar_14TeV+Run4D121_HLT75e33TimingAlpaka.log
  • 34434.750334434.7503_TTbar_14TeV+Run4D121_HLTHeterogeneousValid/step2_TTbar_14TeV+Run4D121_HLTHeterogeneousValid.log

Comparison Summary

Summary:

  • You potentially added 1 lines to the logs
  • ROOTFileChecks: Some differences in event products or their sizes found
  • Reco comparison results: 0 differences found in the comparisons
  • DQMHistoTests: Total files compared: 59
  • DQMHistoTests: Total histograms compared: 4080730
  • DQMHistoTests: Total failures: 18
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 4080694
  • DQMHistoTests: Total skipped: 18
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 58 files compared)
  • Checked 249 log files, 203 edm output root files, 59 DQM output files
  • TriggerResults: no differences found

Nano size comparison Summary:

workflow id kb/ev ref kb/ev diff kb/ev ev/s/thd ref ev/s/thd diff rate mem/thd ref mem/thd
ScoutingNANOdata124Xrun3 2500.1501 0.772 0.772 0.000 ( +0.0% ) 33.85 33.62 +0.7% 1.537 1.572
ScoutingNANOmonitordata124Xrun3 2500.1502 0.862 0.862 0.000 ( +0.0% ) 13.96 14.27 -2.1% 1.396 1.432
ScoutingNANOdata130Xrun3 2500.1503 1.251 1.251 0.000 ( +0.0% ) 25.06 24.96 +0.4% 1.531 1.561
ScoutingNANOmonitordata130Xrun3 2500.1504 1.297 1.297 0.000 ( +0.0% ) 10.40 11.03 -5.7% 1.402 1.425
ScoutingNANOdata140Xrun3 2500.2307 1.101 1.101 0.000 ( +0.0% ) 29.79 29.89 -0.3% 1.562 1.585
L1ScoutingSelectionNANOdata140Xrun3 2500.2311 0.081 0.081 0.000 ( +0.0% ) 50.20 49.64 +1.1% 0.839 0.840
L1ScoutingNANOdata140Xrun3 2500.231 0.082 0.082 0.000 ( +0.0% ) 4.28 4.25 +0.6% 0.944 0.945
muDPGNANOBkg140Xrun3 2500.2403 2.840 2.840 0.000 ( +0.0% ) 18.77 17.68 +6.2% 1.162 1.165
hcalDPGNANO140Xrun3 2500.2404 486.015 486.015 0.000 ( +0.0% ) 1.17 1.14 +2.2% 1.727 1.701
hcalDPGCalibNANO140Xrun3 2500.2405 826.418 826.418 0.000 ( +0.0% ) 1.53 1.48 +3.1% 1.713 1.722
ScoutingNANOdata150Xrun3 2500.3307 1.738 1.738 0.000 ( +0.0% ) 31.53 31.52 +0.0% 1.552 1.578
L1ScoutingNANOdata150Xrun3 2500.3312 0.078 0.078 0.000 ( +0.0% ) 3.71 3.69 +0.7% 0.939 0.941
L1ScoutingSelectionNANOdata150Xrun3 2500.3313 0.078 0.078 0.000 ( +0.0% ) 26.63 25.86 +3.0% 0.950 0.952
L1ScoutingNANOdata160Xrun3 2500.4301 0.110 0.110 0.000 ( +0.0% ) 2.22 2.21 +0.6% 0.928 0.931
L1ScoutingSelectionNANOdata160Xrun3 2500.4302 0.113 0.113 0.000 ( +0.0% ) 19.78 18.91 +4.6% 0.963 0.965
DYToLL_M-50_13TeV_pythia8 2500.9101 14.970 14.970 0.000 ( +0.0% ) 5.45 6.90 -21.1% 1.140 1.137
DYToll01234Jets_5f_LO_MLM_Madgraph_LHE_13TeV 2500.9102 0.240 0.171 0.069 ( +40.2% ) 2.12 3.47 -38.9% 0.857 0.863
TTbar_Pow_LHE_13TeV 2500.9103 0.110 0.110 0.000 ( +0.0% ) 2.70 2.78 -2.8% 0.864 0.865
TTbar_14TeV+Run4D121_HLTPhase2WithNano 3000.0001 11.637 11.637 0.000 ( +0.0% ) 0.12 0.11 +0.3% 4.204 4.289
TTbar_14TeV+Run4D121_HLTPhase2WithNanoValid 3000.0002 203.268 203.268 0.000 ( +0.0% ) 0.11 0.11 -2.3% 4.660 4.787
TTbar_14TeV+Run4D121_NGTScoutingWithNano 3000.0003 11.750 11.750 0.000 ( +0.0% ) 0.12 0.12 -4.2% 4.054 4.112
TTbar_14TeV+Run4D121_NGTScoutingWithNanoValid 3000.0004 196.975 196.975 0.000 ( +0.0% ) 0.11 0.12 -3.7% 4.532 4.572
TTbar_14TeV+Run4D121_L1NGTScoutingWithNanoValid 3000.0005 148.438 148.438 0.000 ( +0.0% ) 0.10 0.11 -3.6% 5.206 5.296

AMD_W7900 Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 31 differences found in the comparisons
  • DQMHistoTests: Total files compared: 7
  • DQMHistoTests: Total histograms compared: 172823
  • DQMHistoTests: Total failures: 6735
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 166088
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 6 files compared)
  • Checked 25 log files, 20 edm output root files, 7 DQM output files
  • TriggerResults: no differences found

NANO Comparison Summary

Summary:

  • You potentially added 430 lines to the logs
  • ROOTFileChecks: Some differences in event products or their sizes found
  • Reco comparison results: 0 differences found in the comparisons
  • DQMHistoTests: Total files compared: 1
  • DQMHistoTests: Total histograms compared: 0
  • DQMHistoTests: Total failures: 0
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 0
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0 KiB( 0 files compared)
  • Checked 43 log files, 29 edm output root files, 1 DQM output files
  • TriggerResults: WARNING - found zero valid hltDiff JSON outputs to summarise (no outputs produced)

NVIDIA_H100 Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 39 differences found in the comparisons
  • DQMHistoTests: Total files compared: 7
  • DQMHistoTests: Total histograms compared: 172823
  • DQMHistoTests: Total failures: 7563
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 165260
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 6 files compared)
  • Checked 25 log files, 20 edm output root files, 7 DQM output files
  • TriggerResults: no differences found

NVIDIA_L40S Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 39 differences found in the comparisons
  • DQMHistoTests: Total files compared: 7
  • DQMHistoTests: Total histograms compared: 172823
  • DQMHistoTests: Total failures: 6922
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 165901
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 6 files compared)
  • Checked 25 log files, 20 edm output root files, 7 DQM output files
  • TriggerResults: found differences in 1 / 6 workflows

NVIDIA_T4 Comparison Summary

Summary:

  • No significant changes to the logs found
  • Reco comparison results: 35 differences found in the comparisons
  • DQMHistoTests: Total files compared: 7
  • DQMHistoTests: Total histograms compared: 172823
  • DQMHistoTests: Total failures: 6973
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 165850
  • DQMHistoTests: Total skipped: 0
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 6 files compared)
  • Checked 25 log files, 20 edm output root files, 7 DQM output files
  • TriggerResults: no differences found

RNTUPLE Comparison Summary

Summary:

  • You potentially removed 1 lines from the logs
  • Reco comparison results: 0 differences found in the comparisons
  • DQMHistoTests: Total files compared: 45
  • DQMHistoTests: Total histograms compared: 3589140
  • DQMHistoTests: Total failures: 11
  • DQMHistoTests: Total nulls: 0
  • DQMHistoTests: Total successes: 3589111
  • DQMHistoTests: Total skipped: 18
  • DQMHistoTests: Total Missing objects: 0
  • DQMHistoSizes: Histogram memory added: 0.0 KiB( 44 files compared)
  • Checked 195 log files, 4 edm output root files, 45 DQM output files
  • TriggerResults: no differences found

Max Memory Comparisons exceeding threshold NVIDIA_H100

@cms-sw/core-l2 , I found 1 workflow step(s) with memory usage exceeding the error threshold:

Expand to see workflows ...
  • Error: Workflow 34434.7503_TTbar_14TeV+Run4D121_HLTHeterogeneousValid step2 max memory diff -239.1 exceeds +/- 30.0 MiB

Max Memory Comparisons exceeding threshold RNTUPLE

@cms-sw/core-l2 , I found 120 workflow step(s) with memory usage exceeding the error threshold:

Expand to see workflows ...
  • Error: Workflow 4.22_RunCosmics2011A step4 max memory diff 187.4 exceeds +/- 30.0 MiB
  • Error: Workflow 4.53_RunPhoton2012B step2 max memory diff 448.8 exceeds +/- 30.0 MiB
  • Error: Workflow 4.53_RunPhoton2012B step3 max memory diff 786.2 exceeds +/- 30.0 MiB
  • Error: Workflow 5.1_TTbarFS step1 max memory diff 101.4 exceeds +/- 30.0 MiB
  • Error: Workflow 7.3_CosmicsSPLoose2018 step3 max memory diff 387.2 exceeds +/- 30.0 MiB
  • Error: Workflow 7.3_CosmicsSPLoose2018 step1 max memory diff 85.7 exceeds +/- 30.0 MiB
  • Error: Workflow 7.3_CosmicsSPLoose2018 step2 max memory diff 295.2 exceeds +/- 30.0 MiB
  • Error: Workflow 7.3_CosmicsSPLoose2018 step4 max memory diff 69.0 exceeds +/- 30.0 MiB
  • Error: Workflow 8.0_BeamHalo step1 max memory diff 85.7 exceeds +/- 30.0 MiB
  • Error: Workflow 8.0_BeamHalo step2 max memory diff 296.4 exceeds +/- 30.0 MiB
  • Error: Workflow 8.0_BeamHalo step3 max memory diff 387.3 exceeds +/- 30.0 MiB
  • Error: Workflow 8.0_BeamHalo step4 max memory diff 265.0 exceeds +/- 30.0 MiB
  • Error: Workflow 9.0_Higgs200ChargedTaus step2 max memory diff 439.2 exceeds +/- 30.0 MiB
  • Error: Workflow 9.0_Higgs200ChargedTaus step1 max memory diff 106.8 exceeds +/- 30.0 MiB
  • Error: Workflow 9.0_Higgs200ChargedTaus step3 max memory diff 477.8 exceeds +/- 30.0 MiB
  • Error: Workflow 25.0_TTbar step2 max memory diff 450.7 exceeds +/- 30.0 MiB
  • Error: Workflow 25.0_TTbar step1 max memory diff 108.0 exceeds +/- 30.0 MiB
  • Error: Workflow 25.0_TTbar step5 max memory diff 339.6 exceeds +/- 30.0 MiB
  • Error: Workflow 25.0_TTbar step3 max memory diff 314.8 exceeds +/- 30.0 MiB
  • Error: Workflow 135.4_ZEEFS_13 step4 max memory diff -77.5 exceeds +/- 30.0 MiB
  • Error: Workflow 135.4_ZEEFS_13 step1 max memory diff 87.7 exceeds +/- 30.0 MiB
  • Error: Workflow 136.731_RunSinglePh2016B step2 max memory diff 558.0 exceeds +/- 30.0 MiB
  • Error: Workflow 136.731_RunSinglePh2016B step3 max memory diff 513.2 exceeds +/- 30.0 MiB
  • Error: Workflow 136.793_RunDoubleEG2017C step3 max memory diff 787.4 exceeds +/- 30.0 MiB
  • Error: Workflow 136.793_RunDoubleEG2017C step2 max memory diff 572.8 exceeds +/- 30.0 MiB
  • Error: Workflow 136.874_RunEGamma2018C step2 max memory diff 583.3 exceeds +/- 30.0 MiB
  • Error: Workflow 136.874_RunEGamma2018C step3 max memory diff 397.4 exceeds +/- 30.0 MiB
  • Error: Workflow 139.001_RunMinimumBias2021 step2 max memory diff 438.3 exceeds +/- 30.0 MiB
  • Error: Workflow 139.001_RunMinimumBias2021 step3 max memory diff 500.0 exceeds +/- 30.0 MiB
  • Error: Workflow 140.56_RunHI2018 step2 max memory diff 210.2 exceeds +/- 30.0 MiB
  • Error: Workflow 1000.0_RunMinBias2011A step3 max memory diff 284.5 exceeds +/- 30.0 MiB
  • Error: Workflow 1000.0_RunMinBias2011A step5 max memory diff -466.8 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step5 max memory diff -61.3 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step3 max memory diff 175.7 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step9 max memory diff 32.8 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step11 max memory diff 33.4 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step2 max memory diff 424.4 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step6 max memory diff -59.5 exceeds +/- 30.0 MiB
  • Error: Workflow 1001.0_RunMinBias2011A step7 max memory diff 32.8 exceeds +/- 30.0 MiB
  • Error: Workflow 1306.0_SingleMuPt1_UP15 step1 max memory diff 85.6 exceeds +/- 30.0 MiB
  • Error: Workflow 1306.0_SingleMuPt1_UP15 step3 max memory diff 462.7 exceeds +/- 30.0 MiB
  • Error: Workflow 1306.0_SingleMuPt1_UP15 step2 max memory diff 397.9 exceeds +/- 30.0 MiB
  • Error: Workflow 1330.0_ZMM_13 step3 max memory diff 444.8 exceeds +/- 30.0 MiB
  • Error: Workflow 1330.0_ZMM_13 step2 max memory diff 396.3 exceeds +/- 30.0 MiB
  • Error: Workflow 1330.0_ZMM_13 step1 max memory diff 94.4 exceeds +/- 30.0 MiB
  • Error: Workflow 1330.0_ZMM_13 step5 max memory diff -79.3 exceeds +/- 30.0 MiB
  • Error: Workflow 2022.0010001_RunTau2022D_10k step2 max memory diff 576.8 exceeds +/- 30.0 MiB
  • Error: Workflow 2022.0010001_RunTau2022D_10k step3 max memory diff 892.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2023.0020001_RunJetMET02023D_10k step3 max memory diff 979.6 exceeds +/- 30.0 MiB
  • Error: Workflow 2023.0020001_RunJetMET02023D_10k step2 max memory diff 614.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0000001_RunZeroBias2024B_10k step2 max memory diff 517.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0000001_RunZeroBias2024B_10k step3 max memory diff 791.6 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0010001_RunJetMET02024C_10k step3 max memory diff 972.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0010001_RunJetMET02024C_10k step2 max memory diff 509.1 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0020001_RunEGamma02024D_10k step2 max memory diff 492.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0020001_RunEGamma02024D_10k step3 max memory diff 858.3 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0030001_RunDisplacedJet2024E_10k step2 max memory diff 518.1 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0030001_RunDisplacedJet2024E_10k step3 max memory diff 988.3 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0040001_RunPark2MuonLowMass02024F_10k step2 max memory diff 501.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0040001_RunPark2MuonLowMass02024F_10k step3 max memory diff 912.4 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0050001_RunBTagMu2024G_10k step2 max memory diff 512.1 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0050001_RunBTagMu2024G_10k step3 max memory diff 1003.9 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0060001_RunMuon02024H_10k step2 max memory diff 493.9 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0060001_RunMuon02024H_10k step3 max memory diff 852.7 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0070001_RunTau2024I_10k step2 max memory diff 496.0 exceeds +/- 30.0 MiB
  • Error: Workflow 2024.0070001_RunTau2024I_10k step3 max memory diff 933.8 exceeds +/- 30.0 MiB
  • Error: Workflow 2025.0000002_RunZeroBias2025B_10k step3 max memory diff 4910.5 exceeds +/- 30.0 MiB
  • Error: Workflow 2025.0000002_RunZeroBias2025B_10k step2 max memory diff 3288.2 exceeds +/- 30.0 MiB
  • Error: Workflow 2025.0010001_RunJetMET02025C_10k step3 max memory diff 5170.2 exceeds +/- 30.0 MiB
  • Error: Workflow 2025.0010001_RunJetMET02025C_10k step2 max memory diff 3519.1 exceeds +/- 30.0 MiB
  • Error: Workflow 11634.0_TTbar_14TeV+2022 step3 max memory diff 324.1 exceeds +/- 30.0 MiB
  • Error: Workflow 11634.0_TTbar_14TeV+2022 step1 max memory diff 110.0 exceeds +/- 30.0 MiB
  • Error: Workflow 11634.0_TTbar_14TeV+2022 step2 max memory diff 465.1 exceeds +/- 30.0 MiB
  • Error: Workflow 11634.0_TTbar_14TeV+2022 step5 max memory diff -73.3 exceeds +/- 30.0 MiB
  • Error: Workflow 12434.0_TTbar_14TeV+2023 step1 max memory diff 110.7 exceeds +/- 30.0 MiB
  • Error: Workflow 12434.0_TTbar_14TeV+2023 step2 max memory diff 464.0 exceeds +/- 30.0 MiB
  • Error: Workflow 12434.0_TTbar_14TeV+2023 step5 max memory diff -77.9 exceeds +/- 30.0 MiB
  • Error: Workflow 12434.0_TTbar_14TeV+2023 step3 max memory diff 322.8 exceeds +/- 30.0 MiB
  • Error: Workflow 12834.0_TTbar_14TeV+2024 step1 max memory diff 108.3 exceeds +/- 30.0 MiB
  • Error: Workflow 12834.0_TTbar_14TeV+2024 step3 max memory diff 324.2 exceeds +/- 30.0 MiB
  • Error: Workflow 12834.0_TTbar_14TeV+2024 step5 max memory diff -77.7 exceeds +/- 30.0 MiB
  • Error: Workflow 12834.0_TTbar_14TeV+2024 step2 max memory diff 462.5 exceeds +/- 30.0 MiB
  • Error: Workflow 12846.0_ZEE_14+2024 step5 max memory diff -86.3 exceeds +/- 30.0 MiB
  • Error: Workflow 12846.0_ZEE_14+2024 step3 max memory diff 295.4 exceeds +/- 30.0 MiB
  • Error: Workflow 12846.0_ZEE_14+2024 step1 max memory diff 107.9 exceeds +/- 30.0 MiB
  • Error: Workflow 12846.0_ZEE_14+2024 step2 max memory diff 446.9 exceeds +/- 30.0 MiB
  • Error: Workflow 13234.0_TTbar_14TeV+2022FS step1 max memory diff 88.8 exceeds +/- 30.0 MiB
  • Error: Workflow 14034.0_TTbar_14TeV+2023FS step1 max memory diff 88.8 exceeds +/- 30.0 MiB
  • Error: Workflow 16834.0_TTbar_14TeV+2025 step2 max memory diff 467.0 exceeds +/- 30.0 MiB
  • Error: Workflow 16834.0_TTbar_14TeV+2025 step1 max memory diff 110.7 exceeds +/- 30.0 MiB
  • Error: Workflow 16834.0_TTbar_14TeV+2025 step3 max memory diff 329.3 exceeds +/- 30.0 MiB
  • Error: Workflow 16834.0_TTbar_14TeV+2025 step5 max memory diff -58.2 exceeds +/- 30.0 MiB
  • Error: Workflow 17034.96_TTbar_14TeV+2025PU_HybridPUS1S2 step3 max memory diff 512.2 exceeds +/- 30.0 MiB
  • Error: Workflow 17034.96_TTbar_14TeV+2025PU_HybridPUS1S2 step4 max memory diff 487.9 exceeds +/- 30.0 MiB
  • Error: Workflow 17034.96_TTbar_14TeV+2025PU_HybridPUS1S2 step1 max memory diff 110.7 exceeds +/- 30.0 MiB
  • Error: Workflow 18434.0_TTbar_14TeV+2026 step3 max memory diff 2969.8 exceeds +/- 30.0 MiB
  • Error: Workflow 18434.0_TTbar_14TeV+2026 step2 max memory diff 2680.7 exceeds +/- 30.0 MiB
  • Error: Workflow 18434.0_TTbar_14TeV+2026 step1 max memory diff 110.7 exceeds +/- 30.0 MiB
  • Error: Workflow 18434.0_TTbar_14TeV+2026 step5 max memory diff -100.1 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.0_TTbar_14TeV+Run4D121 step1 max memory diff 111.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.0_TTbar_14TeV+Run4D121 step5 max memory diff 659.2 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.0_TTbar_14TeV+Run4D121 step2 max memory diff 493.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.0_TTbar_14TeV+Run4D121 step3 max memory diff 1025.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.75_TTbar_14TeV+Run4D121_HLT75e33Timing step1 max memory diff 111.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.75_TTbar_14TeV+Run4D121_HLT75e33Timing step2 max memory diff 241.5 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.911_TTbar_14TeV+Run4D121_DD4hep step5 max memory diff 645.1 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.911_TTbar_14TeV+Run4D121_DD4hep step2 max memory diff 499.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.911_TTbar_14TeV+Run4D121_DD4hep step3 max memory diff 1018.7 exceeds +/- 30.0 MiB
  • Error: Workflow 34434.911_TTbar_14TeV+Run4D121_DD4hep step1 max memory diff 113.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34496.0_CloseByPGun_CE_E_Front_120um+Run4D121 step3 max memory diff 979.5 exceeds +/- 30.0 MiB
  • Error: Workflow 34496.0_CloseByPGun_CE_E_Front_120um+Run4D121 step5 max memory diff 631.9 exceeds +/- 30.0 MiB
  • Error: Workflow 34496.0_CloseByPGun_CE_E_Front_120um+Run4D121 step2 max memory diff 458.5 exceeds +/- 30.0 MiB
  • Error: Workflow 34496.0_CloseByPGun_CE_E_Front_120um+Run4D121 step1 max memory diff 97.1 exceeds +/- 30.0 MiB
  • Error: Workflow 34500.0_CloseByPGun_CE_H_Coarse_Scint+Run4D121 step1 max memory diff 93.0 exceeds +/- 30.0 MiB
  • Error: Workflow 34500.0_CloseByPGun_CE_H_Coarse_Scint+Run4D121 step2 max memory diff 456.8 exceeds +/- 30.0 MiB
  • Error: Workflow 34500.0_CloseByPGun_CE_H_Coarse_Scint+Run4D121 step3 max memory diff 984.0 exceeds +/- 30.0 MiB
  • Error: Workflow 34500.0_CloseByPGun_CE_H_Coarse_Scint+Run4D121 step5 max memory diff 629.3 exceeds +/- 30.0 MiB
  • Error: Workflow 34634.0_TTbar_14TeV+Run4D121PU step2 max memory diff -641.8 exceeds +/- 30.0 MiB
  • Error: Workflow 34634.0_TTbar_14TeV+Run4D121PU step1 max memory diff 111.6 exceeds +/- 30.0 MiB
  • Error: Workflow 34634.0_TTbar_14TeV+Run4D121PU step3 max memory diff 982.0 exceeds +/- 30.0 MiB

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants