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

Placate PEP8

parent 7c510c29
No related branches found
No related tags found
No related merge requests found
......@@ -106,6 +106,7 @@ def add_and_infer_dtypes(knl, dtype_dict):
from loopy.preprocess import infer_unknown_types
return infer_unknown_types(knl, expect_completion=True)
def _add_and_infer_dtypes_overdetermined(knl, dtype_dict):
knl = _add_dtypes_overdetermined(knl, dtype_dict)
......@@ -843,7 +844,8 @@ def assign_automatic_axes(kernel, axis=0, local_size=None):
# assign longest auto axis inames first
auto_axis_inames.sort(
key=lambda iname: (kernel.get_constant_iname_length(iname), iname),
key=lambda iname: (
kernel.get_constant_iname_length(iname), iname),
reverse=True)
if auto_axis_inames:
......
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