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

1.8 Fixed failure on BE with xlf (#968) #977

Merged
merged 1 commit into from
Aug 31, 2021
Merged
Changes from all commits
Commits
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