Compare commits

...

1 Commits

Author SHA1 Message Date
Craigory Coppola 86be0dc0e5 fix(core): run task hasher in serial instead of parallel
Remove parallel processing from task hasher to test performance impact
and debug potential thread-related issues.

- Changed .par_bridge() to serial .try_for_each()
- This makes hash instruction processing sequential
2025-07-21 15:45:17 -04:00
@@ -110,7 +110,6 @@ impl TaskHasher {
.iter()
.map(move |instruction| (task_id, instruction))
})
.par_bridge()
.try_for_each(|(task_id, instruction)| {
let hash_detail = self.hash_instruction(
task_id,