Inherent code performance advantages of D over C?

bearophile bearophileHUGS at lycos.com
Fri Dec 6 15:35:21 PST 2013


Another thing to keep in account is that C is not much any more 
the golden standard for code performance. Today people that want 
to write fast code often use parallel algorithms using GPUs with 
CUDA/OpenCL (that look like C with extras), and when they are on 
CPUs they need to use all cores efficiently and SIMD units of the 
CPUs. (See the ideas of the Intel language compiled by ispc 
compiler: http://ispc.github.io/  This contains ideas useful to 
improve D language. D is lacking here).

Bye,
bearophile


More information about the Digitalmars-d mailing list