python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
No output when JIT compile RISC-V assembly
I'm writing myself a toy JIT compiler, it basically just mmap a chunk of memory, write binary to it, mark this chunk of memory as executable, convert it to a function pointer and call it. It works wel...

Emanon
Votes: 0
Answers: 0
WinDbg cannot resolve .NET Core libraries symbols
I am new to WinDbg and I recently started using it to see JITed assembly code generated by the JIT compiler for C# code. (I know there are other methods as well for example sharplab.io, but still)
Fol...
Shreyas Jejurkar
Votes: 0
Answers: 2
Why does running multiple lambdas in loops suddenly slow down?
Consider the following code:
public class Playground {
private static final int MAX = 100_000_000;
public static void main(String... args) {
execute(() -> {});
execute(() ...
Jakes
Votes: 0
Answers: 1
Numpy's mean and standard deviation with Numba on Python
I am trying to use Numpy's mean and standard deviation functions insinde a function and they don't seem to be compatible with Numba, although Numba documentation states them as compatible.
My code is ...

Pablo
Votes: 0
Answers: 2