From 5f8f20540a69713921b0f49ae9d28b5f56943b34 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 13 May 2025 15:39:00 +0200 Subject: TRNS, VA: global params are not required --- VA/include/dfatool_host.ah | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'VA/include') diff --git a/VA/include/dfatool_host.ah b/VA/include/dfatool_host.ah index 950bff0..de781f3 100644 --- a/VA/include/dfatool_host.ah +++ b/VA/include/dfatool_host.ah @@ -11,15 +11,15 @@ aspect DfatoolHostTiming : public DfatoolHostDPUTiming { advice call("% input_params(...)") : after() { Params* p = tjp->result(); - printf("[>>] VA | n_dpus=%u n_elements=%lu e_exp=%d\n", NR_DPUS, p->input_size, p->exp); input_size = p->input_size; + printf("[>>] VA | n_dpus=%u n_elements=%lu\n", NR_DPUS, input_size); } 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, input_size, p.exp); + printf("[--] VA | n_dpus=%u n_elements=%lu\n", n_dpus, input_size); } advice execution("% main(...)") : after() { - printf("[<<] VA | n_dpus=%u n_elements=%lu e_exp=%d\n", NR_DPUS, input_size, p.exp); + printf("[<<] VA | n_dpus=%u n_elements=%lu\n", NR_DPUS, input_size); } }; -- cgit v1.2.3