diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-07 10:28:40 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-07 10:28:40 +0100 |
commit | 9754b3a46dad43211539a3dbfbc7c5095bdf30f5 (patch) | |
tree | 27ad1d88d18059355cf29dae2d84295763126aac /doc | |
parent | 260a5fa322c6910fbc7b046b6f63aef1a636ef92 (diff) |
Replace RMT_ENABLED=0 with MODEL=uls
Diffstat (limited to 'doc')
-rw-r--r-- | doc/modeling-method.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/modeling-method.md b/doc/modeling-method.md index bd0a15d..98d8fcf 100644 --- a/doc/modeling-method.md +++ b/doc/modeling-method.md @@ -60,7 +60,7 @@ You should also specify `DFATOOL_XGB_N_ESTIMATORS`, `DFATOOL_XGB_MAX_DEPTH`, and ## Least-Squares Regression -If dfatool determines that there is no need for a tree structure, or if `DFATOOL_RMT_ENABLED=0` has beenset, it will go straight to least-squares regression. +If dfatool determines that there is no need for a tree structure, or if `DFATOOL_MODEL=uls`, it will go straight to least-squares regression. By default, it still utilizes the RMT/ULS algorithms to find and fit a suitable function template. If needed, `--function-override` can be used to set a function template manually. For instance, in order to specify that NMC DPU allocation latency is a function of the number of DPUs (and nothing else), ue `--function-override 'NMC reconfiguration:latency_dpu_alloc_us:regression_arg(0) + regression_arg(1) * parameter(n_dpus)'` |