From 51829cc3c1f7a237b9f344c134985ac67926d020 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 13 May 2025 14:19:31 +0200 Subject: VA: Aspect Header: Use aspect-provided input_size --- VA/include/dfatool_host.ah | 4 ++-- 1 file 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); } }; -- cgit v1.2.3