Skip to content
Merged
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 python/triton/runtime/autotuner.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, fn, arg_names, configs, key, reset_to_zero, restore_value, pr
self.keys = key
self.cache: Dict[Tuple, Config] = {}
self.arg_names = arg_names
self.cache_results = cache_results or (knobs.autotuning.cache and not knobs.runtime.interpret)
self.cache_results = (cache_results or knobs.autotuning.cache) and not knobs.runtime.interpret

# Reset to zero or restore values
self.reset_to_zero = []
Expand Down
Loading