From d623e873c743cc2f3bf2f77423641297c3c64c0d Mon Sep 17 00:00:00 2001 From: Joseph Schuchart Date: Thu, 21 Nov 2024 09:10:55 -0500 Subject: [PATCH] PaRSEC requires last_data_check_epoch to be initialized to non-zero No dox, no problem. Signed-off-by: Joseph Schuchart --- ttg/ttg/parsec/ttg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttg/ttg/parsec/ttg.h b/ttg/ttg/parsec/ttg.h index b0b94a902..27755eea5 100644 --- a/ttg/ttg/parsec/ttg.h +++ b/ttg/ttg/parsec/ttg.h @@ -1507,7 +1507,7 @@ namespace ttg_parsec { PARSEC_OBJ_CONSTRUCT(gpu_task, parsec_list_item_t); gpu_task->ec = parsec_task; gpu_task->task_type = 0; // user task - gpu_task->last_data_check_epoch = 0; // used internally + gpu_task->last_data_check_epoch = std::numeric_limits::max(); // used internally gpu_task->pushout = 0; gpu_task->submit = &TT::device_static_submit;