Skip to content

Commit

Permalink
Kill internal comments that mention debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
eisenhauer committed Feb 21, 2023
1 parent 67e0dd2 commit e68c944
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
myArray = numpy.array([0., 1., 2., 3., 4., 5., 6., 7., 8., 9.])
Nx = myArray.size

# ADIOS config file, MPI communicator, debug mode
# ADIOS config file, MPI communicator
adios = adios2.ADIOS("helloBPWriter.xml", comm)

# ADIOS IO, name must be the same as in helloBPWriter.xml for runtime settings
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
myArray = numpy.array([0., 1., 2., 3., 4., 5., 6., 7., 8., 9.])
Nx = myArray.size

# ADIOS config file, debug mode
# ADIOS config file
adios = adios2.ADIOS("helloBPWriter.xml")

# ADIOS IO, name must be the same as in helloBPWriter.xml for runtime settings
Expand Down
2 changes: 1 addition & 1 deletion examples/hello/bpFWriteCRead/FReader.f90
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ program FReader
call MPI_Comm_size(MPI_COMM_WORLD, isize, ierr)

if( irank == 0 ) then
! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
call adios2_init(adios, MPI_COMM_SELF, ierr)

! Declare an IO process configuration inside adios
Expand Down
2 changes: 1 addition & 1 deletion examples/hello/bpFWriteCRead/FWriter.f90
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ program FWriter
count_dims(1) = inx
count_dims(2) = iny

! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
call adios2_init(adios, MPI_COMM_WORLD, ierr)

! Declare an IO process configuration inside adios
Expand Down
2 changes: 1 addition & 1 deletion examples/hello/bpWriter/helloBPWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
myArray = numpy.array([0, 1., 2., 3., 4., 5., 6., 7., 8., 9.])
Nx = myArray.size

# ADIOS MPI Communicator, debug mode
# ADIOS MPI Communicator
adios = adios2.ADIOS(comm)

# ADIOS IO
Expand Down
2 changes: 1 addition & 1 deletion examples/hello/sstWriter/helloSstWriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
rank = comm.Get_rank()
size = comm.Get_size()

# ADIOS MPI Communicator, debug mode
# ADIOS MPI Communicator
adios = adios2.ADIOS(comm)

# ADIOS IO
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ program TestBPWriteAttributes
! MPI_THREAD_MULTIPLE is only required if you enable the SST MPI_DP
call MPI_Init_thread(MPI_THREAD_MULTIPLE, provided, ierr)

! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
call adios2_init(adios, MPI_COMM_WORLD, ierr)

!!!!!!!!!!!!!!!!!!!!!!!!! WRITER !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Expand Down
2 changes: 1 addition & 1 deletion testing/adios2/bindings/fortran/TestBPWriteTypes.F90
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ program TestBPWriteTypes
if( bpWriter%valid .eqv. .true. ) stop 'Invalid engine default'


! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
#if ADIOS2_USE_MPI
call adios2_init(adios, MPI_COMM_WORLD, ierr)
#else
Expand Down
2 changes: 1 addition & 1 deletion testing/adios2/bindings/fortran/TestBPWriteTypesByName.F90
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ program TestBPWriteTypes
start_dims(1) = irank*inx
count_dims(1) = inx

! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
call adios2_init(adios, MPI_COMM_WORLD, ierr)

!!!!!!!!!!!!!!!!!!!!!!!!! WRITER !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Expand Down
2 changes: 1 addition & 1 deletion testing/adios2/bindings/fortran/TestBPWriteTypesLocal.F90
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ program TestBPWriteTypes
count_dims(1) = inx
changing_count_dims(1) = inx

! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
call adios2_init(adios, MPI_COMM_WORLD, ierr)

!!!!!!!!!!!!!!!!!!!!!!!!! WRITER !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ program TestBPWriteVariableAttributes
! MPI_THREAD_MULTIPLE is only required if you enable the SST MPI_DP
call MPI_Init_thread(MPI_THREAD_MULTIPLE, provided, ierr)

! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
call adios2_init(adios, MPI_COMM_WORLD, ierr)

!!!!!!!!!!!!!!!!!!!!!!!!! WRITER !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Expand Down
2 changes: 1 addition & 1 deletion testing/adios2/bindings/fortran/TestNullEngine.F90
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ program TestNullEngine
! Variable dimensions
count_dims(1) = inx

! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
call adios2_init(adios, MPI_COMM_WORLD, ierr)

!!!!!!!!!!!!!!!!!!!!!!!!! WRITER !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Expand Down
2 changes: 1 addition & 1 deletion testing/adios2/bindings/fortran/TestRemove.F90
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ program TestRemove
start_dims(1) = irank*inx
count_dims(1) = inx

! Create adios handler passing the communicator, debug mode and error flag
! Create adios handler passing the communicator and error flag
#if ADIOS2_USE_MPI
call adios2_init(adios, MPI_COMM_WORLD, ierr)
#else
Expand Down
4 changes: 2 additions & 2 deletions testing/adios2/engine/staging-common/TestCommonReadF.F90
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@ program TestSstRead
call MPI_Comm_rank(testComm, irank, ierr)
call MPI_Comm_size(testComm, isize, ierr)

!Create adios handler passing the communicator, debug mode and error flag
!Create adios handler passing the communicator and error flag
call adios2_init(adios, testComm, ierr)
#else
irank = 0;
isize = 1;

!Create adios handler passing the debug mode and error flag
!Create adios handler passing the error flag
call adios2_init(adios, ierr)
#endif
!!!!!!!!!!!!!!!!!!!!!!!!! READER !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Expand Down
2 changes: 1 addition & 1 deletion testing/adios2/engine/staging-common/TestCommonWriteF.F90
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ program TestSstWrite
count_time = (/ 1 /)

#if ADIOS2_USE_MPI
!Create adios handler passing the communicator, debug mode and error flag
!Create adios handler passing the communicator and error flag
call adios2_init(adios, testComm, ierr)
#else
call adios2_init(adios, ierr)
Expand Down

0 comments on commit e68c944

Please sign in to comment.