[Django]-It is possible to run celery on gpu?

2👍

No. Celery offers no way to run anything on GPU. However, nothing prevents you to use Keras, TensorFlow, or PyTorch in your Celery tasks (as a matter of fact I see many questions here about these projects and Celery).

1👍

you can specify the number of workers like this…

celery -A projectname --workers=3
👤Dunski

Leave a comment