Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Hack dataclass'd function_interface to avoid breaking Firedrake" #886

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 5 additions & 51 deletions loopy/kernel/function_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
THE SOFTWARE.
"""
from abc import ABC, abstractmethod
from collections.abc import Collection, Mapping, Sequence
from dataclasses import dataclass, fields, replace
from collections.abc import Mapping, Sequence
from dataclasses import dataclass, replace
from typing import TYPE_CHECKING, Any, Callable, FrozenSet, TypeVar
from warnings import warn

Expand Down Expand Up @@ -304,9 +304,7 @@ def get_kw_pos_association(kernel):

# {{{ template class

# not frozen for Firedrake compatibility
# not eq to avoid having __hash__ set to None in subclasses
@dataclass(init=False, eq=False)
@dataclass(frozen=True, init=False)
class InKernelCallable(ABC):
"""
An abstract interface to define a callable encountered in a kernel.
Expand Down Expand Up @@ -370,51 +368,9 @@ def __init__(self,
def name(self) -> str:
raise NotImplementedError()

# {{{ hackery to avoid breaking Firedrake

def _all_attrs(self) -> Collection[str]:
dc_attrs = {
fld.name for fld in fields(self)
}
legacy_fields: Collection[str] = getattr(self, "fields", [])
return dc_attrs | set(legacy_fields)

def copy(self, **kwargs: Any) -> Self:
present_kwargs = {
name: getattr(self, name)
for name in self._all_attrs()
}
kwargs = {
**present_kwargs,
**kwargs,
}

return replace(self, **kwargs)

def update_persistent_hash(self, key_hash, key_builder) -> None:
for field_name in self._all_attrs():
key_builder.rec(key_hash, getattr(self, field_name))

def __eq__(self, other: object):
if type(self) is not type(other):
return False

for f in self._all_attrs():
if getattr(self, f) != getattr(other, f):
return False

return True

def __hash__(self):
import hashlib

from loopy.tools import LoopyKeyBuilder
key_hash = hashlib.sha256()
self.update_persistent_hash(key_hash, LoopyKeyBuilder())
return hash(key_hash.digest())

# }}}

def with_types(self, arg_id_to_dtype, clbl_inf_ctx):
"""
:arg arg_id_to_type: a mapping from argument identifiers (integers for
Expand Down Expand Up @@ -565,8 +521,7 @@ def is_type_specialized(self):

# {{{ scalar callable

# not frozen, not eq for Firedrake compatibility
@dataclass(init=False, eq=False)
@dataclass(frozen=True, init=False)
class ScalarCallable(InKernelCallable):
"""
An abstract interface to a scalar callable encountered in a kernel.
Expand Down Expand Up @@ -744,8 +699,7 @@ def is_type_specialized(self):

# {{{ callable kernel

# not frozen, not eq for Firedrake compatibility
@dataclass(init=False, eq=False)
@dataclass(frozen=True, init=False)
class CallableKernel(InKernelCallable):
"""
Records information about a callee kernel. Also provides interface through
Expand Down
3 changes: 1 addition & 2 deletions loopy/library/random123.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ def full_name(self) -> str:
# }}}


# not frozen, not eq for Firedrake compatibility
@dataclass(init=False, eq=False)
@dataclass(frozen=True, init=False)
class Random123Callable(ScalarCallable):
"""
Records information about for the random123 functions.
Expand Down
Loading