Skip to content

Commit

Permalink
Merge pull request #1038 from keichi/xl-summit
Browse files Browse the repository at this point in the history
Fix type error when compiling with IBM XL compiler on Summit
  • Loading branch information
williamfgc committed Dec 5, 2018
2 parents db7ee42 + d900895 commit 6e53dfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testing/adios2/engine/sst/TestSstReadF.f90
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ program TestSstRead
if (variables(1)%type /= adios2_type_integer1) stop 'i8 type not recognized'
call adios2_variable_shape(shape_in, ndims, variables(1), ierr)
if (ndims /= 1) stop 'i8 ndims is not 1'
if (modulo(shape_in(1), nx) /= 0) stop 'i8 shape_in read failed'
if (modulo(shape_in(1), int(nx, 8)) /= 0) stop 'i8 shape_in read failed'
writerSize = shape_in(1) / nx

call adios2_inquire_variable(variables(2), ioRead, "i16", ierr)
Expand Down

0 comments on commit 6e53dfb

Please sign in to comment.