美文网首页
pytorch_lightning 多块GPU训练速度很慢

pytorch_lightning 多块GPU训练速度很慢

作者: iceyer | 来源:发表于2021-02-22 15:49 被阅读0次

    不要使用CUDA_VISIBLE_DEVICES来选择要是用的GPU,要直接在Trainer里面的gpus来选择要用的GPU。

    Change from:

    CUDA_VISIBLE_DEVICES=0,1
    

    To:

        trainer = Trainer(...
                            gpus='0, 1',
                            ...)
    

    相关文章

      网友评论

          本文标题:pytorch_lightning 多块GPU训练速度很慢

          本文链接:https://www.haomeiwen.com/subject/lbfkfltx.html