From 708b169a5cce971959ece8016419d8c9a2e579c2 Mon Sep 17 00:00:00 2001 From: Elias Bermudez Date: Thu, 21 Jan 2021 11:49:41 -0800 Subject: [PATCH] Remove unused args from argmarker method --- pyprof/nvtx/nvmarker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyprof/nvtx/nvmarker.py b/pyprof/nvtx/nvmarker.py index ae6f3fe..10f4e27 100644 --- a/pyprof/nvtx/nvmarker.py +++ b/pyprof/nvtx/nvmarker.py @@ -151,7 +151,7 @@ def wrapper_func(*args, **kwargs): setattr(mod, fn_name, wrapper_func) -def argMarker(mod, op, args, kwargs, idx=-1, inputid_list=[]): +def argMarker(mod, op, args, kwargs): #For this function args is a tuple and kwargs is a dict def tensor(arg, name=""):