Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions tritonparse/reproducer/multi_file_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,11 @@ def _analyze_file(

for resolved_path, imported_names in imports_by_file.items():
already_pending = any(
pending_item[0] == resolved_path
if isinstance(pending_item, tuple)
else pending_item == resolved_path
(
pending_item[0] == resolved_path
if isinstance(pending_item, tuple)
else pending_item == resolved_path
)
for pending_item in self.pending_files
)
if not already_pending:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
import torch
import triton
import triton.language as tl

from tritonparse.reproducer.tests.artifacts.triton_preprocess import scale_kernel


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

import triton
import triton.language as tl

from tritonparse.reproducer.tests.artifacts.triton_utils import add_values


Expand Down