Can MATLAB Coder generate code that uses Intel MKL?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Is it possible for MATLAB Coder to utilize Intel MKL when generating code? I have MATLAB code as follows:
% Finding magnitude of the gradients.
e = sqrt(h.*h + v.*v);
MATLAB Coder generates the following C code:
/* Finding magnitude of the gradients. */
for (k = 0; k < 2350; k++) {
f1 = h[k];
f2 = v[k];
e[k] = (float)sqrt(f1 * f 1+ f2 * f2);
}
Is it possible to have MATLAB Coder generate something like this?
/* Computes a square root of sum of two squared elements. */
vsHypot(2350, h, v, e);
0 comentarios
Respuestas (1)
Darshan Ramakant Bhat
el 7 de Jul. de 2021
You can refer to "Coder Replacement Libraries" available in MATLAB Coder. Please refer the below docs for more details :
Hope this will be helpful for you.
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Coder en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!