Skip to content

Commit

Permalink
Automatic merge of master into galahad
Browse files Browse the repository at this point in the history
  • Loading branch information
OracleLabsAutomation committed May 31, 2024
2 parents 2a04dde + 5997146 commit d2f6535
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion vm/mx.vm/mx_vm_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,6 +510,7 @@ def __init__(self, name, config_name, extra_java_args=None, extra_launcher_args=
super().__init__(name, config_name, extra_java_args, extra_launcher_args)
self.vm_args = None
self.pgo_instrumentation = False
self.pgo_exclude_conditional = False
self.pgo_sampler_only = False
self.pgo_context_sensitive = True
self.is_gate = False
Expand All @@ -528,6 +529,7 @@ def __init__(self, name, config_name, extra_java_args=None, extra_launcher_args=
self.async_sampler = False
self.safepoint_sampler = False
self.profile_inference_feature_extraction = False
self.force_profile_inference = False
self.analysis_context_sensitivity = None
self.no_inlining_before_analysis = False
self.optimization_level = None
Expand All @@ -550,7 +552,7 @@ def _configure_from_name(self, config_name):
# This defines the allowed config names for NativeImageVM. The ones registered will be available via --jvm-config
rule = r'^(?P<native_architecture>native-architecture-)?(?P<string_inlining>string-inlining-)?(?P<gate>gate-)?(?P<upx>upx-)?(?P<quickbuild>quickbuild-)?(?P<gc>g1gc-)?(?P<llvm>llvm-)?(?P<pgo>pgo-|pgo-ctx-insens-|pgo-sampler-)?(?P<inliner>inline-)?' \
r'(?P<analysis_context_sensitivity>insens-|allocsens-|1obj-|2obj1h-|3obj2h-|4obj3h-)?(?P<no_inlining_before_analysis>no-inline-)?(?P<jdk_profiles>jdk-profiles-collect-|adopted-jdk-pgo-)?' \
r'(?P<profile_inference>profile-inference-feature-extraction-)?(?P<sampler>safepoint-sampler-|async-sampler-)?(?P<optimization_level>O0-|O1-|O2-|O3-)?(?P<edition>ce-|ee-)?$'
r'(?P<profile_inference>profile-inference-feature-extraction-|profile-inference-pgo-)?(?P<sampler>safepoint-sampler-|async-sampler-)?(?P<optimization_level>O0-|O1-|O2-|O3-)?(?P<edition>ce-|ee-)?$'

mx.logv(f"== Registering configuration: {config_name}")
match_name = f"{config_name}-" # adding trailing dash to simplify the regex
Expand Down Expand Up @@ -644,6 +646,18 @@ def generate_profiling_package_prefixes():
if profile_inference_config == 'profile-inference-feature-extraction':
self.profile_inference_feature_extraction = True
self.pgo_instrumentation = True # extract code features
elif profile_inference_config == "profile-inference-pgo":
# We need to run instrumentation as the profile-inference-pgo JVM config requires dynamically collected
# profiles to combine with the ML-inferred branch probabilities.
self.pgo_instrumentation = True

# Due to the collision between flags, we must re-enable the ML inference:
# 1. To run the image build in the profile-inference-pgo mode, we must enable PGO to dynamically collect program profiles.
# 2. The PGO flag disables the ML Profile Inference.
# 3, Therefore, here we re-enable the ML Profile Inference from the command line.
self.force_profile_inference = True

self.pgo_exclude_conditional = True
else:
mx.abort('Unknown profile inference configuration: {}.'.format(profile_inference_config))

Expand Down Expand Up @@ -1139,11 +1153,16 @@ def run_stage_image(self):
jdk_profiles_args = svm_experimental_options([f'-H:AdoptedPGOEnabled={adopted_profile}'])
else:
jdk_profiles_args = []
if self.pgo_exclude_conditional:
pgo_args += svm_experimental_options(['-H:PGOExcludeProfiles=CONDITIONAL'])

if self.profile_inference_feature_extraction:
ml_args = svm_experimental_options(['-H:+MLGraphFeaturesExtraction', '-H:+ProfileInferenceDumpFeatures'])
dump_file_flag = 'ProfileInferenceDumpFile'
if dump_file_flag not in ''.join(self.config.base_image_build_args):
mx.warn("To dump the profile inference features to a specific location, please set the '{}' flag.".format(dump_file_flag))
elif self.force_profile_inference:
ml_args = svm_experimental_options(['-H:+MLGraphFeaturesExtraction', '-H:+MLProfileInference'])
else:
ml_args = []

Expand Down

0 comments on commit d2f6535

Please sign in to comment.