RuntimeError: CUDA error: invalid device ordinal CUDA kernel errors might be 原因: 当前环境的显卡 与程序cuda: gpu_idx设定的显卡不匹配引起 解决方案: 添加 CUDA_VISIBLE_DEVICES=0 原来代码 python your_script.py 修改之后代码 CUDA_VISIBLE_DEVICES=0 python your_script.py