Use dynamic CUDA check instead of hardcoded device in perturber_utils.py

#594
by dlgenomics - opened

Fixes CPU-only inference, which currently fails with "AssertionError: Torch not compiled with CUDA enabled" because device="cuda" is hardcoded in gen_attention_mask().

Replaces the hardcoded "cuda" with a dynamic check ("cuda" if torch.cuda.is_available() else "cpu"), matching the pattern already used elsewhere in the codebase (e.g. load_model()).

See discussion #592: https://huggingface.co/ctheodoris/Geneformer/discussions/592
Companion PR (emb_extractor.py fix): https://huggingface.co/ctheodoris/Geneformer/discussions/593

Ready to merge
This branch is ready to get merged automatically.

Sign up or log in to comment