作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 cuda 示例中,e.g. here , __match_all_sync
__match_any_sync
用来。
这是一个例子,其中一个经线被分成多个(一个或多个)组,每个组都跟踪自己的原子计数器。
// increment the value at ptr by 1 and return the old value
__device__ int atomicAggInc(int* ptr) {
int pred;
//const auto mask = __match_all_sync(__activemask(), ptr, &pred); //error, should be any_sync, not all_sync
const auto mask = __match_any_sync(__activemask(), ptr, &pred);
const auto leader = __ffs(mask) - 1; // select a leader
int res;
const auto lane_id = ThreadId() % warpSize;
if (lane_id == leader) { // leader does the update
res = atomicAdd(ptr, __popc(mask));
}
res = __shfl_sync(mask, res, leader); // get leader’s old value
return res + __popc(mask & ((1 << lane_id) - 1)); //compute old value
}
__match_any_sync
这里将经纱中的线程分成具有相同
ptr
的组。值,以便每个组可以自动更新自己的 ptr,而不会妨碍其他线程。
__match_any_sync
的机制。
最佳答案
编辑:博客文章现已修改以反射(reflect) __match_any_sync()
而不是 __match_all_sync()
,因此应忽略以下对此大意的任何评论。下面的答案经过编辑以反射(reflect)这一点。
根据你的说法:
this is just about the mechanics of
__match_any_sync
__match_any_sync
本身,而不是任何其他形式的重写
atomicAggInc
功能。因此,我们必须提供一个与
__match_any_sync()
返回的值相同的掩码。在 cc7.0 或更高的架构上。
ptr
值,在最坏的情况下,对扭曲中的每个线程进行一次迭代(因为每个线程可能具有唯一的
ptr
值)并测试哪些线程具有相同的值。我们可以通过多种方式“优化”此函数的循环,以便根据实际
ptr
将行程计数从 32 减少到某个较小的值。每个线程中的值,但在我看来,这种优化引入了相当大的复杂性,这使得最坏情况的处理时间更长(这是早期退出优化的典型特征)。所以我将演示一个没有这种优化的相当简单的方法。
__activemask()
来识别这种情况。
$ cat t1646.cu
#include <iostream>
#include <stdio.h>
// increment the value at ptr by 1 and return the old value
__device__ int atomicAggInc(int* ptr) {
int mask;
#if __CUDA_ARCH__ >= 700
mask = __match_any_sync(__activemask(), (unsigned long long)ptr);
#else
unsigned tmask = __activemask();
for (int i = 0; i < warpSize; i++){
#ifdef USE_OPT
if ((1U<<i) & tmask){
#endif
unsigned long long tptr = __shfl_sync(tmask, (unsigned long long)ptr, i);
unsigned my_mask = __ballot_sync(tmask, (tptr == (unsigned long long)ptr));
if (i == (threadIdx.x & (warpSize-1))) mask = my_mask;}
#ifdef USE_OPT
}
#endif
#endif
int leader = __ffs(mask) - 1; // select a leader
int res;
unsigned lane_id = threadIdx.x % warpSize;
if (lane_id == leader) { // leader does the update
res = atomicAdd(ptr, __popc(mask));
}
res = __shfl_sync(mask, res, leader); // get leader’s old value
return res + __popc(mask & ((1 << lane_id) - 1)); //compute old value
}
__global__ void k(int *d){
int *ptr = d + threadIdx.x/4;
if ((threadIdx.x >= 16) && (threadIdx.x < 32))
atomicAggInc(ptr);
}
const int ds = 32;
int main(){
int *d_d, *h_d;
h_d = new int[ds];
cudaMalloc(&d_d, ds*sizeof(d_d[0]));
cudaMemset(d_d, 0, ds*sizeof(d_d[0]));
k<<<1,ds>>>(d_d);
cudaMemcpy(h_d, d_d, ds*sizeof(d_d[0]), cudaMemcpyDeviceToHost);
for (int i = 0; i < ds; i++)
std::cout << h_d[i] << " ";
std::cout << std::endl;
}
$ nvcc -o t1646 t1646.cu -DUSE_OPT
$ cuda-memcheck ./t1646
========= CUDA-MEMCHECK
0 0 0 0 4 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
========= ERROR SUMMARY: 0 errors
$
tmask
不是
0xFFFFFFFF
)。这可以通过定义
USE_OPT
来选择.
关于cuda - __match_any_sync 在计算能力 6 上的替代方案是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59879285/
在 cuda 示例中,e.g. here , __match_all_sync __match_any_sync用来。 这是一个例子,其中一个经线被分成多个(一个或多个)组,每个组都跟踪自己的原子计数
我是一名优秀的程序员,十分优秀!