Skip to content

Commit

Permalink
Merge pull request #1 from csubich/main
Browse files Browse the repository at this point in the history
Increase IOSIZE in hellworld and warpdrive cases
  • Loading branch information
carns authored Aug 11, 2021
2 parents b2f6357 + 22ae879 commit 3ee0343
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion darshan/helloworld/helloworld.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <getopt.h>
#include <limits.h>

#define IOSIZE 20000
#define IOSIZE 200000

static int example1A(const char* dir, int rank, int nprocs);

Expand Down
3 changes: 3 additions & 0 deletions darshan/helloworld/helloworld.qsub
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ rm -rf /grand/projects/ATPESC2021/usr/$USER/helloworld

# submit job
aprun -n 256 -N 64 ./helloworld /grand/projects/ATPESC2021/usr/$USER/

# delete the new file to avoid exhausing the ATPESC quota
rm -rf /grand/projects/ATPESC2021/usr/$USER/helloworld
2 changes: 1 addition & 1 deletion darshan/warpdrive/warpdriveA.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <getopt.h>
#include <limits.h>

#define IOSIZE 20000
#define IOSIZE 200000

static int example1A(const char* dir, int rank, int nprocs);

Expand Down
3 changes: 3 additions & 0 deletions darshan/warpdrive/warpdriveA.qsub
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ rm -rf /grand/projects/ATPESC2021/usr/$USER/warpdriveA

# submit job
aprun -n 256 -N 64 ./warpdriveA /grand/projects/ATPESC2021/usr/$USER/

# delete new file to avoid exhausting ATPESC quota
rm -rf /grand/projects/ATPESC2021/usr/$USER/warpdriveA
2 changes: 1 addition & 1 deletion darshan/warpdrive/warpdriveB.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#include <getopt.h>
#include <limits.h>

#define IOSIZE 20000
#define IOSIZE 200000

static int example1B(const char* dir, int rank, int nprocs);

Expand Down
3 changes: 3 additions & 0 deletions darshan/warpdrive/warpdriveB.qsub
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ rm -rf /grand/projects/ATPESC2021/usr/$USER/warpdriveB

# submit job
aprun -n 256 -N 64 ./warpdriveB /grand/projects/ATPESC2021/usr/$USER/

# delete new file to avoid exhausting ATPESC quota
rm -rf /grand/projects/ATPESC2021/usr/$USER/warpdriveB

0 comments on commit 3ee0343

Please sign in to comment.