Skip to content

Commit 0c69563

Browse files
committed
Fixes cpu flag update for stateless llama from iree bump
1 parent 247396c commit 0c69563

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/turbine_models/custom_models/stateless_llama.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def forward(token0: torch.Tensor, *state0_flat):
237237
"--iree-opt-const-expr-hoisting=False",
238238
]
239239
if device == "cpu":
240-
flags.append("--iree-llvmcpu-enable-microkernels")
240+
flags.append("--iree-vmvx-enable-microkernels")
241241
device = "llvm-cpu"
242242
elif device == "vulkan":
243243
flags.extend(

0 commit comments

Comments
 (0)