Skip to content

Commit

Permalink
Involve JIT in PGO training for master
Browse files Browse the repository at this point in the history
  • Loading branch information
weltling committed Mar 10, 2019
1 parent dac0e43 commit e6b4a0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions pgo/tpl/php/php-8.0-pgo-nts-cache.ini
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,7 @@ zend_extension=php_opcache.dll
opcache.memory_consumption=PHP_SDK_PGO_PHP_OPCACHE_MEMORY_CONSUMPTION
opcache.interned_strings_buffer=PHP_SDK_PGO_PHP_OPCACHE_INTERNED_STRINGS_BUFFER
opcache.max_accelerated_files=PHP_SDK_PGO_PHP_OPCACHE_MAX_ACCELERATED_FILES
opcache.jit_buffer_size=PHP_SDK_PGO_PHP_OPCACHE_JIT_BUFFER_SIZE
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable=1
Expand Down
1 change: 1 addition & 0 deletions pgo/tpl/php/php-8.0-pgo-ts-cache.ini
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,7 @@ zend_extension=php_opcache.dll
opcache.memory_consumption=PHP_SDK_PGO_PHP_OPCACHE_MEMORY_CONSUMPTION
opcache.interned_strings_buffer=PHP_SDK_PGO_PHP_OPCACHE_INTERNED_STRINGS_BUFFER
opcache.max_accelerated_files=PHP_SDK_PGO_PHP_OPCACHE_MAX_ACCELERATED_FILES
opcache.jit_buffer_size=PHP_SDK_PGO_PHP_OPCACHE_JIT_BUFFER_SIZE
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable=1
Expand Down
6 changes: 4 additions & 2 deletions pgo/tpl/php/phpsdk_pgo.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@
"x64": {
"opcache.memory_consumption": 256,
"opcache.interned_strings_buffer": 16,
"opcache.max_accelerated_files": 8000
"opcache.max_accelerated_files": 8000,
"opcache.jit_buffer_size": "32M"
},
"x86": {
"opcache.memory_consumption": 64,
"opcache.interned_strings_buffer": 8,
"opcache.max_accelerated_files": 4000
"opcache.max_accelerated_files": 4000,
"opcache.jit_buffer_size": "16M"
}
}
}
Expand Down

0 comments on commit e6b4a0d

Please sign in to comment.