Skip to content
Snippets Groups Projects
Commit 7da3a871 authored by Matthias Diener's avatar Matthias Diener
Browse files

fixes

parent 9a03ea11
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,8 @@ from arraycontext.fake_numpy import \
BaseFakeNumpyNamespace, BaseFakeNumpyLinalgNamespace
from arraycontext.context import ArrayContext
import numpy as np
from typing import Any, Callable, Tuple, Union
from typing import Any, Callable, Tuple, Union, Sequence
from pytools.tag import Tag
from numbers import Number
import loopy as lp
......@@ -368,5 +369,13 @@ class PytatoArrayContext(ArrayContext):
return gridify(prg)
def tag(self, tags: Union[Sequence[Tag], Tag], array):
# Sorry, not capable.
return array
def tag_axis(self, iaxis, tags: Union[Sequence[Tag], Tag], array):
# Sorry, not capable.
return array
# }}}
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