/usr/include/vmmlib/blas_includes.hpp is in libvmmlib-dev 1.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | #ifndef __VMML__BLAS_INCLUDES__HPP__
#define __VMML__BLAS_INCLUDES__HPP__
#ifdef __APPLE__
#include <Accelerate/Accelerate.h>
#else
extern "C"
{
#include <cblas.h>
}
#endif
#endif /* __VMML__BLAS_INCLUDES__HPP__ */
|