We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 793dd02 commit 2b48481Copy full SHA for 2b48481
src/cpu/x64/cpu_isa_traits.hpp
@@ -28,8 +28,12 @@
28
29
#include "cpu/platform.hpp"
30
31
+#if !defined(XBYAK64)
32
#define XBYAK64
33
+#endif
34
+#if !defined(XBYAK_NO_OP_NAMES)
35
#define XBYAK_NO_OP_NAMES
36
37
/* in order to make selinux happy memory that would be marked with X-bit should
38
* be obtained with mmap */
39
// #define XBYAK_USE_MMAP_ALLOCATOR
@@ -40,8 +44,10 @@
40
44
// #undef XBYAK_NO_EXCEPTION
41
45
// #endif
42
46
#ifdef DNNL_XBYAK_NO_EXCEPTION
47
+#if !defined(XBYAK_NO_EXCEPTION)
43
48
#define XBYAK_NO_EXCEPTION
49
#endif
50
51
#if defined(_MSC_VER) && !defined(__INTEL_COMPILER)
52
/* turn off `size_t to other-type implicit casting` warning
53
* currently we have a lot of jit-generated instructions that
0 commit comments