Skip to content

Commit 6f0ce18

Browse files
authored
Fix missing static_shapes=False in deployment_autotuning.md (#1042)
1 parent 1c81b3c commit 6f0ce18

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/deployment_autotuning.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ As an example, you could trigger re-tuning with power-of-two bucketing:
165165
```python
166166
@helion.kernel(
167167
configs=candidate_configs,
168-
key=lambda x, y: helion.next_power_of_2(x.numel())
168+
key=lambda x, y: helion.next_power_of_2(x.numel()),
169+
static_shapes=False,
169170
)
170171
def my_kernel(x, y):
171172
...

0 commit comments

Comments
 (0)