Skip to content

Commit

Permalink
Reduce astounishements with -g 0, -g -1, no -g at all having
Browse files Browse the repository at this point in the history
inconsistent effects on parsec.
All these options would report that 0 devices are enabled, but the
runtime would still use devices (despite some of them explicitely saying
otherwise).
  • Loading branch information
abouteiller committed Feb 7, 2024
1 parent 416aec9 commit 90d1c8f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 20 deletions.
37 changes: 19 additions & 18 deletions tests/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,6 @@ static void read_arguments(int *_argc, char*** _argv, int* iparam)
int argc = *_argc;
char **argv = *_argv;
char *add_dot = NULL;
char *value;

/* Default seed */
iparam[IPARAM_RANDOM_SEED] = 3872;
Expand Down Expand Up @@ -323,12 +322,7 @@ static void read_arguments(int *_argc, char*** _argv, int* iparam)
fprintf(stderr, "#!!!!! This test does not have GPU support. GPU disabled.\n");
break;
}
if(optarg) iparam[IPARAM_NGPUS] = atoi(optarg);
else iparam[IPARAM_NGPUS] = INT_MAX;

rc = asprintf(&value, "%d", iparam[IPARAM_NGPUS]);
parsec_setenv_mca_param( "device_cuda_enabled", value, &environ );
free(value);
iparam[IPARAM_NGPUS] = atoi(optarg);
break;

case 'p': case 'P': iparam[IPARAM_P] = atoi(optarg); break;
Expand Down Expand Up @@ -442,18 +436,23 @@ static void read_arguments(int *_argc, char*** _argv, int* iparam)

static void parse_arguments(int *iparam) {
int verbose = iparam[IPARAM_RANK] ? 0 : iparam[IPARAM_VERBOSE];
char *value;
int rc;

/* we want to run at least once, right? */
if(iparam[IPARAM_NRUNS] < 1) iparam[IPARAM_NRUNS] = 1;

if(iparam[IPARAM_NGPUS] < 0) iparam[IPARAM_NGPUS] = 0;
if(iparam[IPARAM_NGPUS] > 0) {
if (iparam[IPARAM_VERBOSE] > 3) {
parsec_setenv_mca_param( "device_show_capabilities", "1", &environ );
}
if (iparam[IPARAM_VERBOSE] > 2) {
parsec_setenv_mca_param( "device_show_statistics", "1", &environ );
}
if(iparam[IPARAM_NGPUS] == DPLASMA_ERR_NOT_SUPPORTED) iparam[IPARAM_NGPUS] = 0;
if(iparam[IPARAM_NGPUS] != DPLASMA_ERR_NOT_INITIALIZED) {
rc = asprintf(&value, "%d", iparam[IPARAM_NGPUS]); (void)rc;
parsec_setenv_mca_param( "device_cuda_enabled", value, &environ );
free(value);
}
if(iparam[IPARAM_VERBOSE] >= 4) {
parsec_setenv_mca_param( "device_show_capabilities", "1", &environ );
}
if(iparam[IPARAM_NGPUS] && iparam[IPARAM_VERBOSE] >= 3) {
parsec_setenv_mca_param( "device_show_statistics", "1", &environ );
}

/* Check the process grid */
Expand Down Expand Up @@ -501,8 +500,8 @@ static void parse_arguments(int *iparam) {
assert(iparam[IPARAM_IB]); /* check that defaults have been set */
if(iparam[IPARAM_NB] <= 0 && iparam[IPARAM_MB] > 0) iparam[IPARAM_NB] = iparam[IPARAM_MB];
if(iparam[IPARAM_MB] <= 0 && iparam[IPARAM_NB] > 0) iparam[IPARAM_MB] = iparam[IPARAM_NB];
if(iparam[IPARAM_NGPUS] && iparam[IPARAM_MB] < 0) iparam[IPARAM_MB] = -384;
if(iparam[IPARAM_NGPUS] && iparam[IPARAM_NB] < 0) iparam[IPARAM_NB] = -384;
if(iparam[IPARAM_NGPUS] > 0 && iparam[IPARAM_MB] < 0) iparam[IPARAM_MB] = -384;
if(iparam[IPARAM_NGPUS] > 0 && iparam[IPARAM_NB] < 0) iparam[IPARAM_NB] = -384;
if(iparam[IPARAM_MB] < 0) iparam[IPARAM_MB] = -iparam[IPARAM_MB];
if(iparam[IPARAM_NB] < 0) iparam[IPARAM_NB] = -iparam[IPARAM_NB];

Expand Down Expand Up @@ -576,6 +575,7 @@ static void iparam_default(int* iparam)
{
/* Just in case someone forget to add the initialization :) */
memset(iparam, 0, IPARAM_SIZEOF * sizeof(int));
iparam[IPARAM_NGPUS] = DPLASMA_ERR_NOT_INITIALIZED; /* let parsec choose */
iparam[IPARAM_NNODES] = 1;
iparam[IPARAM_ASYNC] = 1;
iparam[IPARAM_QR_DOMINO] = -1;
Expand Down Expand Up @@ -696,7 +696,6 @@ parsec_context_t* setup_parsec(int argc, char **argv, int *iparam)
}
iparam[IPARAM_NCORES] = nb_total_comp_threads;
}
print_arguments(iparam);

#if defined(DPLASMA_HAVE_CUDA)
int dev, nbgpu = 0;
Expand All @@ -713,8 +712,10 @@ parsec_context_t* setup_parsec(int argc, char **argv, int *iparam)
NULL);
assert(-1 != CuHI);
}
iparam[IPARAM_NGPUS] = nbgpu;
#endif

print_arguments(iparam);
if(verbose > 2) TIME_PRINT(iparam[IPARAM_RANK], ("PaRSEC initialized\n"));
return ctx;
}
Expand Down
4 changes: 2 additions & 2 deletions tests/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ static inline int min(int a, int b) { return a < b ? a : b; }
P, Q, gpus, NB, N, \
gflops=(flops/1e9)/sync_time_elapsed)); \
PASTE_PROF_INFO; \
if(loud >= 4) parsec_devices_print_statistics(PARSEC, dev_stats); \
if(gpus && loud >= 3) parsec_devices_print_statistics(PARSEC, dev_stats); \
if(loud >= 5 && rank == 0) { \
printf("<DartMeasurement name=\"performance\" type=\"numeric/double\"\n" \
" encoding=\"none\" compression=\"none\">\n" \
Expand Down Expand Up @@ -281,7 +281,7 @@ static inline int min(int a, int b) { return a < b ? a : b; }
stime_A,stime_C); \
} \
PASTE_PROF_INFO; \
if(loud >= 4) parsec_devices_print_statistics(PARSEC, dev_stats); \
if(gpus && loud >= 3) parsec_devices_print_statistics(PARSEC, dev_stats); \
if(loud >= 5 && rank == 0) { \
printf("<DartMeasurement name=\"performance\" type=\"numeric/double\"\n" \
" encoding=\"none\" compression=\"none\">\n" \
Expand Down

0 comments on commit 90d1c8f

Please sign in to comment.