您好,我的程序有一点问题(我想将数组乘以标量)。
基本上我想创建一个线程向量来执行乘法人员(逐个元素)
代码示例
第一个main实现函数
void mainImplementation(){
vector<thread> threads;
vector< vector<int> > result;
vector< vector<int> > tab;
vector<int> temp;
int row = 0;
int col = 0;
int scalar = 5;
loadDataFromFile(tab,temp,row,col);
int availableThreads = thread::hardware_concurrency();
for(int i = 0; i < row; i++){
for(int j = 0; j < col; j++){
for(int t = 1; i <= availableThreads; t++){
threads.push_back(thread(scalarMultiplication,std::ref(tab),
std::ref(result),std::ref(temp),std::ref(i),std::ref(j),std::ref(scalar)));
}
}
}
}
now 实现标量乘法的函数
void scalarMultiplication(vector< vector<int> >& vtab, vector< vector<int> >& vresult, vector<int>& vtemp, int& i, int& j, int& scalar){
//...implementation
}
我还没有实现这部分,但我无法解决一个问题
在行
threads.push_back(thread(scalarMultiplication,std::ref(tab),
std::ref(result),std::ref(temp),std::ref(i),std::ref(j),std::ref(scalar)));
编译器说那里有问题
“错误:没有构造函数实例 std::thread::thread 与参数列表匹配”。
我似乎无法解决这个问题。我确实读过我应该通过引用将变量传递给线程构造函数中的函数,所以我认为这不是问题。我将 6 个变量传递给乘法函数,所以它应该没问题,但它不是,我不知道在这里做什么......谷歌也无法帮助我,因为我搜索了类似的问题。
提前感谢您的帮助。