File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,7 @@ program test_io_hdf5
99 character (:), allocatable :: attr
1010 character (* ), parameter :: test_data_path = ' keras_dense_mnist.h5'
1111 logical :: file_exists
12- logical :: ok
13-
14- print * , keras_model_dense_mnist_url
12+ logical :: ok = .true.
1513
1614 inquire (file= test_data_path, exist= file_exists)
1715 if (.not. file_exists) call download_and_unpack(keras_model_dense_mnist_url)
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ program test_parse_keras_model
1515 logical :: found
1616 integer :: n, num_layers
1717 logical :: file_exists
18- logical :: ok
18+ logical :: ok = .true.
1919
2020 inquire (file= test_data_path, exist= file_exists)
2121 if (.not. file_exists) call download_and_unpack(keras_model_dense_mnist_url)
You can’t perform that action at this time.
0 commit comments