summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBirte Kristina Friesel <derf@finalrewind.org>2025-05-13 14:19:31 +0200
committerBirte Kristina Friesel <derf@finalrewind.org>2025-05-13 14:19:31 +0200
commit51829cc3c1f7a237b9f344c134985ac67926d020 (patch)
tree0dfeb4b490fe658499d74832dc4960b58c4e9f3c
parenteb71b2b0a15a400d61285e4e0534a27af5c4f41d (diff)
VA: Aspect Header: Use aspect-provided input_size
-rw-r--r--VA/include/dfatool_host.ah4
1 files changed, 2 insertions, 2 deletions
diff --git a/VA/include/dfatool_host.ah b/VA/include/dfatool_host.ah
index 7b33cec..950bff0 100644
--- a/VA/include/dfatool_host.ah
+++ b/VA/include/dfatool_host.ah
@@ -16,10 +16,10 @@ aspect DfatoolHostTiming : public DfatoolHostDPUTiming {
}
advice call("% vector_addition_host(...)") : after() {
- printf("[--] VA | n_dpus=%u n_ranks=%u n_elements=%lu e_exp=%d\n", n_dpus, n_ranks, p.input_size, p.exp);
+ printf("[--] VA | n_dpus=%u n_ranks=%u n_elements=%lu e_exp=%d\n", n_dpus, n_ranks, input_size, p.exp);
}
advice execution("% main(...)") : after() {
- printf("[<<] VA | n_dpus=%u n_elements=%lu e_exp=%d\n", NR_DPUS, p.input_size, p.exp);
+ printf("[<<] VA | n_dpus=%u n_elements=%lu e_exp=%d\n", NR_DPUS, input_size, p.exp);
}
};