Skip to content

Commit 4f300b2

Browse files
committed
Completed merge with master
1 parent 9ab2085 commit 4f300b2

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

kernel_tuner/core.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,10 @@ def get_kernel_string(self, index=0, params=None):
115115
kernel_source = self.kernel_sources[index]
116116
return util.get_kernel_string(kernel_source, params)
117117

118-
<<<<<<< HEAD
119118
def prepare_list_of_files(
120119
self, kernel_name, params, grid, threads, block_size_names
121120
):
122121
"""Prepare the kernel string along with any additional files.
123-
=======
124-
def prepare_list_of_files(self, kernel_name, params, grid, threads, block_size_names):
125-
"""prepare the kernel string along with any additional files
126-
>>>>>>> origin/master
127122
128123
The first file in the list is allowed to include or read in the others
129124
The files beyond the first are considered additional files that may also contain tunable parameters
@@ -660,11 +655,7 @@ def compile_kernel(self, instance, verbose):
660655

661656
@staticmethod
662657
def preprocess_gpu_arguments(old_arguments, params):
663-
<<<<<<< HEAD
664658
"""Get a flat list of arguments based on the configuration given by `params`."""
665-
=======
666-
"""Get a flat list of arguments based on the configuration given by `params`"""
667-
>>>>>>> origin/master
668659
return _preprocess_gpu_arguments(old_arguments, params)
669660

670661
def copy_shared_memory_args(self, smem_args):
@@ -776,11 +767,7 @@ def run_kernel(self, func, gpu_args, instance):
776767

777768

778769
def _preprocess_gpu_arguments(old_arguments, params):
779-
<<<<<<< HEAD
780770
"""Get a flat list of arguments based on the configuration given by `params`."""
781-
=======
782-
"""Get a flat list of arguments based on the configuration given by `params`"""
783-
>>>>>>> origin/master
784771
new_arguments = []
785772

786773
for argument in old_arguments:

0 commit comments

Comments
 (0)