ConvectionKernels_Config.h 277 B

12345678910111213
  1. #pragma once
  2. #ifndef __CVTT_CONFIG_H__
  3. #define __CVTT_CONFIG_H__
  4. #if (defined(_M_IX86_FP) && _M_IX86_FP >= 2) || defined(_M_X64) || defined(__SSE2__)
  5. #define CVTT_USE_SSE2
  6. #endif
  7. // Define this to compile everything as a single source file
  8. //#define CVTT_SINGLE_FILE
  9. #endif