Changes between Version 3 and Version 4 of OpenCL_Memo
- Timestamp:
- Dec 9, 2009 11:18:36 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
OpenCL_Memo
v3 v4 13 13 == __local & __global == 14 14 http://forums.amd.com/devforum/messageview.cfm?catid=390&threadid=123350&enterthread=y 15 {{{ 16 It's a tricky question . On 4xxx __local mem is really __global mem ( ATI thinks it's too much work to optimize compiler to use 48xx LDS - although it's possible ). 17 On 5xxx __local is LDS - so it's located in simd core. 18 }}} 15 19 16 It's a tricky question . On 4xxx __local mem is really __global mem ( ATI thinks it's too much work to optimize compiler to use 48xx LDS - although it's possible ). On 5xxx __local is LDS - so it's located in simd core.17