Skip to content

Instantly share code, notes, and snippets.

@OpenGamma-Blog
Created May 29, 2012 12:34
Show Gist options
  • Save OpenGamma-Blog/2828167 to your computer and use it in GitHub Desktop.
Save OpenGamma-Blog/2828167 to your computer and use it in GitHub Desktop.
Accessing Native Maths Libraries 3
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