Open DJjiery opened 11 months ago
Same problem, do you have a solution?
Same problem, do you have a solution? In eureka training, the program will automatically find the most free card on the server for training, it can automatically multi-card, the code is in line 187 of eureka.py, the function points to misc.py; However, running train.py with rl_device=cuda: (not the 0th card) in isaacgymenv under the project results in a situation where the tensor is not on the same card, is there a good way to handle this?
@DJjiery you need to set not only rl_device=cuda:X but also sim_device=cuda:X to match the rl_device
@DJjiery you need to set not only rl_device=cuda:X but also sim_device=cuda:X to match the rl_device I tried this, but it still outputs the same error, and it only appears on isaacgymenv under eureka, but it doesn't happen on the official IsaacGymEnvs training.
Can you tell me how to train with multiple GPUs, is it the same way as Isacc gym?