|
|
|
|
|
by jernfrost
3050 days ago
|
|
When you write code in a C like fashion it can often get as fast or faster than C. Of course it has the disadvatnage of all jit languages that it will likely have slower startup. But when you crunch big chunks of data it should be able to compete with C. Actually want to qualify this a bit. Nothing gets automatically fast by just picking a fast language. That Julia is close to C in performance mainly means it is possible to achieve this through optimization without too much effort. However you still need to have some idea of what makes something slow or fast in Julia. Personally I find it very easy to optimize Julia code because you can quickly see how the JIT transforms an individual function and what you may need to change. |
|