Skip to content
Snippets Groups Projects
  1. Apr 20, 2015
  2. Apr 10, 2015
  3. Feb 27, 2015
  4. Jan 11, 2015
  5. Nov 08, 2014
    • Jö Fahlke's avatar
      [vc] Simplify ignore lists. · 251deeb0
      Jö Fahlke authored
      "Makefile.in", "*.o", etc. need only be listed in the toplevel .gitignore, the
      rules are applied recursively.
      
      Test programs etc. should be listed as "/program" in their directory's
      .gitignore, so they are not accidentially ignored in a lower level directory.
      251deeb0
  6. Oct 17, 2014
  7. Oct 06, 2014
  8. Oct 01, 2014
  9. Sep 30, 2014
    • Steffen Müthing's avatar
      [MPI] Make parallel version CollectiveCommunication default-constructible · ed3e3167
      Steffen Müthing authored
      In order to simplify fallback handling between code with and without MPI
      support, this patch makes the specialization of CollectiveCommunication
      for MPI communicators default-constructible by defaulting the underlying
      MPI communicator to MPI_COMM_WORLD, which should be reasonable for most
      scenarios.
      
      As the non-specialized version for sequential code is already
      default-constructible, this allows grid constructors to accept a
      CollectiveCommunication object regardless of whether MPI support is
      enabled or not and to provide a default value for this parameter.
      
      This patch resolves FS#1497.
      ed3e3167
  10. Sep 29, 2014
    • Dominic Kempf's avatar
      Add binaryfunctions.hh as an include to CollectiveCommunication · 05f43148
      Dominic Kempf authored
      CollectiveCommunication serves as a fallback implementation, when
      code that is written for parallel computations is executed in sequential.
      The template parameters BinaryFunctions are no-op then, but they are
      still there to define the interface. However, in a generic (parallel)
      implementation these will be given. Including binaryfunctions.hh here
      avoids error messages due to no-op template parameters whose names
      could not be found by the compiler.
      05f43148
  11. May 14, 2014
  12. Apr 09, 2014
  13. Apr 07, 2014
  14. Mar 22, 2014
  15. Mar 18, 2014
  16. Mar 06, 2014
  17. Feb 14, 2014
  18. Jan 17, 2014
  19. Jan 16, 2014
  20. Jan 14, 2014
  21. Jan 10, 2014
  22. Dec 18, 2013
  23. Dec 17, 2013
  24. Dec 13, 2013
  25. Dec 03, 2013
    • Markus Blatt's avatar
      [release,parallel] Complete patch d561f032 · 79e8fa88
      Markus Blatt authored
      There was one line of diff missing in that patch. Sorry!
      79e8fa88
    • Markus Blatt's avatar
      [release,parallel] Allow copying of RemoteIndexListModifier. · d561f032
      Markus Blatt authored
      Previously, copying a RemoteIndexListModifier resulted in a double
      free of a pointer to a list of global indices. There was no need to
      use a pointer to this, though. After this patch we store the list directly
      by value. Thus the default copy constructor works but makes a rather cheap copy
      of a (most often empty) singly linked list and we get rid off the non-default
      destructor.
      d561f032
  26. Dec 02, 2013
  27. Oct 14, 2013
  28. Sep 23, 2013
  29. Jul 10, 2013
  30. May 08, 2013
Loading