File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2727import logging
2828
2929import numpy as np
30- import numpy .linalg as la # noqa
30+ import numpy .linalg as la # noqa: F401
3131
3232import pyopencl as cl
3333import pyopencl .tools as cl_tools
34- from meshmode .mesh import BTAG_ALL , BTAG_NONE # noqa
34+ from meshmode .mesh import BTAG_ALL , BTAG_NONE # noqa: F401
3535from pytools import obj_array
3636
3737import grudge .geometry as geo
Original file line number Diff line number Diff line change 6262 try :
6363 # Crude check if we have the correct loopy branch
6464 # (https://github.com/kaushikcfd/loopy/tree/pytato-array-context-transforms)
65- from loopy .transform .loop_fusion import get_kennedy_unweighted_fusion_candidates # noqa
65+ from loopy .transform .loop_fusion import (
66+ get_kennedy_unweighted_fusion_candidates , # noqa: F401
67+ )
6668 except ImportError :
6769 warn ("Your loopy and meshmode branches are mismatched. "
6870 "Please make sure that you have the "
@@ -645,7 +647,7 @@ def get_reasonable_array_context_class(
645647 if not _HAVE_FUSION_ACTX :
646648 warn ("No device-parallel actx available, execution will be slow. "
647649 "Please make sure you have the right branches for loopy "
648- "(https://github.com/kaushikcfd/loopy/tree/pytato-array-context-transforms) " # noqa
650+ "(https://github.com/kaushikcfd/loopy/tree/pytato-array-context-transforms) " # noqa: E501
649651 "and meshmode "
650652 "(https://github.com/kaushikcfd/meshmode/tree/pytato-array-context-transforms)." ,
651653 stacklevel = 1 )
You can’t perform that action at this time.
0 commit comments