@@ -183,13 +183,13 @@ def translation_classes_dependent_ndata(self, tgt_expansion, src_expansion):
183
183
"""
184
184
return 0
185
185
186
- def translation_classes_dependent_data_loopy_knl (self , tgt_expansion ,
186
+ def loopy_translation_classes_dependent_data (self , tgt_expansion ,
187
187
src_expansion , result_dtype ):
188
188
"""Return a :mod:`loopy` kernel that calculates the data described by
189
189
:func:`~sumpy.expansion.m2l.M2LTranslationBase.translation_classes_dependent_data`.
190
190
:arg result_dtype: The :mod:`numpy` type of the result.
191
191
"""
192
- return translation_classes_dependent_data_loopy_knl (tgt_expansion ,
192
+ return loopy_translation_classes_dependent_data (tgt_expansion ,
193
193
src_expansion , result_dtype )
194
194
195
195
@abstractmethod
@@ -437,7 +437,7 @@ def preprocess_multipole_nexprs(self, tgt_expansion, src_expansion):
437
437
src_expansion )
438
438
return len (circulant_matrix_mis )
439
439
440
- def preprocess_multipole_loopy_knl (self , tgt_expansion , src_expansion ,
440
+ def loopy_preprocess_multipole (self , tgt_expansion , src_expansion ,
441
441
result_dtype ):
442
442
443
443
circulant_matrix_mis , _ , max_mi = \
@@ -553,7 +553,7 @@ def postprocess_local_nexprs(self, tgt_expansion, src_expansion):
553
553
return self .translation_classes_dependent_ndata (
554
554
tgt_expansion , src_expansion )
555
555
556
- def postprocess_local_loopy_knl (self , tgt_expansion , src_expansion ,
556
+ def loopy_postprocess_local (self , tgt_expansion , src_expansion ,
557
557
result_dtype ):
558
558
circulant_matrix_mis , needed_vector_terms , _ = \
559
559
self ._translation_classes_dependent_data_mis (tgt_expansion ,
@@ -1020,9 +1020,9 @@ def postprocess_local_exprs(self, tgt_expansion, src_expansion,
1020
1020
# }}} FourierBesselM2LWithFFT
1021
1021
1022
1022
1023
- # {{{ translation_classes_dependent_data_loopy_knl
1023
+ # {{{ loopy_translation_classes_dependent_data
1024
1024
1025
- def translation_classes_dependent_data_loopy_knl (tgt_expansion , src_expansion ,
1025
+ def loopy_translation_classes_dependent_data (tgt_expansion , src_expansion ,
1026
1026
result_dtype ):
1027
1027
"""
1028
1028
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,
1086
1086
1087
1087
return knl
1088
1088
1089
- # }}} translation_classes_dependent_data_loopy_knl
1089
+ # }}} loopy_translation_classes_dependent_data
1090
1090
1091
1091
# vim: fdm=marker
0 commit comments