diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-13 15:39:00 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-13 15:39:00 +0200 |
commit | 5f8f20540a69713921b0f49ae9d28b5f56943b34 (patch) | |
tree | 5428de1b74dda9363a2cc95be96c7a228562c0ce /TRNS/include/dfatool_host.ah | |
parent | 51829cc3c1f7a237b9f344c134985ac67926d020 (diff) |
TRNS, VA: global params are not required
Diffstat (limited to 'TRNS/include/dfatool_host.ah')
-rw-r--r-- | TRNS/include/dfatool_host.ah | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TRNS/include/dfatool_host.ah b/TRNS/include/dfatool_host.ah index 94f6101..6bdd3b5 100644 --- a/TRNS/include/dfatool_host.ah +++ b/TRNS/include/dfatool_host.ah @@ -12,14 +12,14 @@ aspect DfatoolHostTiming : public DfatoolHostDPUTiming { advice call("% input_params(...)") : after() { Params* p = tjp->result(); input_size = p->M_ * p->m * p->N_ * p->n; - printf("[>>] TRNS | n_dpus=%u n_elements=%lu e_exp=%d\n", NR_DPUS, input_size, p->exp); + printf("[>>] TRNS | n_dpus=%u n_elements=%lu\n", NR_DPUS, input_size); } advice call("% trns_host(...)") : after() { - printf("[--] TRNS | n_dpus=%u n_ranks=%u n_elements=%lu e_exp=%d\n", n_dpus, n_ranks, input_size, p.exp); + printf("[--] TRNS | n_dpus=%u n_elements=%lu\n", NR_DPUS, input_size); } advice execution("% main(...)") : after() { - printf("[<<] TRNS | n_dpus=%u n_elements=%lu e_exp=%d\n", NR_DPUS, input_size, p.exp); + printf("[<<] TRNS | n_dpus=%u n_elements=%lu\n", NR_DPUS, input_size); } }; |