Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goliaro committed Mar 14, 2024
1 parent c856680 commit 8d82c91
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/mapper/mapper.cc
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,9 @@ void FFMapper::map_task(const MapperContext ctx,
output.task_priority = 0;
output.postmap_task = false;
if (task.target_proc.address_space() != node_id) {
assert(false);
if (enable_control_replication) {
assert(false);
}
output.target_procs.push_back(task.target_proc);
} else if (task.target_proc.kind() == Processor::TOC_PROC) {
output.target_procs.push_back(task.target_proc);
Expand Down

0 comments on commit 8d82c91

Please sign in to comment.