From 3cc9947731c46d0845a99aa9668bf8b191375600 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Fri, 12 Jul 2019 06:47:51 +0100 Subject: [PATCH] Better welcome printing --- Grid/util/Init.cc | 261 ++++++++++++++++++++++++++-------------------- 1 file changed, 147 insertions(+), 114 deletions(-) diff --git a/Grid/util/Init.cc b/Grid/util/Init.cc index 881476f9..b88eaba4 100644 --- a/Grid/util/Init.cc +++ b/Grid/util/Init.cc @@ -239,116 +239,10 @@ static int Grid_is_initialised; ///////////////////////////////////////////////////////// // Reinit guard ///////////////////////////////////////////////////////// -void GridGpuInit(void) +void GridBanner(void) { -#ifdef GRID_NVCC - int nDevices = 1; - cudaGetDeviceCount(&nDevices); - - char * localRankStr = NULL; - - int rank = 0, device = 0, world_rank=0; -#define ENV_LOCAL_RANK_OMPI "OMPI_COMM_WORLD_LOCAL_RANK" -#define ENV_LOCAL_RANK_MVAPICH "MV2_COMM_WORLD_LOCAL_RANK" -#define ENV_RANK_OMPI "OMPI_COMM_WORLD_RANK" -#define ENV_RANK_MVAPICH "MV2_COMM_WORLD_RANK" - // We extract the local rank initialization using an environment variable - if ((localRankStr = getenv(ENV_LOCAL_RANK_OMPI)) != NULL) - { - rank = atoi(localRankStr); - device = rank %nDevices; - } - if ((localRankStr = getenv(ENV_LOCAL_RANK_MVAPICH)) != NULL) - { - rank = atoi(localRankStr); - device = rank %nDevices; - } - if ((localRankStr = getenv(ENV_RANK_OMPI )) != NULL) { world_rank = atoi(localRankStr);} - if ((localRankStr = getenv(ENV_RANK_MVAPICH)) != NULL) { world_rank = atoi(localRankStr);} - - - cudaSetDevice(device); - - for (int i = 0; i < nDevices; i++) { - cudaDeviceProp prop; - cudaGetDeviceProperties(&prop, i); - - if ( world_rank == 0) { - printf("Device Number: %d\n", i); - printf(" Device name: %s\n", prop.name); - printf(" Peak Memory Bandwidth (GB/s): %f\n\n",2.0*prop.memoryClockRate*(prop.memoryBusWidth/8)/1.0e6); - -#define GPU_PROP_FMT(canMapHostMemory,FMT) printf(" " #canMapHostMemory ": " FMT" \n",prop.canMapHostMemory); -#define GPU_PROP(canMapHostMemory) printf(" " #canMapHostMemory ": %d \n",prop.canMapHostMemory); - GPU_PROP(isMultiGpuBoard); - GPU_PROP(l2CacheSize); - GPU_PROP(managedMemory); - GPU_PROP(singleToDoublePrecisionPerfRatio); - GPU_PROP(unifiedAddressing); - GPU_PROP(warpSize); - } - } -#endif -} - -void Grid_init(int *argc,char ***argv) -{ - GridGpuInit(); // Must come first to set device prior to MPI init - - assert(Grid_is_initialised == 0); - - GridLogger::GlobalStopWatch.Start(); - - std::string arg; - - //////////////////////////////////// - // Shared memory block size - //////////////////////////////////// - if( GridCmdOptionExists(*argv,*argv+*argc,"--shm") ){ - int MB; - arg= GridCmdOptionPayload(*argv,*argv+*argc,"--shm"); - GridCmdOptionInt(arg,MB); - uint64_t MB64 = MB; - GlobalSharedMemory::MAX_MPI_SHM_BYTES = MB64*1024LL*1024LL; - } - - if( GridCmdOptionExists(*argv,*argv+*argc,"--shm-hugepages") ){ - GlobalSharedMemory::Hugepages = 1; - } - - - if( GridCmdOptionExists(*argv,*argv+*argc,"--debug-signals") ){ - Grid_debug_handler_init(); - } - - CartesianCommunicator::Init(argc,argv); - - if( !GridCmdOptionExists(*argv,*argv+*argc,"--debug-stdout") ){ - Grid_quiesce_nodes(); - } else { - FILE *fp; - std::ostringstream fname; - fname<<"Grid.stdout."; - fname< logstreams; std::string defaultLog("Error,Warning,Message,Performance"); GridCmdOptionCSL(defaultLog,logstreams); @@ -491,10 +528,6 @@ void Grid_init(int *argc,char ***argv) Grid_default_latt, Grid_default_mpi); - std::cout << GridLogMessage << "Requesting "<< GlobalSharedMemory::MAX_MPI_SHM_BYTES <<" byte stencil comms buffers "<