From . * [new ref] HEAD -> merge-attempt From https://github.com/cms-sw/cmssw * [new ref] refs/pull/47629/head -> cms-sw/refs/pull/47629/head Switched to branch 'merge-attempt' Merge made by the 'ort' strategy. CondFormats/SiStripObjects/BuildFile.xml | 10 + .../interface/SiStripClusterizerConditionsHost.h | 13 + .../interface/SiStripClusterizerConditionsSoA.h | 39 ++ .../SiStripObjects/interface/SiStripMappingHost.h | 9 + .../SiStripObjects/interface/SiStripMappingSoA.h | 21 + .../alpaka/SiStripClusterizerConditionsDevice.h | 23 + .../interface/alpaka/SiStripMappingDevice.h | 18 + .../SiStripObjects/src/T_EventSetup_SiStrip.cc | 2 + .../src/alpaka/T_EventSetup_SiStrip.cc | 5 + CondFormats/SiStripObjects/test/BuildFile.xml | 18 + CondFormats/SiStripObjects/test/README.md | 26 + .../test/TestSiStripClusterizerConditionsSoA.cc | 69 +++ .../SiStripObjects/test/TestSiStripMappingSoA.cc | 38 ++ .../TestSiStripClusterizerConditionsDevice.cc | 72 +++ .../TestSiStripClusterizerConditionsDevice.dev.cc | 90 +++ .../TestSiStripClusterizerConditionsDevice.h | 17 + .../test/alpaka/TestSiStripMappingDevice.cc | 52 ++ .../test/alpaka/TestSiStripMappingDevice.dev.cc | 54 ++ .../test/alpaka/TestSiStripMappingDevice.h | 13 + DataFormats/SiStripClusterSoA/BuildFile.xml | 10 + DataFormats/SiStripClusterSoA/README.md | 13 + .../interface/SiStripClustersHost.h | 14 + .../interface/SiStripClustersSoA.h | 30 + .../interface/alpaka/SiStripClustersDevice.h | 30 + .../SiStripClusterSoA/src/alpaka/classes_cuda.h | 10 + .../src/alpaka/classes_cuda_def.xml | 5 + .../SiStripClusterSoA/src/alpaka/classes_rocm.h | 10 + .../src/alpaka/classes_rocm_def.xml | 5 + DataFormats/SiStripClusterSoA/src/classes.cc | 4 + DataFormats/SiStripClusterSoA/src/classes.h | 9 + DataFormats/SiStripClusterSoA/src/classes_def.xml | 6 + DataFormats/SiStripClusterSoA/test/BuildFile.xml | 12 + .../test/TestSiStripClustersSoA.cc | 48 ++ .../test/alpaka/TestSiStripClustersDevice.cc | 52 ++ .../test/alpaka/TestSiStripClustersDevice.dev.cc | 80 +++ .../test/alpaka/TestSiStripClustersDevice.h | 14 + RecoLocalTracker/SiStripClusterizer/BuildFile.xml | 8 +- .../SiStripClusterizer/plugins/BuildFile.xml | 22 + ...SiStripClusterizerConditionsESProducerAlpaka.cc | 233 ++++++++ .../plugins/alpaka/SiStripClustersToLegacy.cc | 132 +++++ .../plugins/alpaka/SiStripRawToCluster.cc | 599 +++++++++++++++++++ .../plugins/alpaka/SiStripRawToClusterAlgo.dev.cc | 653 +++++++++++++++++++++ .../plugins/alpaka/SiStripRawToClusterAlgo.h | 192 ++++++ .../python/customizeStripClustersFromRaw.py | 56 ++ 44 files changed, 2834 insertions(+), 2 deletions(-) create mode 100644 CondFormats/SiStripObjects/interface/SiStripClusterizerConditionsHost.h create mode 100644 CondFormats/SiStripObjects/interface/SiStripClusterizerConditionsSoA.h create mode 100644 CondFormats/SiStripObjects/interface/SiStripMappingHost.h create mode 100644 CondFormats/SiStripObjects/interface/SiStripMappingSoA.h create mode 100644 CondFormats/SiStripObjects/interface/alpaka/SiStripClusterizerConditionsDevice.h create mode 100644 CondFormats/SiStripObjects/interface/alpaka/SiStripMappingDevice.h create mode 100644 CondFormats/SiStripObjects/src/alpaka/T_EventSetup_SiStrip.cc create mode 100644 CondFormats/SiStripObjects/test/README.md create mode 100644 CondFormats/SiStripObjects/test/TestSiStripClusterizerConditionsSoA.cc create mode 100644 CondFormats/SiStripObjects/test/TestSiStripMappingSoA.cc create mode 100644 CondFormats/SiStripObjects/test/alpaka/TestSiStripClusterizerConditionsDevice.cc create mode 100644 CondFormats/SiStripObjects/test/alpaka/TestSiStripClusterizerConditionsDevice.dev.cc create mode 100644 CondFormats/SiStripObjects/test/alpaka/TestSiStripClusterizerConditionsDevice.h create mode 100644 CondFormats/SiStripObjects/test/alpaka/TestSiStripMappingDevice.cc create mode 100644 CondFormats/SiStripObjects/test/alpaka/TestSiStripMappingDevice.dev.cc create mode 100644 CondFormats/SiStripObjects/test/alpaka/TestSiStripMappingDevice.h create mode 100644 DataFormats/SiStripClusterSoA/BuildFile.xml create mode 100644 DataFormats/SiStripClusterSoA/README.md create mode 100644 DataFormats/SiStripClusterSoA/interface/SiStripClustersHost.h create mode 100644 DataFormats/SiStripClusterSoA/interface/SiStripClustersSoA.h create mode 100644 DataFormats/SiStripClusterSoA/interface/alpaka/SiStripClustersDevice.h create mode 100644 DataFormats/SiStripClusterSoA/src/alpaka/classes_cuda.h create mode 100644 DataFormats/SiStripClusterSoA/src/alpaka/classes_cuda_def.xml create mode 100644 DataFormats/SiStripClusterSoA/src/alpaka/classes_rocm.h create mode 100644 DataFormats/SiStripClusterSoA/src/alpaka/classes_rocm_def.xml create mode 100644 DataFormats/SiStripClusterSoA/src/classes.cc create mode 100644 DataFormats/SiStripClusterSoA/src/classes.h create mode 100644 DataFormats/SiStripClusterSoA/src/classes_def.xml create mode 100644 DataFormats/SiStripClusterSoA/test/BuildFile.xml create mode 100644 DataFormats/SiStripClusterSoA/test/TestSiStripClustersSoA.cc create mode 100644 DataFormats/SiStripClusterSoA/test/alpaka/TestSiStripClustersDevice.cc create mode 100644 DataFormats/SiStripClusterSoA/test/alpaka/TestSiStripClustersDevice.dev.cc create mode 100644 DataFormats/SiStripClusterSoA/test/alpaka/TestSiStripClustersDevice.h create mode 100644 RecoLocalTracker/SiStripClusterizer/plugins/alpaka/SiStripClusterizerConditionsESProducerAlpaka.cc create mode 100644 RecoLocalTracker/SiStripClusterizer/plugins/alpaka/SiStripClustersToLegacy.cc create mode 100644 RecoLocalTracker/SiStripClusterizer/plugins/alpaka/SiStripRawToCluster.cc create mode 100644 RecoLocalTracker/SiStripClusterizer/plugins/alpaka/SiStripRawToClusterAlgo.dev.cc create mode 100644 RecoLocalTracker/SiStripClusterizer/plugins/alpaka/SiStripRawToClusterAlgo.h Switched to branch 'from-CMSSW_15_1_X_2025-03-19-1100'