Skip to content

Commit

Permalink
Fix style check
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarkall committed Oct 22, 2024
1 parent 88bdde0 commit 1eb9986
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion numba_cuda/numba/cuda/codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,11 @@ def get_cubin(self, cc=None):
print(ptx)
print('=' * 80)

linker = driver.Linker.new(max_registers=self._max_registers, cc=cc, lto=True)
linker = driver.Linker.new(
max_registers=self._max_registers,
cc=cc,
lto=True
)
self._link_all(linker, cc)
cubin = linker.complete()

Expand Down

0 comments on commit 1eb9986

Please sign in to comment.