Skip to content
Snippets Groups Projects
Commit 3b9db77d authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Typo fixes

parent b115e7eb
No related branches found
No related tags found
No related merge requests found
...@@ -371,11 +371,11 @@ def auto_test_vs_ref( ...@@ -371,11 +371,11 @@ def auto_test_vs_ref(
for i, (ref_arg, test_arg) in enumerate(zip(ref_knl.args, test_knl.args)): for i, (ref_arg, test_arg) in enumerate(zip(ref_knl.args, test_knl.args)):
if ref_arg.name != test_arg.name: if ref_arg.name != test_arg.name:
raise LoopyError("ref_knl and test_knl argument lists disagee at index " raise LoopyError("ref_knl and test_knl argument lists disagree at index "
"%d (1-based)" % (i+1)) "%d (1-based)" % (i+1))
if ref_arg.dtype != test_arg.dtype: if ref_arg.dtype != test_arg.dtype:
raise LoopyError("ref_knl and test_knl argument lists disagee at index " raise LoopyError("ref_knl and test_knl argument lists disagree at index "
"%d (1-based)" % (i+1)) "%d (1-based)" % (i+1))
from loopy.compiled import CompiledKernel, get_highlighted_cl_code from loopy.compiled import CompiledKernel, get_highlighted_cl_code
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment