public static enum EnterpriseSchedulerFlagsConfig.Field extends java.lang.Enum<EnterpriseSchedulerFlagsConfig.Field> implements ConfigField
| Enum Constant and Description | 
|---|
ALWAYS_USE_JNI
[Internal use only] If  
true always use JNI for work distribution (even when compiled with support for the Graal native interface). | 
FIX_THREADS_USED_FROM_MAIN
[Internal use only] If  
true fix threads used by work spawned by the main thread so that 0..N are used for an N-thread job. | 
LOG_TO_STDERR
If  
true log to stderr. | 
MARK_LOOP_FOR_PROFILING
[Internal use only] ID for any additional loop to profile. 
 | 
OVERRIDE_CORES_PER_SOCKET
[Internal use only] Over-ride the core-to-socket allocation, treating a fixed number of cores as a socket for the purposes of the per-socket combining structures. 
 | 
OVERRIDE_MEMORY_PLACEMENT
[Internal use only] Over-ride memory placement tags and use the OS defaults instead. 
 | 
SELECT_PERFORMANCE_COUNTERS
[Internal use only] Perf counter configuration string. 
 | 
SELECT_PERFORMANCE_COUNTERS_JOB_REGIONS
[Internal use only] Issue a region per job automatically. 
 | 
SELECT_PERFORMANCE_COUNTERS_LIBRARY
[Internal use only] Perf counter library. 
 | 
SELECT_PERFORMANCE_COUNTERS_PCM_SHOW_CODES
[Internal use only] Show PCM perf counter codes. 
 | 
SELECT_PERFORMANCE_COUNTERS_SHOW_STATS
[Internal use only] Perf counter per-thread statistics. 
 | 
SELECT_REGION_PERFORMANCE_COUNTERS
[Internal use only] Region perf counter configuration string. 
 | 
SHOW_ALLOCATIONS
If  
true show memory allocation information. | 
SHOW_DEBUG
[Internal use only] If  
true enable debug output. | 
SHOW_DETERMINISTIC_OUTPUT
[Internal use only] If  
true omit thread IDs in debug output (set to true for determinism in regression tests) | 
SHOW_ENVIRONMENT
If  
true show version numbers and main environment settings at startup. | 
SHOW_LOGGING
If  
true enable summary logging -- this is available even in non-debug builds and includes information such as the machine h/w information obtained at start-up, and per-job / per-loop* information about the workload. | 
SHOW_PROFILING
If  
true show profiling information. | 
SHOW_SCHEDULER_STATE
If  
true dump scheduler state on each update. | 
SHOW_WARNINGS
If  
true enable warnings. | 
SPIN_ON_EXIT
[Internal use only] If  
true spin after execution, rather than exiting. | 
USE_OPENMP_THREAD_POOL
[Internal use only] If  
true, use OpenMP based thread pool. | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.Object | 
getDefaultVal()
Gets the default value of this field. 
 | 
java.util.List<java.lang.String> | 
getKeyAliases()
Gets the key aliases of this field which are also recognized during parsing. 
 | 
java.util.List<java.lang.String> | 
getSingletonListKeyAliases()
Gets the key aliases of this field which contain single values for lists and are also recognized during parsing. 
 | 
java.lang.Class<?> | 
getType()
Gets the type of this field. 
 | 
boolean | 
isArray()
Checks if this field is an array. 
 | 
boolean | 
isPath()
Checks if this field is a path. 
 | 
boolean | 
isRequired()
Checks if this field is required. 
 | 
boolean | 
isSensitive()
Checks if this field holds a sensitive data. 
 | 
java.lang.String | 
toKey()
Get the key of this field, which is how this field is represented in serialized form. 
 | 
