From 428547a28183ae21ee92bbe975c331045c5e1bda Mon Sep 17 00:00:00 2001 From: jdsteve2 <jdsteve2@illinois.edu> Date: Sun, 4 Mar 2018 01:09:53 -0600 Subject: [PATCH] fixing flake8 issues --- test/test_statistics.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/test_statistics.py b/test/test_statistics.py index 732b9afe2..cc81e1592 100644 --- a/test/test_statistics.py +++ b/test/test_statistics.py @@ -897,20 +897,20 @@ def test_all_counters_parallel_matmul(): subgroup_size=32) f32s1lb = mem_access_map[lp.MemAccess('global', np.float32, - lid_strides=[1, Variable('ell')], direction='load', variable='b', - count_granularity=CG.WORKITEM) + lid_strides=[1, Variable('ell')], direction='load', + variable='b', count_granularity=CG.WORKITEM) ].eval_with_dict(params) f32s1la = mem_access_map[lp.MemAccess('global', np.float32, - lid_strides=[1, Variable('m')], direction='load', variable='a', - count_granularity=CG.WORKITEM) + lid_strides=[1, Variable('m')], direction='load', + variable='a', count_granularity=CG.WORKITEM) ].eval_with_dict(params) assert f32s1lb == n*m*ell/bsize assert f32s1la == n*m*ell/bsize f32coal = mem_access_map[lp.MemAccess('global', np.float32, - lid_strides=[1, Variable('ell')], direction='store', variable='c', - count_granularity=CG.WORKITEM) + lid_strides=[1, Variable('ell')], direction='store', + variable='c', count_granularity=CG.WORKITEM) ].eval_with_dict(params) assert f32coal == n*ell -- GitLab