We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1362ec5 commit 66142bdCopy full SHA for 66142bd
IGC/AdaptorCommon/API/igc.h
@@ -84,6 +84,17 @@ typedef struct {
84
#define SetSimdSpill(MODE, stats) (stats = (stats | (BIT_CG_SIMD##MODE) | (BIT_CG_SPILL##MODE)))
85
#define SetSimdNoSpill(MODE, stats) (stats = (stats | (BIT_CG_SIMD##MODE) & ~(BIT_CG_SPILL##MODE)))
86
87
+#define IGC_SHIM_LEGACY_LLVM_VERSION 9
88
+#define IGC_SHIM_DEFAULT_LLVM_VERSION 14
89
+#define IGC_SHIM_NEXT_LLVM_VERSION 15
90
+
91
+#if defined(_WIN64) || defined(__x86_64__) // 64-bit
92
+#define IGC_DLL_POSTFIX "64.dll"
93
+#else // 32-bit
94
+#define IGC_DLL_POSTFIX "32.dll"
95
+#endif
96
97
98
typedef enum CG_FLAG_t {
99
FLAG_CG_ALL_SIMDS = 0,
100
FLAG_CG_STAGE1_FAST_COMPILE = 1,
0 commit comments