我正在使用英特尔C ++编译器v14.0.3。以下代码让我感到困扰:
#include <tinyxml/tinyxml.h>
#include <memory>
#include <map>
#include "offload.h"
using namespace std;
typedef map<shared_ptr<TiXmlDocument>, double,
less<shared_ptr<TiXmlDocument> >,
__offload::shared_allocator<pair<shared_ptr<TiXmlDocument>, double> > > xmlanddbl;
__declspec(target(mic)) _Cilk_shared xmlanddbl m;
int main(void)
{
const int maxct = 10;
for(int i = 0; i < 10; i++){
shared_ptr<TiXmlDocument> doc(new TiXmlDocument);
if(doc && doc->LoadFile("something.xml")){
m.insert(make_pair(doc, 0.0));
}
}
for(int ct = 0; ct < maxct; ct++){
#pragma offload target(mic) mandatory
#pragma omp parallel
#pragma omp single
{
for(auto it = m.begin(); it != m.end(); it++){
#pragma omp task firstprivate(it)
{
someclass obj(it->first);
it->second = obj.eval();
}
}
#pragma omp taskwait
}
somefunction(m);
}
return 0;
}
编译器提供此消息:
$ icpc -c thiscode.cpp -O2 -openmp -parallel -std=c++11 -I./include
thiscode.cpp(24): error: variable "m" used in this offload region is not bitwise copyable
#pragma offload target(mic) mandatory
^
compilation aborted for thiscode.cpp (code 2)
我看过this page。但我想不出如何传输这些数据。 我该怎么办?
抱歉我的英语不好。 谢谢。
答案 0 :(得分:0)
我想不出如何传输这些数据。我该怎么办?
来自您关联的文件:
&#34;如果CPU和协处理器之间交换的数据比简单的标量和逐位可复制数组更复杂,您可以考虑使用_Cilk_shared / _Cilk_offload结构。&#34;
#pragma offload
将无效,因为std :: map太复杂而无法按位复制。