java.lang.String | 
toString()  | 
static EnterpriseSchedulerFlagsConfig.Field | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static EnterpriseSchedulerFlagsConfig.Field[] | 
values()
Returns an array containing the constants of this enum type, in the order they are declared. 
 | 
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOfisEnum, isPrimitivepublic static final EnterpriseSchedulerFlagsConfig.Field ALWAYS_USE_JNI
true always use JNI for work distribution (even when compiled with support for the Graal native interface).public static final EnterpriseSchedulerFlagsConfig.Field FIX_THREADS_USED_FROM_MAIN
true fix threads used by work spawned by the main thread so that 0..N are used for an N-thread job. This aids comparison with OpenMP. If this is not set then threads will be chosen dynamically by the runtime system.public static final EnterpriseSchedulerFlagsConfig.Field LOG_TO_STDERR
true log to stderr. If false log using PGX's default logging facility.public static final EnterpriseSchedulerFlagsConfig.Field MARK_LOOP_FOR_PROFILING
public static final EnterpriseSchedulerFlagsConfig.Field OVERRIDE_CORES_PER_SOCKET
0 use h/w informationpublic static final EnterpriseSchedulerFlagsConfig.Field OVERRIDE_MEMORY_PLACEMENT
true use OS defaults, if false use workload tagspublic static final EnterpriseSchedulerFlagsConfig.Field SELECT_PERFORMANCE_COUNTERS
public static final EnterpriseSchedulerFlagsConfig.Field SELECT_PERFORMANCE_COUNTERS_JOB_REGIONS
public static final EnterpriseSchedulerFlagsConfig.Field SELECT_PERFORMANCE_COUNTERS_LIBRARY
public static final EnterpriseSchedulerFlagsConfig.Field SELECT_PERFORMANCE_COUNTERS_PCM_SHOW_CODES
public static final EnterpriseSchedulerFlagsConfig.Field SELECT_PERFORMANCE_COUNTERS_SHOW_STATS
public static final EnterpriseSchedulerFlagsConfig.Field SELECT_REGION_PERFORMANCE_COUNTERS
public static final EnterpriseSchedulerFlagsConfig.Field SHOW_ALLOCATIONS
true show memory allocation information.public static final EnterpriseSchedulerFlagsConfig.Field SHOW_DEBUG
true enable debug output. This is only available in debug builds.public static final EnterpriseSchedulerFlagsConfig.Field SHOW_DETERMINISTIC_OUTPUT
true omit thread IDs in debug output (set to true for determinism in regression tests)public static final EnterpriseSchedulerFlagsConfig.Field SHOW_ENVIRONMENT
true show version numbers and main environment settings at startup.public static final EnterpriseSchedulerFlagsConfig.Field SHOW_LOGGING
true enable summary logging -- this is available even in non-debug builds and includes information such as the machine h/w information obtained at start-up, and per-job / per-loop* information about the workload.public static final EnterpriseSchedulerFlagsConfig.Field SHOW_PROFILING
true show profiling information.public static final EnterpriseSchedulerFlagsConfig.Field SHOW_SCHEDULER_STATE
true dump scheduler state on each update.public static final EnterpriseSchedulerFlagsConfig.Field SHOW_WARNINGS
true enable warnings. These are non-fatal errors -- e.g., if a NUMA-aware allocation cannot be placed on the intended socket.public static final EnterpriseSchedulerFlagsConfig.Field SPIN_ON_EXIT
true spin after execution, rather than exiting. This provides an opportunity to attach a debugger or to inspect the placement of threads or of memory.public static final EnterpriseSchedulerFlagsConfig.Field USE_OPENMP_THREAD_POOL
true, use OpenMP based thread pool. If false use pthreads based thread pool.public java.lang.Object getDefaultVal()
ConfigFieldgetDefaultVal in interface ConfigFieldpublic java.util.List<java.lang.String> getKeyAliases()
ConfigFieldgetKeyAliases in interface ConfigFieldpublic java.util.List<java.lang.String> getSingletonListKeyAliases()
ConfigFieldgetSingletonListKeyAliases in interface ConfigFieldpublic java.lang.Class<?> getType()
ConfigFieldgetType in interface ConfigFieldpublic boolean isArray()
ConfigFieldisArray in interface ConfigFieldpublic boolean isPath()
ConfigFieldisPath in interface ConfigFieldpublic boolean isRequired()
ConfigFieldisRequired in interface ConfigFieldpublic boolean isSensitive()
ConfigFieldisSensitive in interface ConfigFieldpublic java.lang.String toKey()
ConfigFieldtoKey in interface ConfigFieldpublic java.lang.String toString()
toString in class java.lang.Enum<EnterpriseSchedulerFlagsConfig.Field>public static EnterpriseSchedulerFlagsConfig.Field valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static EnterpriseSchedulerFlagsConfig.Field[] values()
for (EnterpriseSchedulerFlagsConfig.Field c : EnterpriseSchedulerFlagsConfig.Field.values())
    System.out.println(c);
Copyright © 2016, 2018 Oracle and/or its affiliates. All Rights Reserved.