Shaun Cutts
Shaun Cutts
This is even worse if you want to have a many-to-many relationship between a table and itself: not only can't you control the names, but they are the same. :(
NB -- I tried calling end(0) but still no luck. I noticed in passing that end() is synchronous but contains async close() -- perhaps it should return a promise?
"almost" workaround: seems to work now if I call end() AND emit end: tstream.end(0) tstream.emit('end') Presumably this is "an accident" :) **UPDATE** I spoke too soon -- still intermittently causing...
(seems to have been patched?)
Why does this pin pyyaml & future? Is there a problem with newer versions?
@gmarkall - I have a renewed need to use more advanced features of cooperative groups -- via cu code if necessary. In the forum thread - https://numba.discourse.group/t/pass-cooperative-group-to-external-routine-defined-in-cu-file/1742 - you tried...
Yes .. this is pretty non-intuitive. I wish there was a "refresh" menu option or (better) icon.
also imghdr has been removed from python 3.13?
I'm getting this same issue using `pytest-cases`
Attempting to workaround, I implemented the following monkeypatching facility for cuda.jit: ```py import os from typing import Any from numba.cuda import decorators # type: ignore[import] from numba.cuda.dispatcher import CUDADispatcher #...