1
      2
      3
      4
      5
      6
      7
      8
      9
     10
     11
     12
     13
     14
     15
#ifndef ULMBLAS_CXXBLAS_AUXILIARY_MACROS_H
#define ULMBLAS_CXXBLAS_AUXILIARY_MACROS_H 1

#ifndef CXXBLAS_DEBUG_OUT

#   ifdef CXXBLAS_DEBUG
#       include <iostream>
#       define CXXBLAS_DEBUG_OUT(x) std::cerr << "[ulmBLAS] " << x << std::endl;
#   else
#       define CXXBLAS_DEBUG_OUT(x)
#   endif

#endif

#endif // ULMBLAS_CXXBLAS_AUXILIARY_MACROS_H