Skip to content

Commit

Permalink
Merge branch 'main' into production-pilot
Browse files Browse the repository at this point in the history
  • Loading branch information
MTCam committed Aug 21, 2023
2 parents a40364e + 3124123 commit ba21eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loopy/kernel/creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
from pytools import ProcessLogger

from sys import intern
import loopy.version

import re

Expand Down Expand Up @@ -2325,8 +2324,9 @@ def make_function(domains, instructions, kernel_data=None, **kwargs):

from loopy.version import LANGUAGE_VERSION_SYMBOLS

import loopy.version as v
version_to_symbol = {
getattr(loopy.version, lvs): lvs
getattr(v, lvs): lvs
for lvs in LANGUAGE_VERSION_SYMBOLS}

lang_version = kwargs.pop("lang_version", None)
Expand Down

0 comments on commit ba21eae

Please sign in to comment.