Skip to content

Commit

Permalink
Adjust performance benchmarks
Browse files Browse the repository at this point in the history
Some changes were made to the ABR GPU server which sped things up
slightly.
  • Loading branch information
drasmuss authored and tbekolay committed Jan 28, 2020
1 parent cb7dea3 commit e0c3479
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nengo_dl/tests/test_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def test_lmu(Simulator, native_nengo, pytestconfig):
"net, train, minibatch_size, min, max",
[
(benchmarks.cconv(128, 64, nengo.RectifiedLinear()), False, 64, 0.7, 0.85),
(benchmarks.cconv(128, 64, nengo.LIF()), False, 64, 1.5, 1.7),
(benchmarks.cconv(128, 64, nengo.LIF()), False, 64, 1.45, 1.65),
(benchmarks.integrator(128, 32, nengo.RectifiedLinear()), True, 64, 0.5, 0.75),
(benchmarks.integrator(128, 32, nengo.LIF()), True, 64, 0.9, 1.2),
(
Expand All @@ -205,8 +205,8 @@ def test_lmu(Simulator, native_nengo, pytestconfig):
),
False,
None,
0.4,
0.6,
0.35,
0.55,
),
(benchmarks.lmu(1000, 1, native_nengo=True), True, 100, 0.75, 1.05),
# (benchmarks.spaun(1), False, None, 8.02, 9.52),
Expand Down

0 comments on commit e0c3479

Please sign in to comment.