From 2ed16085eb2576643a80a71f7c96726a955c4bae Mon Sep 17 00:00:00 2001 From: Jason Ansel Date: Tue, 28 Oct 2025 10:44:54 -0700 Subject: [PATCH] Fix missing static_shapes=False in deployment_autotuning.md stack-info: PR: https://github.com/pytorch/helion/pull/1042, branch: jansel/stack/214 --- docs/deployment_autotuning.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/deployment_autotuning.md b/docs/deployment_autotuning.md index 0ec5a6b37..43fd8f87e 100644 --- a/docs/deployment_autotuning.md +++ b/docs/deployment_autotuning.md @@ -165,7 +165,8 @@ As an example, you could trigger re-tuning with power-of-two bucketing: ```python @helion.kernel( configs=candidate_configs, - key=lambda x, y: helion.next_power_of_2(x.numel()) + key=lambda x, y: helion.next_power_of_2(x.numel()), + static_shapes=False, ) def my_kernel(x, y): ...