Skip to content

Commit 47f281b

Browse files
committed
Update default TornadoVM usage to false in Options for enhanced configurability.
1 parent 6068726 commit 47f281b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/beehive/gpullama3/Options.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ static void require(boolean condition, String messageFormat, Object... args) {
2525
}
2626

2727
private static boolean getDefaultTornadoVM() {
28-
return Boolean.parseBoolean(System.getProperty("use.tornadovm", "true"));
28+
return Boolean.parseBoolean(System.getProperty("use.tornadovm", "false"));
2929
}
3030

3131
static void printUsage(PrintStream out) {

0 commit comments

Comments
 (0)