Mark Reed
Mark Reed
Thanks for pointing this out. I'm not accepting your PR as the bld and Makefile needed to be updated plus I modified the build to now include the liburing library...
I have a server that sets up uvloop in python then runs in C. To access the loop I call out to python. It would be nice to have access...
Exposing the loop may not be a good idea as I believe I see uvloop and other libraries using the loop's data field. It would at least need a note....
Issues isn't for questions - you can use stackoverflow for questions. If you use a pool you can set pool_recycle=60 when creating it and connections open for 60 seconds without...
Yeah, looking at my code renaming it would be a good idea as it isn't clear. I'll look at making a PR in a few days if I have time.
To repro mysql console ``` create database tst; use tst; create table foo( a int); select count(*) from foo; ``` a.py ```python import aiomysql import asyncio loop = asyncio.get_event_loop() async...
Should we remove frameworks like gnet? It only implements plaintext and isn't actually doing any parsing / routing - it just scans to the \r\n\r\n and sends a canned response...
Awesome thanks. I fixed this on the branch I'm working on to add support for the on disk cache. I'll make that branch public later, and close this when its...
I'll try doing the BF16 dot product with this. Shall we add a new function _matmul_ as well for matrix multiplication?
@ashvardanian I'm adding support for this. Would it make sense for f16 and bf16 to use check_c_source_compiles in cmake to detect compiler support? ``` check_c_source_compiles( [=[ int main(int argc, char...