Skip to content

Commit d1f9e82

Browse files
authored
Update llama-tornado to use native functions as default
1 parent b8b5ece commit d1f9e82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llama-tornado

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class LlamaRunner:
104104
f"-Dtornado.profiler.dump.dir={args.profiler_dump_dir}",
105105
"-Dtornado.enable.fastMathOptimizations=true",
106106
"-Dtornado.enable.mathOptimizations=false",
107-
"-Dtornado.enable.nativeFunctions=fast",
107+
"-Dtornado.enable.nativeFunctions=true",
108108
"-Dtornado.loop.interchange=true",
109109
f"-Dtornado.eventpool.maxwaitevents={args.max_wait_events}"
110110
]
@@ -331,4 +331,4 @@ def main():
331331
return runner.run(args)
332332

333333
if __name__ == "__main__":
334-
sys.exit(main())
334+
sys.exit(main())

0 commit comments

Comments
 (0)