Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed failure on BE with xlf #968

Merged
merged 25 commits into from
Aug 30, 2021
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b67893f
fixed missed closing of a dataset
brtnfld Feb 3, 2021
e5b8c8b
fixed missed closing of a dataset
brtnfld Feb 3, 2021
e0e0163
Merge remote-tracking branch 'upstream/develop' into develop
brtnfld Feb 17, 2021
268638f
Merge remote-tracking branch 'upstream/develop' into develop
brtnfld Feb 25, 2021
c20acc1
fixed typo in error return
brtnfld Feb 26, 2021
a920bdc
Merge remote-tracking branch 'upstream/develop' into develop
brtnfld Mar 2, 2021
91d6bcb
Merge remote-tracking branch 'upstream/develop' into develop
brtnfld Mar 19, 2021
0550cbb
Committing clang-format changes
github-actions[bot] Mar 19, 2021
8a42502
minor edits
brtnfld Mar 19, 2021
5a85e97
Merge branch 'develop' of https://github.com/brtnfld/hdf5 into develop
brtnfld Mar 19, 2021
ee3f29f
code format
brtnfld Mar 19, 2021
50f0b26
Committing clang-format changes
github-actions[bot] Mar 19, 2021
d2d7386
code format
brtnfld Mar 19, 2021
b94a0fa
Merge branch 'develop' of https://github.com/brtnfld/hdf5 into develop
brtnfld Mar 19, 2021
8bd1e8e
minor edit
brtnfld Mar 19, 2021
c9c62ed
Merge remote-tracking branch 'upstream/develop' into develop
brtnfld May 18, 2021
9c7f8d2
Merge remote-tracking branch 'upstream/develop' into develop
brtnfld May 27, 2021
00a88df
switched from using MPI_count, to actual bytes written for H5FD_mpio_…
brtnfld May 27, 2021
7c22adb
Committing clang-format changes
github-actions[bot] May 27, 2021
5cd709f
changed size_i in printf to reflect the I/O.
brtnfld May 28, 2021
08204c4
Merge branch 'develop' of https://github.com/brtnfld/hdf5 into develop
brtnfld May 28, 2021
64909d1
Committing clang-format changes
github-actions[bot] May 28, 2021
3095756
Merge remote-tracking branch 'upstream/develop' into develop
brtnfld Jul 19, 2021
da2f96e
Merge remote-tracking branch 'upstream/develop' into develop
brtnfld Aug 26, 2021
ce7699d
Fixed seg fault with xlf on BE with -qintsize=8
brtnfld Aug 26, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions fortran/test/tH5Z.F90
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ SUBROUTINE szip_test(szip_flag, cleanup, total_error)
INTEGER(HSIZE_T), DIMENSION(2) :: chunk_dims = (/NN, MM/)
INTEGER :: rank = 2 ! Dataset rank

INTEGER, DIMENSION(N,M) :: dset_data, data_out ! Data buffers
INTEGER, DIMENSION(N,M) :: dset_data ! Data buffers
INTEGER, DIMENSION(:,:), ALLOCATABLE :: data_out ! Data buffers
INTEGER :: error ! Error flag
INTEGER :: num_errors = 0 ! Number of data errors

Expand Down Expand Up @@ -363,8 +364,9 @@ SUBROUTINE szip_test(szip_flag, cleanup, total_error)
!
! Read the dataset.
!
ALLOCATE(data_out(1:N,1:M))
CALL h5dread_f (dset_id, H5T_NATIVE_INTEGER, data_out, data_dims, error)
CALL check("h5dread_f", error, total_error)
CALL check("h5dread_f", error, total_error)

!
!Compare the data.
Expand All @@ -385,6 +387,7 @@ SUBROUTINE szip_test(szip_flag, cleanup, total_error)
100 IF (num_errors .GT. 0) THEN
total_error=total_error + 1
END IF
DEALLOCATE(data_out)

!
! End access to the dataset and release resources used by it.
Expand Down