Skip to content

Commit

Permalink
gpu test conditional on TEST_GPU
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Dec 20, 2024
1 parent 65288d1 commit 41be803
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions axon/basic_test.goal
Original file line number Diff line number Diff line change
Expand Up @@ -411,9 +411,9 @@ func TestNetActShort(t *testing.T) {
}

func TestGPUAct(t *testing.T) {
// if os.Getenv("TEST_GPU") != "true" {
// t.Skip("Set TEST_GPU env var to run GPU tests")
// }
if os.Getenv("TEST_GPU") != "true" {
t.Skip("Set TEST_GPU env var to run GPU tests")
}
NetActTestShort(t, Tol6, true)
// NetActTest(t, Tol6, true, true)
}
Expand Down

0 comments on commit 41be803

Please sign in to comment.