Created
May 29, 2012 12:34
-
-
Save OpenGamma-Blog/2828167 to your computer and use it in GitHub Desktop.
Accessing Native Maths Libraries 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void dgemv(char trans, int m, int n, double alpha, double[] a, int _offset_a, int lda, double[] x, int _offset_x, int incx, double beta, double[] y, int _offset_y, int incy) | |
{ | |
#ifdef THREAD_SAFETY_ENTRY_PT | |
#include THREAD_SAFETY_ENTRY_PT_CODE | |
#endif | |
wrapped_dgemv(trans, m, n, alpha, a, _offset_a, lda, x, _offset_x, incx, beta, y, _offset_y, incy); | |
#ifdef THREAD_SAFETY_EXIT_PT | |
#include THREAD_SAFETY_EXIT_PT_CODE | |
#endif | |
#ifdef ERROR_HANDLER | |
#include ERROR_HANDLER_CODE | |
#endif | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment