Skip to content

Commit

Permalink
Increase tolerance a bit in conv2d_network tests
Browse files Browse the repository at this point in the history
  • Loading branch information
milancurcic committed Aug 30, 2024
1 parent ba3620e commit 896ce35
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_conv2d_network.f90
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ program test_conv2d_network

type(network) :: cnn
real :: y(1)
real :: tolerance = 1e-5
real :: tolerance = 1e-4
integer :: n
integer, parameter :: num_iterations = 1000

Expand Down Expand Up @@ -76,7 +76,7 @@ program test_conv2d_network
type(network) :: cnn
real :: x(1, 8, 8)
real :: y(1)
real :: tolerance = 1e-5
real :: tolerance = 1e-4
integer :: n
integer, parameter :: num_iterations = 1000

Expand Down Expand Up @@ -111,7 +111,7 @@ program test_conv2d_network
type(network) :: cnn
real :: x(1, 12, 12)
real :: y(9)
real :: tolerance = 1e-5
real :: tolerance = 1e-4
integer :: n
integer, parameter :: num_iterations = 5000

Expand Down

0 comments on commit 896ce35

Please sign in to comment.