triton.autotune

triton.autotune(configs, key, prune_configs_by=None, reset_to_zero=None, restore_value=None, pre_hook=None, post_hook=None, warmup=None, rep=None, use_cuda_graph=False, do_bench=None)

Decorator for auto-tuning a triton.jit’d function.

@triton.autotune(configs=[
    triton.Config(kwargs={'BLOCK_SIZE': 128}, num_warps=4),
    triton.Config(kwargs={'BLOCK_SIZE': 1024}, num_warps=8),
  ],
  key=['x_size'] # the two above configs will be evaluated anytime
                 # the value of x_size changes
)
@triton.jit
def kernel(x_ptr, x_size, **META):
    BLOCK_SIZE = META['BLOCK_SIZE']
Note:

When all the configurations are evaluated, the kernel will run multiple times. This means that whatever value the kernel updates will be updated multiple times. To avoid this undesired behavior, you can use the reset_to_zero argument, which resets the value of the provided tensor to zero before running any configuration.

If the environment variable TRITON_PRINT_AUTOTUNING is set to "1", Triton will print a message to stdout after autotuning each kernel, including the time spent autotuning and the best configuration.

Parameters:
  • configs (list[triton.Config]) – a list of triton.Config objects

  • key (list[str]) – a list of argument names whose change in value will trigger the evaluation of all provided configs.

  • prune_configs_by – a dict of functions that are used to prune configs, fields: ‘perf_model’: performance model used to predicate running time with different configs, returns running time ‘top_k’: number of configs to bench ‘early_config_prune’(optional): a function used to do early prune (eg, num_stages). It takes configs:List[Config] as its input, and returns pruned configs.

  • reset_to_zero (list[str]) – a list of argument names whose value will be reset to zero before evaluating any configs.

  • restore_value (list[str]) – a list of argument names whose value will be restored after evaluating any configs.

  • pre_hook (lambda args, reset_only) – a function that will be called before the kernel is called. This overrides the default pre_hook used for ‘reset_to_zero’ and ‘restore_value’. ‘kwargs’: a dict of all arguments passed to the kernel. ‘reset_only’: a boolean indicating whether the pre_hook is called to reset the values only, without a corresponding post_hook.

  • post_hook (lambda args, exception) – a function that will be called after the kernel is called. This overrides the default post_hook used for ‘restore_value’. ‘kwargs’: a dict of all arguments passed to the kernel. ‘exception’: the exception raised by the kernel in case of a compilation or runtime error.

  • warmup (int) – warmup time (in ms) to pass to benchmarking (deprecated).

  • rep (int) – repetition time (in ms) to pass to benchmarking (deprecated).

  • do_bench (lambda fn, quantiles) – a benchmark function to measure the time of each run.