Skip to content

Commit

Permalink
Fixed small bug in MPI send
Browse files Browse the repository at this point in the history
  • Loading branch information
golosio committed Jun 4, 2024
1 parent 4f0eb12 commit 210a9d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/spike_mpi.cu
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,8 @@ ConnectMpi::SendSpikeToRemote( int n_hosts, int max_spike_per_host )

// nonblocking sent of spike packet to MPI proc ih
MPI_Isend( &h_ExternalTargetSpikeNodeId[ array_idx ], n_spikes, MPI_INT, ih, tag, MPI_COMM_WORLD, &request );
MPI_Request_free(&request);

// printf("MPI_Send nspikes (src,tgt,nspike): "
// "%d %d %d\n", mpi_id, ih, n_spikes);
// printf("MPI_Send 1st-neuron-idx (src,tgt,idx): "
Expand Down

0 comments on commit 210a9d7

Please sign in to comment.