Remove NVML support
[alexxy/gromacs.git] / src / gromacs / mdrun / runner.cpp
index 678ba99535d7139db614d2b63f5a776d49681854..d2ac9390fd1db938ec27c6576a1fdbb83a9cfca2 100644 (file)
@@ -1022,7 +1022,7 @@ int Mdrunner::mdrunner()
         {
             int nonbondedDeviceId = nbGpuTaskMapping->deviceId_;
             nonbondedDeviceInfo = getDeviceInfo(hwinfo->gpu_info, nonbondedDeviceId);
-            init_gpu(mdlog, nonbondedDeviceInfo);
+            init_gpu(nonbondedDeviceInfo);
 
             if (DOMAINDECOMP(cr))
             {
@@ -1046,7 +1046,7 @@ int Mdrunner::mdrunner()
     if (thisRankHasPmeGpuTask)
     {
         pmeDeviceInfo = getDeviceInfo(hwinfo->gpu_info, pmeGpuTaskMapping->deviceId_);
-        init_gpu(mdlog, pmeDeviceInfo);
+        init_gpu(pmeDeviceInfo);
         pmeGpuProgram = buildPmeGpuProgram(pmeDeviceInfo);
         // TODO It would be nice to move this logic into the factory
         // function. See Redmine #2535.