Ruoxi

Results 22 issues of Ruoxi

`pyperf` has different warmup policies for JIT and non-JIT implementations, and for instance -- if a new python implementation is under development for some research purpose: it introduces JIT and...

`MIR_output` generally seems to put proto declarations at the end of modules. When scanning the output again MIR complains about unrecognized symbols. Perhaps forward declarations need to be added in...

A small reproducer on linux x64 with gcc: ```c #include #include #include #include #include #include "mir.h" #include "mir-gen.h" void* ptr; typedef void (*func_t)(); void run(int opt_lv) { void* ctx =...

For my own use case, I want to catch the errors, print them to the user, and tell the user to fix somewhere in the input (interactively) instead of terminating...

The master does not compile when setting `MIR_NO_IO` to 1 and `MIR_NO_SCAN` to 0 now.

The latest `nnet3` setup for deep neural networks is intended for supporting *the kinds of topologies that both the nnet1 and nnet2 code-bases support, and more; and to do so...

help wanted
stale-exclude

```javascript typeof obj.words === "array" ``` This will never be true, since `typeof [1, 2]` is `object`. Perhaps we shall change it into `Array.isArray`?

Changes: 1. Moved the final scaling and uint8 quantization to GPU, reducing CPU and main memory bandwidth consumption (Line 225-227). 2.5x speed-up. 2. Instruct FFMPEG to use RGB frames instead...