Mentions légales du service

Skip to content
Snippets Groups Projects

Add OpenMP runtime for codelets

Merged Philippe Virouleau requested to merge viroulea/chameleon:feature-openmp into master
All threads resolved!
2 files
+ 6
5
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
2
@@ -147,7 +147,7 @@ Test(int64_t n, int *iparam) {
}
if ( CHAMELEON_My_Mpi_Rank() == 0)
printf( "%7d %7d %7d ", iparam[IPARAM_M], iparam[IPARAM_N], iparam[IPARAM_K] );
printf( "%10d %7d %7d %7d %7d ", iparam[IPARAM_THRDNBR], iparam[IPARAM_M], iparam[IPARAM_N], iparam[IPARAM_NB], iparam[IPARAM_K] );
fflush( stdout );
// FIXME: use posix_memalign, or hwloc allocation with first touch, to avoid
@@ -430,7 +430,7 @@ print_header(char *prog_name, int * iparam) {
iparam[IPARAM_IB],
eps );
printf( "# M N K/NRHS seconds Gflop/s Deviation%s%s\n",
printf( "# Threads M N BS K/NRHS seconds Gflop/s Deviation%s%s\n",
bound_header, iparam[IPARAM_INVERSE] ? inverse_header : check_header);
return;
}
Loading