Google Colab 中的 MAGMA

发布于 2025-01-11 15:48:15 字数 445 浏览 0 评论 0原文

每当我使用安装了 magma-2.6.1 的 google colab 运行非常简单的代码时,我总是收到以下错误“magma_getdevice_arch 中的错误:MAGMA 未初始化(首先调用 magma_init())或坏设​​备”。

////////////////////////////////////////////////

#include <iostream>
#include "cublas_v2.h"
#include "magma_v2.h"     
#include "magma_lapack.h" 

using namespace std;
int main ( int argc , char **argv ){

 magma_init();

magma_getdevice_arch(); 

magma_finalize();
return 0;
} 

i always get the following error "Error in magma_getdevice_arch: MAGMA not initialized (call magma_init() first) or bad device" whenever i run a very simple code using google colab with magma-2.6.1 installed.

////////////////////////

#include <iostream>
#include "cublas_v2.h"
#include "magma_v2.h"     
#include "magma_lapack.h" 

using namespace std;
int main ( int argc , char **argv ){

 magma_init();

magma_getdevice_arch(); 

magma_finalize();
return 0;
} 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥抱影子 2025-01-18 15:48:15

这个问题似乎与 Colab Systems 上安装的 CUDA 版本相比 PyTorch 版本太新有关。

运行 pip install --user torch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 torchtext==0.10.0 进行降级。

答案取自:https://www.kaggle.com/product-feedback/279990

It seems that this issue has to do with a version of PyTorch too new for the version of CUDA installed on Colab Systems.

Run pip install --user torch==1.9.0 torchvision==0.10.0 torchaudio==0.9.0 torchtext==0.10.0 to downgrade.

Answer taken from: https://www.kaggle.com/product-feedback/279990

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文