From 51f770a53074b0d40662e3bdef9089762589add2 Mon Sep 17 00:00:00 2001 From: James Stevens Date: Sat, 18 Jul 2015 14:07:58 -0500 Subject: [PATCH] fixed small typo --- test/test_statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_statistics.py b/test/test_statistics.py index fa4ad2c05..56cc22f8f 100644 --- a/test/test_statistics.py +++ b/test/test_statistics.py @@ -527,7 +527,7 @@ def test_all_counters_parallel_matmul(): m = 256 l = 128 - barrier_count = get_barrier_poly(knl).eval_with_dict({'n': n, 'm': n, 'l': n}) + barrier_count = get_barrier_poly(knl).eval_with_dict({'n': n, 'm': m, 'l': l}) assert barrier_count == 0 op_map = get_op_poly(knl) -- GitLab