Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/pins/pytorch-upstream.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0a2685160140656e3e53818611dd2c65c4397be5
8321eec009c8c79145ebccd51fdfc336e5f8b848
4 changes: 4 additions & 0 deletions python/triton/runtime/autotuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ def _post_hook(args, exception):
while not inspect.isfunction(self.base_fn):
self.base_fn = self.base_fn.fn

self.num_warmups = warmup
self.num_reps = rep
self.use_cuda_graph = use_cuda_graph
Comment on lines +93 to +95
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


# If we got explicitly called via the old interface, raise a warning
# and proceed with the old behavior.
if warmup is not None or rep is not None or use_cuda_graph:
Expand Down
Loading