Skip to content

Commit

Permalink
Cleaning up files to get ready to push bug fix changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Katetc committed Sep 28, 2015
1 parent 5d8aa2d commit 9365829
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 11 deletions.
10 changes: 0 additions & 10 deletions src/clib/pio_darray.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ void compute_buffer_init(iosystem_desc_t ios)
ndims = iodesc->ndims;
msg = 0;

printf("PIO_WRITE_DARRAY_NC %s %d \n",__FILE__,__LINE__);

if(ios->async_interface && ! ios->ioproc){
if(ios->comp_rank==0)
mpierr = MPI_Send(&msg, 1,MPI_INT, ios->ioroot, 1, ios->union_comm);
Expand Down Expand Up @@ -372,8 +370,6 @@ int pio_write_darray_multi_nc(file_desc_t *file, const int nvars, const int vid[
}
msg = 0;

printf("PIO_WRITE_DARRAY_MULTI_NC %s %d \n",__FILE__,__LINE__);

if(ios->async_interface && ! ios->ioproc){
if(ios->comp_rank==0)
mpierr = MPI_Send(&msg, 1,MPI_INT, ios->ioroot, 1, ios->union_comm);
Expand Down Expand Up @@ -644,8 +640,6 @@ int PIOc_write_darray_multi(const int ncid, const int vid[], const int ioid, con
return PIO_EBADID;
}

printf("PIOc_WRITE_DARRAY_MULTI %s %d \n",__FILE__,__LINE__);

vdesc0 = file->varlist+vid[0];

pioassert(nvars>0,"nvars <= 0",__FILE__,__LINE__);
Expand Down Expand Up @@ -781,8 +775,6 @@ int PIOc_write_darray_multi(const int ncid, const int vid[], const int ioid, con
}
ios = file->iosystem;

printf("PIOc_WRITE_DARRAY buffer %s %d \n",__FILE__,__LINE__);

vdesc = (file->varlist)+vid;
if(vdesc == NULL)
return PIO_EBADID;
Expand Down Expand Up @@ -978,8 +970,6 @@ int PIOc_write_darray_multi(const int ncid, const int vid[], const int ioid, con
}
iobuf = NULL;

printf("PIOc_WRITE_DARRAY no buf %s %d \n",__FILE__,__LINE__);

ios = file->iosystem;

rlen = iodesc->llen;
Expand Down
1 change: 1 addition & 0 deletions src/flib/piodarray.F90.in
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,7 @@ contains
#if (__GFORTRAN__) && (__GNUC__ == 4) && (__GNUC_MINOR__ < 8)
{VTYPE}, allocatable :: acopy(:)
integer :: isize

isize= size(array)
allocate(acopy(isize))
acopy = reshape(array,(/isize/))
Expand Down
1 change: 0 additions & 1 deletion tests/performance/pioperformance.F90
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#define VARINT 1
#define VARREAL 1
#define VARDOUBLE 1
#define DEBUG 1

program pioperformance
#ifndef NO_MPIMOD
Expand Down

0 comments on commit 9365829

Please sign in to comment.