Skip to content

Commit

Permalink
Merge pull request #6333 from gmarkall/grm-remove-dead-call
Browse files Browse the repository at this point in the history
Remove dead _Kernel.__call__
  • Loading branch information
stuartarchibald committed Oct 30, 2020
2 parents d774cdd + a7a096d commit d2c44d4
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions numba/cuda/compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,16 +559,6 @@ def _reduce_states(self):
cufunc=self._func, link=self.linking, debug=self.debug,
call_helper=self.call_helper, extensions=self.extensions)

def __call__(self, *args, **kwargs):
assert not kwargs
griddim, blockdim = normalize_kernel_dimensions(self.griddim,
self.blockdim)
self._kernel_call(args=args,
griddim=griddim,
blockdim=blockdim,
stream=self.stream,
sharedmem=self.sharedmem)

def bind(self):
"""
Force binding to current CUDA context
Expand Down

0 comments on commit d2c44d4

Please sign in to comment.