Comment by akkad33
8 hours ago
Actually JITs can be faster than AOT compilation because they can be optimized for the current architecture they are running in. There were claims Julia, a JIT language can beat C in some benchmarks
8 hours ago
Actually JITs can be faster than AOT compilation because they can be optimized for the current architecture they are running in. There were claims Julia, a JIT language can beat C in some benchmarks
In fact, JITs can be faster because they can specialize code, i.e. make optimizations based on live data.