Arthur Peters
Arthur Peters
I'm working on a distributed database which has mobile Python code. The inability to pickle pybind11 functions forces all native function imports into the function that is being transferred, which...
Yes. I don't love the API, but it does work: https://github.com/KatanaGraph/katana/blob/master/python/katana/numba_support/numpy_atomic.py (The project is BSD licensed) Ideally there would be some way to mark a normal array access as needing...
> Could you elaborate further on when it may not work? If I pass a numpy array in, the original code has the pointer/ref count, I'm not sure I'm following...
@Ezriilc I don't think there are direct messages on github. And for open-source projects having all dev discussions in the open is generally a good policy. That said I don't...
Well I want this feature!!! ;-) And it's only polite to have PR ready as soon as I get it prototyped for myself.
The last commit adds several new functions. I believe they are all worth including. But of course that is up to you. They are documented in the include file. cluGetContextDefaultDevice...
OK I reworked the set of commits. I think this addressed all of your issues with them. cluHostMalloc... is not in a branch. I'll do a first version of the...
Oh and I was thinking about writing a function (or extending the functionality of cluBuildProgramSImple) to allow it to return compiler errors in the case of a build failure. Maybe...
I don't understand how this is possible. The communication channel is ordered and the dispatch is ordered, so reordering can only happen between operations on different threads and those reorderings...
Ok. I see. From a simplistic Lapis semantic perspective this means that cudaLaunchKernel should NOT be `ava_async` since it performs some action before returning. It sounds like you are saying...