Skip to content

Commit

Permalink
update kernel name and debug info (FlagOpen#444)
Browse files Browse the repository at this point in the history
Co-authored-by: kiddyjinjin <kiddyjinjin@gmailcom>
  • Loading branch information
kiddyjinjin and kiddyjinjin authored Feb 13, 2025
1 parent a09d014 commit de58cc7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/flag_gems/ops/gather.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def __call__(self, *args, **kwargs):
code = generate_code(
args,
"_gather_wrapper",
"_gather_jit_function",
"_gather_flaggems_jit_function",
code,
)

Expand Down
2 changes: 1 addition & 1 deletion src/flag_gems/ops/repeat.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def __call__(self, x, sizes):
ndim,
"_wrapper",
"_wrapper_out",
"_jit_function",
"_repeat_flaggems_jit_function",
code,
)

Expand Down
2 changes: 1 addition & 1 deletion src/flag_gems/ops/tile.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def __call__(self, x, dims):
ndim,
"_wrapper",
"_wrapper_out",
"_jit_function",
"_tile_flaggems_jit_function",
code,
)

Expand Down
2 changes: 1 addition & 1 deletion src/flag_gems/ops/zeros_like.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def zeros_like(
x, *, dtype=None, layout=None, device=None, pin_memory=None, memory_format=None
):
logging.debug("GEMS FULL_LIKE")
logging.debug("GEMS ZEROS_LIKE")
if device is None:
device = x.device
if dtype is None:
Expand Down

0 comments on commit de58cc7

Please sign in to comment.