From 651a6edc5c08b2a32e123219c066292abdcf5819 Mon Sep 17 00:00:00 2001 From: Nathan Luehr Date: Thu, 10 Dec 2015 17:54:41 -0800 Subject: [PATCH] Fixed bug in MPI initialization. --- src/core.cu | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/core.cu b/src/core.cu index 6163dd1..4e357bb 100644 --- a/src/core.cu +++ b/src/core.cu @@ -459,9 +459,6 @@ static ncclResult_t commBuildMaps(ncclComm_t comm, ncclUniqueId* commId, int ran commClearMaps(comm); return ncclUnhandledCudaError; } - if (shmUnlink(rankname) != ncclSuccess) { - INFO("rank %d failed to unlink sysmem beffer of rank %d, %s", rank, iRank, rankname); - } if (cudaHostGetDevicePointer(comm->remote+i, comm->cleanup[i].handle, 0) != cudaSuccess) { WARN("rank %d failed to obtain dev ptr for rank %d", rank, iRank); commClearMaps(comm);