Skip to content
Snippets Groups Projects
  1. Sep 28, 2018
  2. Aug 31, 2018
  3. Aug 29, 2018
  4. Jun 04, 2018
    • Danilo Piparo's avatar
      [MT] Add RConcurrentHashColl class · 017d51f3
      Danilo Piparo authored
      this helper is in the ROOT::Internal namespace. The hash used is sha256
      through the ROOT::Internal::RSha256Hash class.
      Even if this is technically a container, it's not in core/cont because of
      dependency issues: we do not want core to depend thread and viceversa.
      017d51f3
  5. Jan 17, 2018
  6. Jul 28, 2017
    • Raphael Isemann's avatar
      Use ROOT_STANDARD_LIBRARY_PACKAGE where possible [NFC] · ac0de75b
      Raphael Isemann authored
      This refactors the CMake build files to no longer manually call
      the CMake functions for generating and linking the dicionairies.
      One reason is to reduce boilerplate, the other is that it is now
      no longer possible to have naming mismatches between the dictionary
      generation arguments and linking function arguments which was causing
      the race conditions we had in our build system.
      
      This also now follows more strictly the separation between dependencies
      like Math, Tree and Core and pure linking flags to external libraries.
      ac0de75b
  7. Jul 12, 2017
    • Raphael Isemann's avatar
      Add missing dependencies to ROOT_GENERATE_DICTIONARY · 8a646b53
      Raphael Isemann authored
      ROOT_GENERATE_DICTIONARY allows to specify dependencies, but we currently
      don't actually specify those. As we need this for getting the module
      dependencies right (as we can't build missing modules on demand), we should
      add those dependencies here. Then those dependencies propagate to the
      rootcling invocation which will in the future also generate the C++ module
      for the selected dictionary.
      8a646b53
  8. Jun 29, 2017
  9. May 09, 2017
  10. Feb 16, 2017
  11. Jan 28, 2017
  12. Jan 24, 2017
    • Gerardo Ganis's avatar
      multicore: reorganize files and name according to ROOT-8513 · 5d609164
      Gerardo Ganis authored
      This patch realizes the reorganizational changes outlined in ROOT-8513.
      In details:
         - Move TExecutor into core/base
         - The multi-thread Tree processor TTreeProcessor is renamed TTreeProcessorMT
         - The TTree porcessing part of TProcessExecutor is moved to a new
           class TTreeProcessorMP situated under tree/treeplayer (the interface
           is under ROOT) as TTreeProcessorMT. The methods are renamed 'Process' instead
           of ProcTree for symmetry.
         - The internal classes depending on libTree and libRIO (TPoolPlayer, TPoolProcessor)
           are also moved to tree/treeplayer and reorganized in such a way to remove code
           duplication. Their names are also changed to reflect their task.
           The new code is the new files TMPWorkerTree{.h,.cxx}.
         - The internal clas TPoolWorker is renamed TMPWorkerExecutor to reflect its task.
      5d609164
  13. Jan 17, 2017
  14. Oct 24, 2016
  15. Oct 17, 2016
  16. Sep 27, 2016
  17. Sep 16, 2016
    • Enric Tejedor Saavedra's avatar
      Implementation of TTreeProcessor::Process. · 7dec9bd9
      Enric Tejedor Saavedra authored
      This commit provides an implementation of a new implicit multi-threading
      (IMT) use case, incarnated in method TTreeProcessor::Process.
      
      TTProcessor::Process allows to process the entries of a TTree in parallel.
      The user provides a function that receives one parameter, a TTreeReader,
      that can be used to iterate over a subrange of entries. Each subrange
      corresponds to a cluster in the TTree and is processed by a task, which
      can potentially be run in parallel with other tasks.
      
      In order to enable this new IMT use case, other changes are introduced:
      - Global flag to enable this IMT use case (enabled implicitly inside
      TTProcessor::Process).
      - Spin lock implementation of a Read-Write lock.
      - RW lock protection in TFile, activated only when calling
      TTProcessor::Process.
      7dec9bd9
  18. Sep 15, 2016
  19. Apr 27, 2016
  20. Feb 12, 2016
    • Danilo Piparo's avatar
      Upgrade and refactor the TThreadedObject class and tutorial · 7ed06c6a
      Danilo Piparo authored
      o Properly put in the ROOT directory the TThreadedObject header
      o Remove the ThreadIndex header as not necessary anymore
      o Refactor and extensively document the TThreadedObject class
        - Better handling of size of slot array
        - Correct handling of pointers
        - Add the Get and GetAtSlotUnchecked methods
        - Move the assigning of slot index from an external helper to the class itself
      o Update the tutorial and its documentation
      7ed06c6a
  21. Feb 10, 2016
    • Danilo Piparo's avatar
      TThreadedObject: allow to use thread unsafe objects from different threads · 506ee8a1
      Danilo Piparo authored
      o CMakeLists modify to take into account the new files
      o Factorise the finding of the thread index and the TThreadedObject class
        - TBB will be easily pluggable if required
      o Tutorial which shows how to fill histograms in parallel from multiple threads
        - "Symmetric" to mp201 where the TMultiProc class is used
      506ee8a1
  22. Dec 17, 2015
  23. Dec 16, 2015
  24. Dec 03, 2015
  25. Aug 23, 2015
  26. Aug 05, 2014
  27. Jun 02, 2014
  28. May 21, 2014
  29. May 06, 2014
  30. Jan 31, 2014
    • Danilo Piparo's avatar
      Fix the CMake build · 880fe6d6
      Danilo Piparo authored
      now the library names in the rootmaps are sane.
      In addition, the creation of the tmva and genvector dicts was
      simplified.
      880fe6d6
  31. Dec 17, 2013
  32. Feb 28, 2012
  33. Jan 09, 2012
  34. Dec 20, 2011
Loading