mkl.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*******************************************************************************
  2. * Copyright 1999-2022 Intel Corporation.
  3. *
  4. * This software and the related documents are Intel copyrighted materials, and
  5. * your use of them is governed by the express license under which they were
  6. * provided to you (License). Unless the License provides otherwise, you may not
  7. * use, modify, copy, publish, distribute, disclose or transmit this software or
  8. * the related documents without Intel's prior written permission.
  9. *
  10. * This software and the related documents are provided as is, with no express
  11. * or implied warranties, other than those that are expressly stated in the
  12. * License.
  13. *******************************************************************************/
  14. /*
  15. ! Content:
  16. ! Intel(R) oneAPI Math Kernel Library (oneMKL) interface
  17. !******************************************************************************/
  18. #ifndef _MKL_H_
  19. #define _MKL_H_
  20. #if defined(__MIC__) || defined(__TARGET_ARCH_MIC)
  21. # define MKL_CALL_CONV
  22. #else
  23. # define MKL_CALL_CONV __cdecl
  24. #endif
  25. #define _Mkl_Api(rtype,name,arg) extern rtype MKL_CALL_CONV name arg
  26. #define _mkl_api(rtype,name,arg) extern rtype MKL_CALL_CONV name arg
  27. #define _MKL_API(rtype,name,arg) extern rtype MKL_CALL_CONV name arg
  28. #include "mkl_version.h"
  29. #include "mkl_types.h"
  30. #include "mkl_blas.h"
  31. #include "mkl_trans.h"
  32. #include "mkl_cblas.h"
  33. #include "mkl_spblas.h"
  34. #include "mkl_lapack.h"
  35. #include "mkl_lapacke.h"
  36. #include "mkl_pardiso.h"
  37. #include "mkl_sparse_handle.h"
  38. #include "mkl_dss.h"
  39. #include "mkl_rci.h"
  40. #include "mkl_vml.h"
  41. #include "mkl_vsl.h"
  42. #include "mkl_df.h"
  43. #include "mkl_service.h"
  44. #include "mkl_dfti.h"
  45. #include "mkl_trig_transforms.h"
  46. #include "mkl_poisson.h"
  47. #include "mkl_solvers_ee.h"
  48. #include "mkl_direct_call.h"
  49. #include "mkl_compact.h"
  50. #include "mkl_graph.h"
  51. #include "mkl_sparse_qr.h"
  52. #endif /* _MKL_H_ */