gpt4 book ai didi

c++ - 在 MPI 中使用 Armadillo 稀疏矩阵

转载 作者:行者123 更新时间:2023-11-28 02:10:13 30 4
gpt4 key购买 nike

我正在尝试初始化 Armadillo 稀疏矩阵 sp_mat在 MPI 中如下:

if(rank==0)
{ // some code for locations, values
sp_mat X(locations,values)
}
// this is where I want to use X
if(rank==0)
some_fun(X)

如您所见,Armadillo 构造函数是 if block 的本地构造函数,因此不能在 if block 之后使用它。换一种方式提出同样的问题:

extern sp_mat X
if(rank==0)
{ // some code for locations, values
sp_mat X(locations,values)
}
// this is where I want to use X
if(rank==0)
some_fun(X)

if block 之前使用 extern sp_mat X 也无济于事(我遇到 undefined reference 错误)。
我如何初始化 X 并在之后重用它?

最佳答案

使用(智能)指针:

std::unique_ptr<sp_mat> X; // or std::shared_ptr<sp_mat> or sp_mat*
if (rank == 0) {
// some code for locations and values
X = std::unique_ptr<sp_mat>(new sp_mat(locations, values));
}
...
if (rank == 0)
some_fun(*X);

关于c++ - 在 MPI 中使用 Armadillo 稀疏矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35967127/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com