我正在尝试初始化2D concurrent_hash_map,这是英特尔TBB库中可用的容器。编译通过,运行时没有错误。但是,并非所有初始化值都在容器中可用,从而导致行为不正确。
哈希映射定义为
template<typename K>
struct MyHashCompare {
static size_t hash(const K& key) { return boost::hash_value(key); }
static bool equal(const K& key1, const K& key2) { return (key1 == key2); }
};
typedef concurrent_hash_map<int, int, MyHashCompare<int> > ColMap;
typedef concurrent_hash_map<int, ColMap, MyHashCompare<int> > RowMap;
函数对象定义如下。行为不正确的原因可能来自这里吗?
class ColumnInit {
RowMap *const pMyEdgeMap;
public:
void operator()(const blocked_range<size_t>& r) const {
RowMap* pEdgeMap = pMyEdgeMap;
RowMap::accessor accessX;
ColMap::accessor accessY;
for(size_t n1 = r.begin(); n1 != r.end(); n1++)
{
pEdgeMap->insert(accessX, n1);
for(int n2 = 1; n2 <= 64; n2++)
{
int diff = abs((int)n1 - n2);
if ((diff == 8) || (diff == 1))
{
assert((accessX->second).insert(accessY, n2));
accessY->second = -1;
}
else
{
assert((accessX->second).insert(accessY, n2));
accessY->second = 0;
}
}
}
}
ColumnInit(RowMap* pEdgeMap): pMyEdgeMap(pEdgeMap)
{
}
};
通过调用parallel_for调用函数对象,如下所示:
parallel_for(blocked_range<size_t>(1,64,16), ColumnInit((RowMap*)&mEdges), simple_partitioner());
任何建议或反馈都会很棒。
感谢。
答案 0 :(得分:1)
如果您打算创建64x64表,请使用blocked_range(1, 65 ,16)作为parallel_for的第一个参数。原因是blocked_range表示半开区间,包括下限但不包括上限。