Hi, I see these two lines in model scripts:
performance_param(compiler_optimization_level=max)
model_optimization_flavor(optimization_level=2, compression_level=2)
What is the difference between “compiler_optimization_level” and “optimization_level”? or they may be the same after all? If not, could there be conflicts between values of these two, or one will overwrite another?
Both parameters can be set in your model script .alls file, which is used to customize how the DFC compiles your model.
You can use this file via the CLI or through the Python API, depending on your workflow.