@@ -242,14 +242,19 @@ Built-in values for ``HELION_AUTOTUNER`` include ``"PatternSearch"``, ``"Differe
242242| ----------------------| ---------| -------------|
243243| `` TRITON_F32_DEFAULT `` | `` dot_precision `` | Sets default floating-point precision for Triton dot products (`` "tf32" `` , `` "tf32x3" `` , `` "ieee" `` ). |
244244| `` HELION_FORCE_AUTOTUNE `` | `` force_autotune `` | Force the autotuner to run even when explicit configs are provided. |
245+ | `` HELION_DISALLOW_AUTOTUNING `` | `` check_autotuning_disabled `` | Hard-disable autotuning; kernels must supply explicit configs when this is `` 1 `` . |
245246| `` HELION_AUTOTUNE_COMPILE_TIMEOUT `` | `` autotune_compile_timeout `` | Maximum seconds to wait for Triton compilation during autotuning. |
247+ | `` HELION_AUTOTUNE_PRECOMPILE `` | `` autotune_precompile `` | Select the autotuner precompile mode (`` "spawn" `` , `` "fork" `` , or disable when empty). |
248+ | `` HELION_AUTOTUNE_PRECOMPILE_JOBS `` | `` autotune_precompile_jobs `` | Cap the number of concurrent Triton precompile subprocesses. |
246249| `` HELION_AUTOTUNE_RANDOM_SEED `` | `` autotune_random_seed `` | Seed used for randomized autotuning searches. |
247250| `` HELION_AUTOTUNE_MAX_GENERATIONS `` | `` autotune_max_generations `` | Upper bound on generations for Pattern Search and Differential Evolution. |
248251| `` HELION_AUTOTUNE_ACCURACY_CHECK `` | `` autotune_accuracy_check `` | Toggle baseline validation for candidate configs. |
249252| `` HELION_AUTOTUNE_EFFORT `` | `` autotune_effort `` | Select autotuning preset (`` "none" `` , `` "quick" `` , `` "full" `` ). |
250253| `` HELION_AUTOTUNE_SEARCH_ACC `` | `` autotune_search_acc `` | Enable packaged PTXAS advanced compiler configuration search during autotuning. |
251254| `` HELION_REBENCHMARK_THRESHOLD `` | `` autotune_rebenchmark_threshold `` | Re-run configs whose performance is within a multiplier of the current best. |
252255| `` HELION_AUTOTUNE_PROGRESS_BAR `` | `` autotune_progress_bar `` | Enable or disable the progress bar UI during autotuning. |
256+ | `` HELION_CACHE_DIR `` | `` LocalAutotuneCache `` | Override the on-disk directory used for cached autotuning artifacts. |
257+ | `` HELION_SKIP_CACHE `` | `` LocalAutotuneCache `` | When set to `` 1 `` , ignore cached autotuning entries and rerun searches. |
253258| `` HELION_PRINT_OUTPUT_CODE `` | `` print_output_code `` | Print generated Triton code to stderr for inspection. |
254259| `` HELION_ALLOW_WARP_SPECIALIZE `` | `` allow_warp_specialize `` | Permit warp-specialized code generation for `` tl.range `` . |
255260| `` HELION_DEBUG_DTYPE_ASSERTS `` | `` debug_dtype_asserts `` | Inject dtype assertions after each lowering step. |
0 commit comments