Skip to content

Commit

Permalink
use lower tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Jan 6, 2025
1 parent d226317 commit 58d9761
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions axon/basic_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions axon/basic_test.goal
Original file line number Diff line number Diff line change
Expand Up @@ -971,14 +971,14 @@ func NetTestLearn(t *testing.T, tol float32, gpu bool) {
}

func TestNetRLRate(t *testing.T) {
NetTestRLRate(t, Tol7, false)
NetTestRLRate(t, Tol6, false)
}

func TestGPURLRate(t *testing.T) {
if os.Getenv("TEST_GPU") != "true" {
t.Skip("Set TEST_GPU env var to run GPU tests")
}
NetTestRLRate(t, Tol7, true)
NetTestRLRate(t, Tol6, true)
}

func NetTestRLRate(t *testing.T, tol float32, gpu bool) {
Expand Down

0 comments on commit 58d9761

Please sign in to comment.