Commit 26316617 authored by Jakub Klinkovský's avatar Jakub Klinkovský Committed by Jakub Klinkovský
Browse files

Fixed specialization of loadMesh for Mesh, CUDA and MPI

parent 219db39d
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -189,9 +189,12 @@ loadMesh( const String& fileName,
   }

   Mesh< MeshConfig, Devices::Host > hostMesh;
   if( ! loadMesh( fileName, hostMesh ) )
   DistributedMeshes::DistributedMesh< Mesh< MeshConfig, Devices::Host > > hostDistributedMesh;
   if( ! loadMesh< CommunicatorType >( fileName, hostMesh, hostDistributedMesh ) )
      return false;
   mesh = hostMesh;
   // TODO
//   distributedMesh = hostDistributedMesh;
   return true;
}