Removed atomicInc and atomicDec support from HIP

[ROCm/hip commit: 8c40a4ace4]
This commit is contained in:
gargrahul
2016-02-10 04:29:55 +05:30
parent c38a69ef33
commit 1ab2294657
2 changed files with 16 additions and 28 deletions
@@ -435,8 +435,8 @@ HIP supports the following atomic operations.
| int atomicMax(int* address, int val) | ✓ | ✓ |
| unsigned int atomicMax(unsigned int* address,unsigned int val) | ✓ | ✓ |
| unsigned long long int atomicMax(unsigned long long int* address,unsigned long long int val) | ✓ | ✓ |
| unsigned int atomicInc(unsigned int* address)| ✓ <br><sub>Takes one argument.</sub> | ✓ <br><sub> Wrapping increment,takes two arguments.</sub> |
| unsigned int atomicDec(unsigned int* address)| ✓ <br><sub>Takes one argument.</sub> | ✓ <br><sub> Wrapping decrement,takes two arguments.</sub> |
| unsigned int atomicInc(unsigned int* address)| ✗ | ✓ |
| unsigned int atomicDec(unsigned int* address)| ✗ | ✓ |
| int atomicCAS(int* address, int compare, int val) | ✓ | ✓ |
| unsigned int atomicCAS(unsigned int* address,unsigned int compare,unsigned int val) | ✓ | ✓ |
| unsigned long long int atomicCAS(unsigned long long int* address,unsigned long long int compare,unsigned long long int val) | ✓ | ✓ |