You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a known bug that since one of the build from Java 8 Tiered Compiler is turned on by default. And running benchmark without @VmOptions({"-XX:-TieredCompilation"}) will cause below error:
[stderr] CICompilerCount of 1 is invalid; must be at least 2
Turning off TieredCompilation is not desirable in benchmark. I tried adding @VmOptions({":CICompilerCount=2"}). But error "CICompilerCount of 1" persists.
Please advise how do I work this around without having to reset tiered compilation?
The text was updated successfully, but these errors were encountered:
It's a known bug that since one of the build from Java 8 Tiered Compiler is turned on by default. And running benchmark without
@VmOptions({"-XX:-TieredCompilation"})
will cause below error:Turning off TieredCompilation is not desirable in benchmark. I tried adding
@VmOptions({":CICompilerCount=2"})
. But error "CICompilerCount of 1" persists.Please advise how do I work this around without having to reset tiered compilation?
The text was updated successfully, but these errors were encountered: