Skip to content
Snippets Groups Projects
Commit 98291ce5 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Change block_size -> block_and_thread_numbers

parent ba7b20ac
No related merge requests found
Pipeline #20527 passed with stage
in 7 minutes and 36 seconds
...@@ -125,7 +125,7 @@ class AbstractIndexing(abc.ABC): ...@@ -125,7 +125,7 @@ class AbstractIndexing(abc.ABC):
pycuda.driver.Context.synchronize() pycuda.driver.Context.synchronize()
current_time = timeit.timeit(profile_call, number=1) current_time = timeit.timeit(profile_call, number=1)
print(f'{block_size} takes {current_time} ({num_profile_calls})') print(f'{self._block_size} takes {current_time} ({num_profile_calls})')
if current_time < best_timing: if current_time < best_timing:
best_timing = current_time best_timing = current_time
current_best = block_and_thread_numbers current_best = block_and_thread_numbers
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment