Skip to content
  1. Dec 22, 2015
  2. Dec 09, 2015
  3. Nov 11, 2015
  4. Nov 10, 2015
  5. Nov 02, 2015
  6. Oct 31, 2015
  7. Oct 30, 2015
  8. Oct 21, 2015
  9. Oct 20, 2015
  10. Oct 17, 2015
  11. Sep 28, 2015
  12. Sep 14, 2015
  13. Sep 06, 2015
  14. Aug 27, 2015
  15. Aug 26, 2015
  16. Aug 18, 2015
  17. Aug 17, 2015
  18. Aug 07, 2015
    • Andreas Klöckner's avatar
      Merge pull request #83 from sjperkins/fix-set-async-stream-param · c8c7a6a4
      Andreas Klöckner authored
      Fix stream parameters in asynchronous methods.
      c8c7a6a4
    • Simon Perkins's avatar
      Fix stream parameters in asynchronous methods. · 5d5e5a26
      Simon Perkins authored
      Within gpuarray.set_async, the stream keyword
      argument in the call to gpuarray.set was
      always set to None.
      
        return self.set(ary, async=True, stream=None)
      
      This keyword argument is now always set to value
      supplied in the arguments to gpuarray.set_async.
      
        return self.set(ary, async=True, stream=stream)
      
      Within _memcpy_discontig, Memcpy2D.__call__
      was being called for asynchronous cases as follows:
      
        copy(stream=stream)
      
      However, this does not match the C++ function
      definition. Instead, they are now called as follows:
      
        copy(stream)
      5d5e5a26
  19. Aug 04, 2015
Loading