From e93e12b6a4f62b9ed4c1e8c74a6468bea4aafe17 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Wed, 3 Jun 2020 09:12:11 -0400 Subject: [PATCH] More verbose SYCL setup --- Grid/threads/Accelerator.cc | 44 ++++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/Grid/threads/Accelerator.cc b/Grid/threads/Accelerator.cc index ae02b437..fea812c7 100644 --- a/Grid/threads/Accelerator.cc +++ b/Grid/threads/Accelerator.cc @@ -153,24 +153,38 @@ void acceleratorInit(void) if ((localRankStr = getenv(ENV_RANK_OMPI )) != NULL) { world_rank = atoi(localRankStr);} if ((localRankStr = getenv(ENV_RANK_MVAPICH)) != NULL) { world_rank = atoi(localRankStr);} - /* - for (int i = 0; i < nDevices; i++) { + auto devices = cl::sycl::device::get_devices(); + for(int d = 0;d().c_str()); + +#define GPU_PROP_FMT(prop,FMT) \ + printf("AcceleratorSyclInit: " #prop ": " FMT" \n",prop,devices[d].get_info()); + +#define GPU_PROP(prop) GPU_PROP_FMT(prop,"%d"); + + GPU_PROP_STR(vendor); + GPU_PROP_STR(version); + GPU_PROP_STR(device_type); + GPU_PROP_STR(max_compute_units); + GPU_PROP(native_vector_width_char); + GPU_PROP(native_vector_width_short); + GPU_PROP(native_vector_width_int); + GPU_PROP(native_vector_width_long); + GPU_PROP(native_vector_width_float); + GPU_PROP(native_vector_width_double); + GPU_PROP(native_vector_width_half); + GPU_PROP(address_bits); + GPU_PROP(half_fp_config); + GPU_PROP(single_fp_config); + GPU_PROP(double_fp_config); + GPU_PROP(global_mem_size); -#define GPU_PROP_FMT(canMapHostMemory,FMT) printf("AcceleratorSyclInit: " #canMapHostMemory ": " FMT" \n",prop.canMapHostMemory); -#define GPU_PROP(canMapHostMemory) GPU_PROP_FMT(canMapHostMemory,"%d"); - - cudaGetDeviceProperties(&gpu_props[i], i); - if ( world_rank == 0) { - cudaDeviceProp prop; - prop = gpu_props[i]; - printf("AcceleratorSyclInit: ========================\n"); - printf("AcceleratorSyclInit: Device Number : %d\n", i); - printf("AcceleratorSyclInit: ========================\n"); - printf("AcceleratorSyclInit: Device identifier: %s\n", prop.name); - } } - */ if ( world_rank == 0 ) { + auto name = theGridAccelerator->get_device().get_info(); + printf("AcceleratorSyclInit: Selected device is %s\n",name.c_str()); printf("AcceleratorSyclInit: ================================================\n"); } }