Searched refs:get_local_id (Results 1 – 25 of 28) sorted by relevance
12
4 size_t id = (get_local_size(1) * get_local_size(2) * get_local_id(0)) + \5 (get_local_size(2) * get_local_id(1)) + \6 get_local_id(2); \
9 (get_local_id(0) & ((1 << 3) - 1));1201 (get_local_id(0) & ((1 << 3) - 1));2368 shared.m[get_local_id(0) + (2 * (1 << 3) * 0)] = r1;2369 shared.m[get_local_id(0) + (2 * (1 << 3) * 1)] = r16;2370 shared.m[get_local_id(0) + (2 * (1 << 3) * 2)] = r2;2371 shared.m[get_local_id(0) + (2 * (1 << 3) * 3)] = r15;2372 shared.m[get_local_id(0) + (2 * (1 << 3) * 4)] = r3;2373 shared.m[get_local_id(0) + (2 * (1 << 3) * 5)] = r14;2374 shared.m[get_local_id(0) + (2 * (1 << 3) * 6)] = r4;2375 shared.m[get_local_id(0) + (2 * (1 << 3) * 7)] = r13;[all …]
21 unsigned int local_id_x = get_local_id(0);22 unsigned int local_id_y = get_local_id(1);23 unsigned int local_id_z = get_local_id(2);
9 (get_local_id(0) & ((1 << 4) - 1));712 (get_local_id(0) & ((1 << 4) - 1));1398 shared.m[get_local_id(0) + (2 * (1 << 4) * 0)] = r1;1399 shared.m[get_local_id(0) + (2 * (1 << 4) * 1)] = r8;1400 shared.m[get_local_id(0) + (2 * (1 << 4) * 2)] = r2;1401 shared.m[get_local_id(0) + (2 * (1 << 4) * 3)] = r7;1402 shared.m[get_local_id(0) + (2 * (1 << 4) * 4)] = r3;1403 shared.m[get_local_id(0) + (2 * (1 << 4) * 5)] = r6;1404 shared.m[get_local_id(0) + (2 * (1 << 4) * 6)] = r4;1405 shared.m[get_local_id(0) + (2 * (1 << 4) * 7)] = r5;[all …]
840 …up_id(0) * get_local_size(0) * pixelsPerWorkItem * number_channels + (get_local_id(0) * number_cha…914 for (int i=get_local_id(0); i < loadSize; i=i+get_local_size(0))934 result+=filter[i+j]*temp[i+j+get_local_id(0)];939 result+=filter[i]*temp[i+get_local_id(0)];974 for (int i = get_local_id(1); i < loadSize; i=i+get_local_size(1))991 result+=filter[i+j]*temp[i+j+get_local_id(1)];996 result+=filter[i]*temp[i+get_local_id(1)];1274 int localID = get_local_id(1)*get_local_size(0)+get_local_id(0);1302 imageIndex.x = imageAreaOrg.x + get_local_id(0);1303 imageIndex.y = imageAreaOrg.y + get_local_id(1);[all …]
27 br label %get_local_id.exit29 get_local_id.exit: ; preds = %436 ; <label>:9 ; preds = %get_local_id.exit37 %10 = phi i32 [ %8, %get_local_id.exit ]
1 _CLC_DECL _CLC_OVERLOAD size_t get_local_id(uint dim);
4 return get_group_id(dim) * get_local_size(dim) + get_local_id(dim);
3 _CLC_DEF _CLC_OVERLOAD size_t get_local_id(uint dim) {
4 return get_group_id(dim) * get_local_size(dim) + get_local_id(dim) + get_global_offset(dim);
104 (get_local_id(0) & (HS_SLAB_THREADS-1))127 shared.m[get_local_id(0) + (offset)]148 HS_SLAB_HEIGHT + get_local_id(0); \
5 workitem/get_local_id.cl
3 _CLC_DEF _CLC_OVERLOAD uint get_local_id(uint dim) {
9 workitem/get_local_id.cl
11 workitem/get_local_id.cl
23 size_t lid = get_local_id(0);
53 uint const tid = get_local_id(0);
38 cl_ulong get_local_id[MAX_DIMS]; member
106 #define SKC_RASTERS_ALLOC_LOCAL_ID() get_local_id(0)
13 # uint i = get_local_id(0);
13 ; This test case checks whether the openCl runtime functions (get_local_id/get_group_id) return the…