Joey Smalen
Joey Smalen
Currently the training extensions support `openvino==2022.3.0` and alike, however, 2022.3 removed Myriad support. Is there a way to train a model for OpenVINO 2022.1 which still supports the Myriad VPU...
Zap 0.10.1 (although `build.zig.zon` still is `0.9.1`?), trying to (cross)compile for arm (32 bit), returns with: ``` > [authentication arm 1/1] RUN /compiler/zig build -Doptimize=ReleaseSafe -Dtarget=arm-linux-musleabihf: 6.371 install 6.371 +-...
With the implementation of `std.posix.waitpid(pid:, flags:)`, the use of `-1` will crash as unreachable (due to errno of `CHILD`) if there's no terminated children instead of allowing it to be...
There's currently no std mapping for the [`sigsuspend(sig:)`](https://www.man7.org/linux/man-pages/man2/sigsuspend.2.html) syscall (POSIX.1-2008). ```c int sigsuspend(const sigset_t *sigmask); ``` Even though `std.c.sigwait(set:, sig:)` exists and does roughly the same wanted behaviour, it requires...
Simply puts `getpid()` and `getppid()` into `std.posix` by making use of `posix.system` if available. Removes a tiny bit of boilerplate when making cross-Darwin-Linux platform stuff by not referencing `std.c` or...