1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

YJIT: reduce default --yjit-exec-mem-size to 128MiB instead of 256 (#6649)

Reduce default --yjit-exec-mem-size to 128MiB instead of 256
This commit is contained in:
Maxime Chevalier-Boisvert 2022-10-31 14:29:11 -04:00 committed by GitHub
parent c3de08cb24
commit 5e6633fcf9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: git 2022-10-31 18:29:41 +00:00
Merged-By: maximecb <maximecb@ruby-lang.org>

View file

@ -53,7 +53,7 @@ pub struct Options {
// Initialize the options to default values
pub static mut OPTIONS: Options = Options {
exec_mem_size: 256 * 1024 * 1024,
exec_mem_size: 128 * 1024 * 1024,
code_page_size: 16 * 1024,
call_threshold: 10,
greedy_versioning: false,