Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit 0fdcff7

Browse files
committed
fix: update ZE presence detection to match new GDB output format (#280)
1 parent 0cd990f commit 0fdcff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SimdProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ export class SimdProvider {
518518
}
519519
const evalResult = await session.customRequest("evaluate", { expression: "-exec thread", context: "repl" });
520520

521-
if (!evalResult.result.includes("lane")) {
521+
if (!evalResult.result.includes("ZE")) {
522522
return undefined;
523523
}
524524

0 commit comments

Comments
 (0)