any solutions?
Is that even possible?
__global *float abc; // pointer to global memory stored in private memory
I want abc to be st
I think this is clarified here List 5.2:
__global int global_data[128]; // 128 integers allocated on global memory
__local float *lf; // pointer placed on the private memory, which points to a single-precision float located on the local memory
__global char * __local lgc[8]; // 8 pointers stored on the local memory that points to a char located on the global memory
As I understand for pointers: [where they point] type * [where to store] name;