Skip to content

Commit 0b2f486

Browse files
authored
[AMD] [NFC] Don't use kwargs when calling launch function (#5694)
Signed-off-by: Anatoly Myachev <[email protected]>
1 parent 715d79d commit 0b2f486

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

third_party/amd/backend/driver.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,8 +483,8 @@ def __init__(self, src, metadata):
483483
mod = compile_module_from_src(src, "__triton_launcher")
484484
self.launch = mod.launch
485485

486-
def __call__(self, *args, **kwargs):
487-
self.launch(*args, **kwargs)
486+
def __call__(self, *args):
487+
self.launch(*args)
488488

489489

490490
class HIPDriver(GPUDriver):

0 commit comments

Comments
 (0)