Hi everyone,
I am trying to run scvi as followed, but I wan to speed up by using several GPUs. However, my cluster only gives me MIG partitions from GPUs. Even tho I can request several, when feeding the MIGs to scvi it only recognizes the one in position [0], but it does not recognize the rest, is there any way around, so I can use several devices?
scvi.model.SCVI.setup_anndata(adata)
vae = scvi.model.SCVI(adata_hvg, n_hidden=128, n_layers=2, n_latent=20, )
vae.train(accelerator=“gpu”, devices=3)