Skip to content

AlpakaServiceSerialSync should always be available #47672

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions HeterogeneousCore/AlpakaCore/python/ProcessAcceleratorAlpaka.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,10 @@ def apply(self, process, accelerators):
if not hasattr(process.MessageLogger, "AlpakaService"):
process.MessageLogger.AlpakaService = cms.untracked.PSet()

# Check if the CPU backend is available
try:
if not "cpu" in accelerators:
raise False
# The CPU backend is effectively always available, ensure the AlpakaServiceSerialSync is loaded
if not hasattr(process, "AlpakaServiceSerialSync"):
from HeterogeneousCore.AlpakaServices.AlpakaServiceSerialSync_cfi import AlpakaServiceSerialSync
except:
# the CPU backend is not available, do not load the AlpakaServiceSerialSync
if hasattr(process, "AlpakaServiceSerialSync"):
del process.AlpakaServiceSerialSync
else:
# the CPU backend is available, ensure the AlpakaServiceSerialSync is loaded
if not hasattr(process, "AlpakaServiceSerialSync"):
process.add_(AlpakaServiceSerialSync)
process.add_(AlpakaServiceSerialSync)

# Check if CUDA is available, and if the system has at least one usable NVIDIA GPU
try:
Expand Down