Kaleb Barrett

Results 630 comments of Kaleb Barrett

`IS_VENV` was removed and this shouldn't be an issue anymore.

Looks like it's missing from the map in this function. https://github.com/cocotb/cocotb/blob/0590b8264f47df8ec21e2707ef50250d7e95bf15/cocotb/share/lib/vpi/VpiImpl.cpp#L175. Also above in `to_gpi_objtype` it's getting mapped to a struct, which I'm unsure is correct or not.

Oh I see what the problem is. You are trying to access one of the alternatives of the union. Yeah I don't expect that to work at all. This is...

https://github.com/ghdl/ghdl/issues/3064

This does not exist (yet). I'd like to see this feature supported by the scheduler rewrite that @marlonjames is working on. Do you expect triggers to be supported, or only...

@raysalemi > I'm not sure if that requires triggers It requires `Event`, but not *simulator* triggers for timing, value change, etc. There are others interested in running without a simulator,...

@PiyushSaini97 This feature in particular is pretty low priority, but it might become very easy to implement after a coming refactor. Another possible solution is to use asyncio in place...

`peek` and `peek_nowait` sound like a good idea.

This is handled correctly with: https://github.com/ktbarrett/coconext/blob/dev/src/coconext/queue.py. The general issue is that the following is no guarantee that what you peek is what you'll get. ```python if await q.peek() > 0:...