How to prevent two CUDA programs from interfering

前端 未结 2 1541
旧巷少年郎
旧巷少年郎 2021-01-05 12:55

I\'ve noticed that if two users try to run CUDA programs at the same time, it tends to lock up either the card or the driver (or both?). We need to either reset the card or

2条回答
  •  渐次进展
    2021-01-05 13:23

    You can use something like Task Spooler to queue the programs and run one at the time.

    We use TORQUE Resource Manager but it's harder to configure than ts. With TORQUE you can have multiple queues (ie one for cuda jobs, two for cpu jobs) and assign a different job to each gpu.

提交回复
热议问题