/external/OpenCL-CTS/test_conformance/thread_dimensions/ |
D | test_thread_dimensions.cpp | 65 size_t max_workgroup_size = 0; in get_maximums() local 80 if (max_workgroup_size == 0) in get_maximums() 81 max_workgroup_size = current_workgroup_size; in get_maximums() 82 else if (current_workgroup_size < max_workgroup_size) in get_maximums() 83 max_workgroup_size = current_workgroup_size; in get_maximums() 112 …(int)max_workgroup_size, (double)(max_allocation/1024.0/1024.0), (double)(max_physical/1024.0/1024… in get_maximums() 113 *max_workgroup_size_result = max_workgroup_size; in get_maximums() 475 size_t max_workgroup_size = 0; in test_thread_dimensions() local 481 &max_workgroup_size, &max_allocation, &max_physical); in test_thread_dimensions() 501 …e is %gMB, max workgroup size is %d.\n", max_memory_size/(1024.0*1024.0), (int)max_workgroup_size); in test_thread_dimensions() [all …]
|
/external/OpenCL-CTS/test_conformance/basic/ |
D | test_async_copy.cpp | 121 size_t max_workgroup_size; in test_copy() local 122 …nfo(kernel, deviceID, CL_KERNEL_WORK_GROUP_SIZE, sizeof(max_workgroup_size), &max_workgroup_size, … in test_copy() 130 if (max_workgroup_size > max_local_workgroup_size[0]) in test_copy() 131 max_workgroup_size = max_local_workgroup_size[0]; in test_copy() 145 if (maxLocalWorkgroupSize > max_workgroup_size) in test_copy() 146 localWorkgroupSize = max_workgroup_size; in test_copy()
|
D | test_async_strided_copy.cpp | 107 size_t max_workgroup_size; in test_strided_copy() local 108 …nfo(kernel, deviceID, CL_KERNEL_WORK_GROUP_SIZE, sizeof(max_workgroup_size), &max_workgroup_size, … in test_strided_copy() 116 if (max_workgroup_size > max_local_workgroup_size[0]) in test_strided_copy() 117 max_workgroup_size = max_local_workgroup_size[0]; in test_strided_copy() 140 if (maxLocalWorkgroupSize > max_workgroup_size) in test_strided_copy() 141 localWorkgroupSize = max_workgroup_size; in test_strided_copy()
|
D | test_async_copy2D.cpp | 168 size_t max_workgroup_size; in test_copy2D() local 170 kernel, deviceID, CL_KERNEL_WORK_GROUP_SIZE, sizeof(max_workgroup_size), in test_copy2D() 171 &max_workgroup_size, NULL); in test_copy2D() 184 if (max_workgroup_size > max_local_workgroup_size[0]) in test_copy2D() 185 max_workgroup_size = max_local_workgroup_size[0]; in test_copy2D() 208 if (maxLocalWorkgroupSize > max_workgroup_size) in test_copy2D() 209 localWorkgroupSize = max_workgroup_size; in test_copy2D()
|
D | test_async_copy_fence.cpp | 395 size_t max_workgroup_size; in test_copy_fence() local 397 kernel, deviceID, CL_KERNEL_WORK_GROUP_SIZE, sizeof(max_workgroup_size), in test_copy_fence() 398 &max_workgroup_size, NULL); in test_copy_fence() 411 if (max_workgroup_size > max_local_workgroup_size[0]) in test_copy_fence() 412 max_workgroup_size = max_local_workgroup_size[0]; in test_copy_fence() 433 if (maxLocalWorkgroupSize > max_workgroup_size) in test_copy_fence() 434 localWorkgroupSize = max_workgroup_size; in test_copy_fence()
|
D | test_async_copy3D.cpp | 184 size_t max_workgroup_size; in test_copy3D() local 186 kernel, deviceID, CL_KERNEL_WORK_GROUP_SIZE, sizeof(max_workgroup_size), in test_copy3D() 187 &max_workgroup_size, NULL); in test_copy3D() 200 if (max_workgroup_size > max_local_workgroup_size[0]) in test_copy3D() 201 max_workgroup_size = max_local_workgroup_size[0]; in test_copy3D() 227 if (maxLocalWorkgroupSize > max_workgroup_size) in test_copy3D() 228 localWorkgroupSize = max_workgroup_size; in test_copy3D()
|
/external/deqp/external/openglcts/modules/glesext/texture_buffer/ |
D | esextcTextureBufferParamValueIntToFloatConversion.cpp | 80 glw::GLint max_workgroup_size; in initTest() local 81 gl.getIntegeri_v(GL_MAX_COMPUTE_WORK_GROUP_SIZE, 0, &max_workgroup_size); in initTest() 84 …p_x_size = m_work_group_y_size = de::min((glw::GLuint)floor(sqrt((float)max_workgroup_size)), 16u); in initTest()
|
/external/OpenCL-CTS/test_conformance/api/ |
D | test_api_min_max.cpp | 2184 size_t max_workgroup_size = 0, preferred_workgroup_size = 0; in test_min_max_kernel_preferred_work_group_size_multiple() local 2191 sizeof(max_workgroup_size), in test_min_max_kernel_preferred_work_group_size_multiple() 2192 &max_workgroup_size, NULL); in test_min_max_kernel_preferred_work_group_size_multiple() 2207 log_info("size: %ld preferred: %ld max: %ld\n", max_workgroup_size, in test_min_max_kernel_preferred_work_group_size_multiple() 2210 if (preferred_workgroup_size > max_workgroup_size) in test_min_max_kernel_preferred_work_group_size_multiple() 2214 preferred_workgroup_size, max_workgroup_size); in test_min_max_kernel_preferred_work_group_size_multiple()
|
/external/ComputeLibrary/tests/framework/instruments/ |
D | hwc.hpp | 95 uint32_t max_workgroup_size; member
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_shader_internal.h | 230 unsigned num_return_elems, unsigned max_workgroup_size);
|
D | si_shader_llvm.c | 141 unsigned num_return_elems, unsigned max_workgroup_size) in si_llvm_create_func() argument 192 ac_llvm_set_workgroup_size(ctx->main_fn, max_workgroup_size); in si_llvm_create_func()
|
D | si_shader.c | 994 unsigned max_workgroup_size = si_get_max_workgroup_size(shader); in si_calculate_max_simd_waves() local 996 DIV_ROUND_UP(max_workgroup_size, sscreen->compute_wave_size); in si_calculate_max_simd_waves()
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_shader.c | 1518 unsigned max_workgroup_size = sizes[0] * sizes[1] * sizes[2]; in radv_get_max_workgroup_size() local 1519 return max_workgroup_size; in radv_get_max_workgroup_size() 1541 unsigned max_workgroup_size = in radv_get_max_waves() local 1544 DIV_ROUND_UP(max_workgroup_size, wave_size); in radv_get_max_waves()
|
D | radv_nir_to_llvm.c | 53 unsigned max_workgroup_size; member 240 unsigned max_workgroup_size, in create_llvm_function() argument 252 ac_llvm_set_workgroup_size(main_function, max_workgroup_size); in create_llvm_function() 328 ctx->max_workgroup_size, in create_function() 3833 ctx.max_workgroup_size = 0; in ac_translate_nir_to_llvm() 3835 ctx.max_workgroup_size = MAX2(ctx.max_workgroup_size, in ac_translate_nir_to_llvm() 3844 ctx.max_workgroup_size = 128; in ac_translate_nir_to_llvm()
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_device.c | 1513 const uint32_t max_workgroup_size = 32 * MIN2(64, devinfo->max_cs_threads); in anv_GetPhysicalDeviceProperties() local 1573 .maxComputeWorkGroupInvocations = max_workgroup_size, in anv_GetPhysicalDeviceProperties() 1575 max_workgroup_size, in anv_GetPhysicalDeviceProperties() 1576 max_workgroup_size, in anv_GetPhysicalDeviceProperties() 1577 max_workgroup_size, in anv_GetPhysicalDeviceProperties()
|