1. Apr 03, 2019
  2. Mar 08, 2019
  3. Mar 05, 2019
  4. Feb 21, 2019
  5. Feb 19, 2019
  6. Dec 19, 2018
  7. Dec 07, 2018
  8. Dec 05, 2018
  9. Nov 26, 2018
  10. Nov 12, 2018
  11. Nov 11, 2018
  12. Oct 31, 2018
    • Tommaso Tocci's avatar
    • Tommaso Tocci's avatar
      use mercury automatic SM routing · c40be81b
      Tommaso Tocci authored
      Mercury now support shared memory autorouting.
      
      A single margo instance can be initialized and it will handle both
      shared memory communication and remote ones.
      
      If the endpoint of the RPC is local mercury will automatically use
      shared memory.
      
      Since there is only one margo instance all the duplicated code for
      rpc/ipc have been unified and simplified considerably.
      
      ------
      
      The way in which client contact the server has changed.
      
       - Server initializes its own margo instance and generate the endpoint
      communication string using `HG_Addr_self`.
       - This endpoint description string is written on the pid file
       - When the client library loads it will fetch the server endpoint
      description from the pid file and will use that to contact the server.
      c40be81b
  13. Oct 29, 2018
  14. Oct 28, 2018
  15. May 02, 2018
  16. Apr 19, 2018
  17. Apr 12, 2018
  18. Mar 25, 2018
  19. Mar 20, 2018
  20. Mar 16, 2018
  21. Mar 14, 2018
  22. Mar 13, 2018
    • Marc Vef's avatar
    • Tommaso Tocci's avatar
      Download deps: do not use log file · 95169f6f
      Tommaso Tocci authored
      Since the download of sources are performed in parallel, we cannot use
      anymore a single log file.
      
      The output of the download commands has been reduced to errrors only and
      it will be outputted directly on stderr. Thus the log file stuff have been
      completely removed.
      
      Moreover the clonedeps function now takes the REPO as second parameter
      and additional (non mandatory) git flags as fourth parameter.
      
      Additional fixes have been introduced to run commands in script mode
      (-q, -f, ...)
      95169f6f
    • Tommaso Tocci's avatar
      speedup src download for some deps · 7a7e3ef8
      Tommaso Tocci authored
      For dependencies in which a specific tags is specified we can download
      the code snapshot instead of cloning the whole repo.
      7a7e3ef8
    • Tommaso Tocci's avatar
      dl_script: download deps in parallel · fac077d8
      Tommaso Tocci authored
      Perform all the download and git clone action in parallel using several
      processes.
      
      Due to the new parallel use of the clonedeps and wgetdeps functions,
      some adjustment to printed message has been made. Now the function write
      on stdout only once when they complete.
      fac077d8
  23. Mar 09, 2018
  24. Mar 02, 2018
  25. Feb 26, 2018
  26. Feb 22, 2018
  27. Feb 21, 2018
    • Tommaso Tocci's avatar
      Download script: force git checkout · 91186508
      Tommaso Tocci authored
      The download script can be used to update dependencies source code by
      pull the new version and performing a checkout to that version.
      Without forcing (-f) the checkout files that have been modified or
      patched won't be updated correctly.
      91186508