From b08b5158342d440ef4506e30833beae0cf380010 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Fri, 17 Jul 2020 10:18:44 -0500 Subject: [PATCH 1/2] Bump loopy lang version on pre-array-context --- grudge/execution.py | 2 +- grudge/function_registry.py | 2 +- grudge/symbolic/compiler.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/grudge/execution.py b/grudge/execution.py index 7c3fbb07..35d30ff9 100644 --- a/grudge/execution.py +++ b/grudge/execution.py @@ -36,7 +36,7 @@ from grudge.function_registry import base_function_registry import logging logger = logging.getLogger(__name__) -from loopy.version import LOOPY_USE_LANGUAGE_VERSION_2018_1 # noqa: F401 +from loopy.version import LOOPY_USE_LANGUAGE_VERSION_2018_2 # noqa: F401 MPI_TAG_SEND_TAGS = 1729 diff --git a/grudge/function_registry.py b/grudge/function_registry.py index 4d521560..44e1ca8b 100644 --- a/grudge/function_registry.py +++ b/grudge/function_registry.py @@ -29,7 +29,7 @@ THE SOFTWARE. import loopy as lp import numpy as np -from loopy.version import LOOPY_USE_LANGUAGE_VERSION_2018_1 # noqa +from loopy.version import LOOPY_USE_LANGUAGE_VERSION_2018_2 # noqa from pytools import RecordWithoutPickling, memoize_in diff --git a/grudge/symbolic/compiler.py b/grudge/symbolic/compiler.py index c90f6123..34251b83 100644 --- a/grudge/symbolic/compiler.py +++ b/grudge/symbolic/compiler.py @@ -34,7 +34,7 @@ import grudge.symbolic.mappers as mappers from pymbolic.primitives import Variable, Subscript from six.moves import intern -from loopy.version import LOOPY_USE_LANGUAGE_VERSION_2018_1 # noqa: F401 +from loopy.version import LOOPY_USE_LANGUAGE_VERSION_2018_2 # noqa: F401 # {{{ instructions -- GitLab From 61c2d29fcbb63d1108ce7b2061d2b7e89fb23c07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Fri, 17 Jul 2020 17:32:24 +0200 Subject: [PATCH 2/2] Update requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index deb09394..abcb4b15 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,4 @@ git+https://gitlab.tiker.net/inducer/dagrt.git git+https://gitlab.tiker.net/inducer/leap.git git+https://github.com/inducer/meshpy.git git+https://github.com/inducer/modepy.git -git+https://github.com/inducer/meshmode.git +git+https://github.com/inducer/meshmode.git@pre-array-context -- GitLab