Running everything on CPU

Hi. How do I explicit setup Ignite’s configuration to run everything on CPU (like auto_model and auto_dataloader to CPU as well)?

I think there is nothing special with that. You can just inform the script that there is no GPUs and it would take cpu as default:

CUDA_VISIBLE_DEVICES= python script.py

What do you think ?