mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r6901] Purpose:
Small feature. Description: Change the wording for the use of HDF5_PARAPREFIX from Remark to hint. Also made process 0 be the only one printing the hint rather all processes duplicating the same hints. Platforms tested: Copper, both serial and parallel. Did not do h5commit test since this is very localized and the above tests covered both cases already. Misc. update:
This commit is contained in:
parent
2f8c23b903
commit
4e36f49a2d
@ -290,24 +290,30 @@ h5_fixname(const char *base_name, hid_t fapl, char *fullname, size_t size)
|
||||
|
||||
/* Use different ones depending on parallel or serial driver used. */
|
||||
if (H5P_DEFAULT != fapl && H5FD_MPIO == driver){
|
||||
#ifdef H5_HAVE_PARALLEL
|
||||
/* For parallel:
|
||||
* First use command line option, then the environment variable,
|
||||
* then try the constant
|
||||
*/
|
||||
prefix = (paraprefix ? paraprefix : getenv("HDF5_PARAPREFIX"));
|
||||
if (!prefix && !HDF5_PARAPREFIX_explained){
|
||||
printf("*** Remark ***\n"
|
||||
/* print hint by process 0 once. */
|
||||
int mpi_rank;
|
||||
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
|
||||
if (mpi_rank == 0)
|
||||
printf("*** Hint ***\n"
|
||||
"You can use environment variable HDF5_PARAPREFIX to "
|
||||
"run parallel test files in a\n"
|
||||
"different directory or to add file type prefix. E.g.,\n"
|
||||
" HDF5_PARAPREFIX=pfs:/PFS/user/me\n"
|
||||
" export HDF5_PARAPREFIX\n"
|
||||
"*** End of Remark ***\n");
|
||||
"*** End of Hint ***\n");
|
||||
HDF5_PARAPREFIX_explained++;
|
||||
#ifdef HDF5_PARAPREFIX
|
||||
prefix = HDF5_PARAPREFIX;
|
||||
#endif /* HDF5_PARAPREFIX */
|
||||
}
|
||||
#endif
|
||||
}else{
|
||||
/* For serial:
|
||||
* First use the environment variable, then try the constant
|
||||
|
Loading…
x
Reference in New Issue
Block a user