-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
config.properties
75 lines (70 loc) · 2.96 KB
/
config.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
#
# JVM Performance Benchmarks
#
# Copyright (C) 2019 - 2024 Ionut Balosin
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
##########################
# JDK Installation Paths #
##########################
# TODO: Set these properties to your custom JDK installation folder paths
OPENJDK_HOTSPOT_VM_HOME="<path_to_jdk>"
GRAAL_VM_CE_HOME="<path_to_jdk>"
GRAAL_VM_EE_HOME="<path_to_jdk>"
AZUL_PRIME_VM_HOME="<path_to_jdk>"
#########################
# Display Names for VMs #
#########################
# These names are used as display labels for generated artifacts (e.g., plots and geometric mean reports)
# Note 1: You can change these properties to use different VM display labels
# Note 2: Oracle GraalVM was formerly known as GraalVM EE
OPENJDK_HOTSPOT_VM_NAME="OpenJDK HotSpot VM"
GRAAL_VM_CE_NAME="GraalVM CE"
GRAAL_VM_EE_NAME="Oracle GraalVM"
AZUL_PRIME_VM_NAME="Azul Prime VM"
###################################
# Display Names for JIT Compilers #
###################################
# These names are used as display labels for JIT compilers in generated artifacts
# Note 1: You can change these properties for different JIT display labels
# Note 2: Oracle GraalVM was formerly known as GraalVM EE
OPENJDK_HOTSPOT_VM_JIT="C2 JIT"
GRAAL_VM_CE_JIT="GraalVM CE JIT"
GRAAL_VM_EE_JIT="Oracle GraalVM JIT"
AZUL_PRIME_VM_JIT="Azul Prime JIT"
##########################
# Color Palettes for VMs #
##########################
# These properties are used to represent colors in generated bar charts
# Note: You can change these properties for different color palettes, but consider color blindness accessibility
# - e.g., https://davidmathlogic.com/colorblind
OPENJDK_HOTSPOT_VM_COLOR_PALETTE="#648FFF"
GRAAL_VM_CE_COLOR_PALETTE="#FFB000"
GRAAL_VM_EE_COLOR_PALETTE="#FE6100"
AZUL_PRIME_VM_COLOR_PALETTE="#785EF0"
###########################
# Internal VM Identifiers #
###########################
# Note 1: These properties are used internally by the benchmark and should not be modified
# Note 2: The previous name, GraalVM EE, is still being used as an internal identifier to align with the existing folder structure
OPENJDK_HOTSPOT_VM_IDENTIFIER="openjdk-hotspot-vm"
GRAAL_VM_CE_IDENTIFIER="graalvm-ce"
GRAAL_VM_EE_IDENTIFIER="graalvm-ee"
AZUL_PRIME_VM_IDENTIFIER="azul-prime-vm"