diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-15 11:53:50 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-15 11:53:50 +0200 |
commit | ae2aaee2e3f82f62a76fac7f1db9409ee9bb2ad6 (patch) | |
tree | 474afdf69f3e86f96ac53743b0e03ad4a507cd3b /MLP/include/dfatool_host.ah | |
parent | 91491e329c1116a805229cfa75db0516a1268e54 (diff) |
MLP: fix loop iteration joinpoint
Diffstat (limited to 'MLP/include/dfatool_host.ah')
-rw-r--r-- | MLP/include/dfatool_host.ah | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MLP/include/dfatool_host.ah b/MLP/include/dfatool_host.ah index 8cc4db5..6ea4a18 100644 --- a/MLP/include/dfatool_host.ah +++ b/MLP/include/dfatool_host.ah @@ -21,8 +21,10 @@ aspect DfatoolHostTiming : public DfatoolHostDPUTiming { printf("[>>] MLP | n_dpus=%u n_rows=%u n_cols=%u\n", NR_DPUS, n_rows, n_cols); } - advice call("% binarySearch(...)") : after() { - printf("[--] MLP | n_dpus=%u n_rows=%u n_cols=%u\n", NR_DPUS, n_rows, n_cols); + advice call("% start(...)") : after() { + if (*(tjp->arg<1>()) == 1) { + printf("[--] MLP | n_dpus=%u n_rows=%u n_cols=%u\n", NR_DPUS, n_rows, n_cols); + } } advice execution("% main(...)") : after() { |