是否可以将 Intel Iris GPU 与 Pytorch 一起使用?

问题描述 投票:0回答:1

我已经安装了 Anaconda 并使用以下命令安装了 Pytorch:

conda install pytorch torchvision torchaudio pytorch-cuda=11.7 -c pytorch -c nvidia

intel GPU 没有选项,所以我选择了建议的选项。但是,我的机器中没有任何 CUDA。我唯一拥有的 GPU 是 Windows 上默认的 Intel Irish。是否可以在我的机器上运行任何深度学习代码并改用这个英特尔 GPU?

python-3.x deep-learning pytorch gpu
1个回答
0
投票

英特尔提供了一些在其 GPU 上使用 Pytorch 的说明

英特尔扩展,英特尔® PyTorch 优化通过优化扩展了 PyTorch,以在英特尔硬件上实现额外的性能提升。大多数优化将包含在 PyTorch 最终版本中,扩展的目的是为英特尔硬件上的 PyTorch 提供最新的功能和优化,示例包括英特尔® 高级矢量扩展 512(英特尔® AVX-512 ) 矢量神经网络指令 (AVX512 VNNI) 和英特尔® 高级矩阵扩展 (英特尔® AMX)。

https://www.intel.com/content/www/us/en/developer/articles/guide/getting-started-with-intel-optimization-of-pytorch.html

© www.soinside.com 2019 - 2024. All rights reserved.