Skip to content
Snippets Groups Projects

P2P

Open
Jammer, Timrequested to merge
p2p into main
1 file
+ 1
3
Compare changes
  • Side-by-side
  • Inline
@@ -245,10 +245,8 @@ def replace_wait(wait_call, tm, wait_func_to_use):
@@ -245,10 +245,8 @@ def replace_wait(wait_call, tm, wait_func_to_use):
return
return
if wait_func_to_use == "mpi_testsome":
if wait_func_to_use == "mpi_testsome":
flag_name = tm.add_stack_variable("int")
flag_name = tm.add_stack_variable("int")
idx_name = tm.add_stack_variable("int")
idx_array = tm.add_stack_variable("int")
idx_array = tm.add_stack_variable("int")
test_call = MPICallFactory.mpi_testsome("1", wait_call.get_arg("request"), "&" + idx_name, "&" + idx_array,
test_call = MPICallFactory.mpi_testsome("1", wait_call.get_arg("request"), "&" + flag_name, "&" + idx_array,
"&" + flag_name,
wait_call.get_arg("status"))
wait_call.get_arg("status"))
test_call.set_rank_executing(wait_call.get_rank_executing())
test_call.set_rank_executing(wait_call.get_rank_executing())
test_call.set_identifier(wait_call.get_identifier())
test_call.set_identifier(wait_call.get_identifier())
Loading