-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add test program for file create and open
- Loading branch information
Showing
2 changed files
with
86 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
/* | ||
* Copyright (C) 2024, Northwestern University and Argonne National Laboratory | ||
* See COPYRIGHT notice in top-level directory. | ||
*/ | ||
|
||
/* | ||
This program tests ncmpi_create(), ncmpi_open(), and ncmpi_close(). | ||
*/ | ||
|
||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <libgen.h> /* basename() */ | ||
|
||
#include <mpi.h> | ||
#include <pnetcdf.h> | ||
#include <testutils.h> | ||
|
||
int main(int argc, char **argv) | ||
{ | ||
char filename[512]; | ||
int i, err, nprocs, rank, nerrs=0, ncid; | ||
int format[3] = {0, NC_64BIT_OFFSET, NC_64BIT_DATA}; | ||
|
||
MPI_Init(&argc, &argv); | ||
MPI_Comm_size(MPI_COMM_WORLD, &nprocs); | ||
MPI_Comm_rank(MPI_COMM_WORLD, &rank); | ||
|
||
if (argc > 2) { | ||
if (!rank) printf("Usage: %s [filename]\n",argv[0]); | ||
MPI_Finalize(); | ||
return 1; | ||
} | ||
if (argc == 2) snprintf(filename, 512, "%s", argv[1]); | ||
else sprintf(filename, "%s.nc", argv[0]); | ||
|
||
if (rank == 0) { | ||
char *cmd_str = (char *)malloc(strlen(argv[0]) + 256); | ||
sprintf(cmd_str, "*** TESTING C %s for file create", basename(argv[0])); | ||
printf("%-66s ------ ", cmd_str); | ||
free(cmd_str); | ||
} | ||
|
||
for (i=0; i<3; i++) { | ||
/* Create a new file */ | ||
int cmode = NC_CLOBBER | format[i]; | ||
err = ncmpi_create(MPI_COMM_WORLD, filename, cmode, MPI_INFO_NULL, &ncid); | ||
CHECK_ERR | ||
|
||
/* Close the file. */ | ||
err = ncmpi_close(ncid); | ||
CHECK_ERR | ||
|
||
/* Open the file */ | ||
err = ncmpi_open(MPI_COMM_WORLD, filename, NC_WRITE, MPI_INFO_NULL, &ncid); | ||
CHECK_ERR | ||
|
||
/* Close the file. */ | ||
err = ncmpi_close(ncid); | ||
CHECK_ERR | ||
} | ||
|
||
/* check if there is any malloc residue */ | ||
MPI_Offset malloc_size, sum_size; | ||
err = ncmpi_inq_malloc_size(&malloc_size); | ||
if (err == NC_NOERR) { | ||
MPI_Reduce(&malloc_size, &sum_size, 1, MPI_OFFSET, MPI_SUM, 0, MPI_COMM_WORLD); | ||
if (rank == 0 && sum_size > 0) | ||
printf("heap memory allocated by PnetCDF internally has %lld bytes yet to be freed\n", | ||
sum_size); | ||
} | ||
|
||
MPI_Allreduce(MPI_IN_PLACE, &nerrs, 1, MPI_INT, MPI_SUM, MPI_COMM_WORLD); | ||
if (rank == 0) { | ||
if (nerrs) | ||
printf(FAIL_STR, nerrs); | ||
else | ||
printf(PASS_STR); | ||
} | ||
|
||
MPI_Finalize(); | ||
|
||
return (nerrs > 0); | ||
} |