1. 05 Apr, 2016 13 commits
  2. 04 Apr, 2016 4 commits
  3. 02 Apr, 2016 3 commits
  4. 01 Apr, 2016 4 commits
  5. 31 Mar, 2016 1 commit
  6. 29 Mar, 2016 8 commits
  7. 28 Mar, 2016 4 commits
  8. 27 Mar, 2016 3 commits
    • Jason Madden's avatar
      fix thread creation on py27 · c51a2fc5
      Jason Madden authored
      c51a2fc5
    • Jason Madden's avatar
    • Jason Madden's avatar
      Parrellize cythoncpp.py. · 82e3709a
      Jason Madden authored
      On my machine, this cuts the build time by a fourth to a third.
      
      Not ready to merge, submitting for testing on CI (esp Windows).
      
      Cython calls are threaded because they release the GIL.
      
      The most expensive part was merging results, which holds the GIL, so use
      multiprocessing for that. Pre-combine the identical results that we
      expect to get for two sets of defines to reduce the number of merges.
      
      Change internal data structures to be immutable to make debugging this
      easier (and substantially faster when pickling through multiprocessing.)
      82e3709a