View source: R/MxCycleDetection.R
imxAddDependency | R Documentation |
The dependency tracking system ensures that algebra and fitfunctions are not recomputed if their inputs have not changed. Dependency information is computed prior to handing the model off to the optimizer to reduce overhead during optimization.
imxAddDependency(source, sink, dependencies)
source |
a character vector of the names of the computation sources (inputs) |
sink |
the name of the computation sink (output) |
dependencies |
the dependency graph |
Each free parameter keeps track of all the objects that store that
free parameter and the transitive closure of all algebras and fit
functions that depend on that free parameter. Similarly, each
definition variable keeps track of all the objects that store that
free parameter and the transitive closure of all the algebras and
fit functions that depend on that free parameter. At each
iteration of the optimization, when the free parameter values are
updated, all of the dependencies of that free parameter are marked
as dirty (see omxFitFunction.repopulateFun
). After an
algebra or fit function is computed, omxMarkClean()
is
called to to indicate that the algebra or fit function is updated.
Similarly, when definition variables are populated in FIML, all of
the dependencies of the definition variables are marked as dirty.
Particularly for FIML, the fact that non-definition-variable
dependencies remain clean is a big performance gain.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.