以下程序使用“Cuda By Example”中的原子锁实现,但运行该程序会使我的机器冻结。有人可以告诉我我的程序有什么问题吗?非常感谢
逸飞
#include <stdio.h>
__global__ void test()
{
__shared__ int i, mutex;
if (threadIdx.x == 0) {
i = 0;
mutex = 0;
}
__syncthreads();
while( atomicCAS(&mutex, 0, 1) != 0);
i++;
printf("thread %d: %d\n", threadIdx.x, i);
atomicExch(&mutex,0);
}