Skip to content

Commit

Permalink
doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed Jun 20, 2019
1 parent 3987068 commit dba0dba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/c/example1.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <mpe.h>
#endif /* USE_MPE */

/* The name of this program. */
/** The name of this program. */
#define TEST_NAME "example1"

/** The number of possible output netCDF output flavors available to
Expand Down
2 changes: 1 addition & 1 deletion examples/c/examplePio.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <mpe.h>
#endif /* USE_MPE */

/* The name of this program. */
/** The name of this program. */
#define TEST_NAME "examplePio"

/** The length of our 1-d data array. */
Expand Down
15 changes: 7 additions & 8 deletions tests/cunit/test_perf2.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
#define NDIM3 3

/* The length of our sample data along each dimension. */
#define X_DIM_LEN 128
#define Y_DIM_LEN 128
#define Z_DIM_LEN 32
/* #define X_DIM_LEN 1024 */
/* #define Y_DIM_LEN 1024 */
/* #define Z_DIM_LEN 128 */
/* #define X_DIM_LEN 128 */
/* #define Y_DIM_LEN 128 */
/* #define Z_DIM_LEN 32 */
#define X_DIM_LEN 1024
#define Y_DIM_LEN 1024
#define Z_DIM_LEN 128

/* The number of timesteps of data to write. */
#define NUM_TIMESTEPS 10
Expand Down Expand Up @@ -254,8 +254,7 @@ test_darray(int iosysid, int ioid, int num_flavors, int *flavor,
/* Start the clock. */
gettimeofday(&starttime, NULL);

/* for (int t = 0; t < NUM_TIMESTEPS; t++) */
for (int t = 0; t < 1; t++)
for (int t = 0; t < NUM_TIMESTEPS; t++)
{
/* Initialize some data. */
for (int f = 0; f < arraylen; f++)
Expand Down

0 comments on commit dba0dba

Please sign in to comment.