@@ -183,13 +183,13 @@ def translation_classes_dependent_ndata(self, tgt_expansion, src_expansion):
183183 """
184184 return 0
185185
186- def translation_classes_dependent_data_loopy_knl (self , tgt_expansion ,
186+ def loopy_translation_classes_dependent_data (self , tgt_expansion ,
187187 src_expansion , result_dtype ):
188188 """Return a :mod:`loopy` kernel that calculates the data described by
189189 :func:`~sumpy.expansion.m2l.M2LTranslationBase.translation_classes_dependent_data`.
190190 :arg result_dtype: The :mod:`numpy` type of the result.
191191 """
192- return translation_classes_dependent_data_loopy_knl (tgt_expansion ,
192+ return loopy_translation_classes_dependent_data (tgt_expansion ,
193193 src_expansion , result_dtype )
194194
195195 @abstractmethod
@@ -437,7 +437,7 @@ def preprocess_multipole_nexprs(self, tgt_expansion, src_expansion):
437437 src_expansion )
438438 return len (circulant_matrix_mis )
439439
440- def preprocess_multipole_loopy_knl (self , tgt_expansion , src_expansion ,
440+ def loopy_preprocess_multipole (self , tgt_expansion , src_expansion ,
441441 result_dtype ):
442442
443443 circulant_matrix_mis , _ , max_mi = \
@@ -553,7 +553,7 @@ def postprocess_local_nexprs(self, tgt_expansion, src_expansion):
553553 return self .translation_classes_dependent_ndata (
554554 tgt_expansion , src_expansion )
555555
556- def postprocess_local_loopy_knl (self , tgt_expansion , src_expansion ,
556+ def loopy_postprocess_local (self , tgt_expansion , src_expansion ,
557557 result_dtype ):
558558 circulant_matrix_mis , needed_vector_terms , _ = \
559559 self ._translation_classes_dependent_data_mis (tgt_expansion ,
@@ -1020,9 +1020,9 @@ def postprocess_local_exprs(self, tgt_expansion, src_expansion,
10201020# }}} FourierBesselM2LWithFFT
10211021
10221022
1023- # {{{ translation_classes_dependent_data_loopy_knl
1023+ # {{{ loopy_translation_classes_dependent_data
10241024
1025- def translation_classes_dependent_data_loopy_knl (tgt_expansion , src_expansion ,
1025+ def loopy_translation_classes_dependent_data (tgt_expansion , src_expansion ,
10261026 result_dtype ):
10271027 """
10281028 This is a helper function to create a loopy kernel to generate translation
@@ -1086,6 +1086,6 @@ def translation_classes_dependent_data_loopy_knl(tgt_expansion, src_expansion,
10861086
10871087 return knl
10881088
1089- # }}} translation_classes_dependent_data_loopy_knl
1089+ # }}} loopy_translation_classes_dependent_data
10901090
10911091# vim: fdm=marker
0 commit comments