Package org.apache.sysds.conf
Class CompilerConfig
- java.lang.Object
- 
- org.apache.sysds.conf.CompilerConfig
 
- 
 public class CompilerConfig extends Object Basic wrapper for all compiler configurations that are configured dynamically on a per script invocation basis. This allows us to provide thread-local compiler configurations to prevent side-effects between multiple scripts running in the same JVM process.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classCompilerConfig.ConfigType
 - 
Field SummaryFields Modifier and Type Field Description static booleanFLAG_DYN_RECOMPILEstatic booleanFLAG_PARREADWRITE_BINARYstatic booleanFLAG_PARREADWRITE_TEXT
 - 
Constructor SummaryConstructors Constructor Description CompilerConfig()CompilerConfig(CompilerConfig conf)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description CompilerConfigclone()booleangetBool(CompilerConfig.ConfigType key)intgetInt(CompilerConfig.ConfigType key)voidset(CompilerConfig.ConfigType key, boolean value)voidset(CompilerConfig.ConfigType key, int value)
 
- 
- 
- 
Constructor Detail- 
CompilerConfigpublic CompilerConfig() 
 - 
CompilerConfigpublic CompilerConfig(CompilerConfig conf) 
 
- 
 - 
Method Detail- 
setpublic void set(CompilerConfig.ConfigType key, boolean value) 
 - 
setpublic void set(CompilerConfig.ConfigType key, int value) 
 - 
getBoolpublic boolean getBool(CompilerConfig.ConfigType key) 
 - 
getIntpublic int getInt(CompilerConfig.ConfigType key) 
 - 
clonepublic CompilerConfig clone() 
 
- 
 
-