vim_snippets/CPP/hpc/include_cblas.c.snip

7 lines
131 B
Plaintext
Raw Permalink Normal View History

2024-03-21 13:49:58 +01:00
#include <stdlib.h>
#if defined(__MACH__) && defined(__APPLE__)
#include <Accelerate/Accelerate.h>
#else
#include <cblas.h>
#endif