Blame view
kernels/lock.cl
494 Bytes
1b1e928cc initial import of... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
// Locking void lock_p(global int * lock, int id) { while (atomic_cmpxchg(lock, -1, id) != id) {}; } void lock_v(global int * lock, int id) { atomic_xchg(lock, -1); } #define LOCK_P(lock, id) while (atomic_cmpxchg(lock, -1, id) != id) {} #define LOCK_V(lock, id) while (atomic_cmpxchg(lock, id, -1) != -1) {} kernel void locktest( global int *lock, global int *counter) { LOCK_P(lock, get_global_id(0)); *counter = *counter + 1; LOCK_V(lock, get_global_id(0)); } |