Arthur Benilov

Results 7 issues of Arthur Benilov

I've noticed on http streams pipelining is always disabled and all the range request sent by the client are unconstrained: ``` Range: bytes 0- ``` I believe this is because...

Hi 👋 , There are seem to be some unhandled cases in the MessagePack serializer: - `fromData` does not handle cases `0xd0`, `0xd1`, `0xd2`, and `0xd3`: ```cpp ... else if...

Please add support for the MPS backend as you do for cuda: ```python if torch.backends.mps.is_available(): mps = torch.device("mps") model = model_utils.DataParallel(model) model.to(mps) # ... and so on... x = x.to(mps)...

Running on Windows with MSVC, I am getting memory leak reports because of [`Algorithm::destroy`](https://github.com/KomputeProject/kompute/blob/51b05fea024d3f0e812f8413ae744019e4165673/src/Algorithm.cpp#L26-L32) not not freeing push and specialization constants. The comment says that they are supposed to be...

Currently the drop-down selection allows `All` or a single discrete channel to be selected. It should be possible to select multiple discrete MIDI channels. From @Synthematophon https://github.com/Archie3d/aeolus_plugin/issues/18#issuecomment-2159932911 > Hi, another...

enhancement

Current configuration allows only one MIDI key to be assigned to sequencer action;: ```json "sequencer": { "backward_key": 22, "forward_key": 23 } ``` Extend this to allow multiple keys: ```json "sequencer":...

enhancement

Is it possible to pass `--mapdir /mnt/share::./share` argument to c2w-net? I've tried to modify the code to include mapdir argument, but wasmtime refuses to recognize `--mapdir` as a valid argument...

enhancement