Skip to content

Commit 6661f7b

Browse files
committed
Upgrade oneDNN to v3.9
Fix CI failures
1 parent 72a6252 commit 6661f7b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

third_party/mkl-dnn.BUILD

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ _DNNL_RUNTIME_OMP = {
1515
"#cmakedefine DNNL_ENABLE_STACK_CHECKER": "#undef DNNL_ENABLE_STACK_CHECKER",
1616
"#cmakedefine DNNL_EXPERIMENTAL_UKERNEL": "/* undef DNNL_EXPERIMENTAL_UKERNEL */",
1717
"#cmakedefine DNNL_EXPERIMENTAL": "#undef DNNL_EXPERIMENTAL",
18-
"#cmakedefine DNNL_EXPERIMENTAL_SPARSE": "#undef DNNL_EXPERIMENTAL_SPARSE",
1918
"#cmakedefine ONEDNN_BUILD_GRAPH": "#undef ONEDNN_BUILD_GRAPH",
2019
"#cmakedefine DNNL_EXPERIMENTAL_PROFILING": "#undef DNNL_EXPERIMENTAL_PROFILING",
20+
"#cmakedefine DNNL_EXPERIMENTAL_LOGGING": "#undef DNNL_EXPERIMENTAL_LOGGING",
21+
"#cmakedefine DNNL_EXPERIMENTAL_SYCL_KERNEL_COMPILER": "#undef DNNL_EXPERIMENTAL_SYCL_KERNEL_COMPILER",
2122
"#cmakedefine DNNL_DISABLE_GPU_REF_KERNELS": "#undef DNNL_DISABLE_GPU_REF_KERNELS",
2223
"#cmakedefine01 BUILD_TRAINING": "#define BUILD_TRAINING 1",
2324
"#cmakedefine01 BUILD_INFERENCE": "#define BUILD_INFERENCE 0",
@@ -49,8 +50,6 @@ _DNNL_RUNTIME_OMP = {
4950
"#cmakedefine01 BUILD_AVX512": "#define BUILD_AVX512 0",
5051
"#cmakedefine01 BUILD_AMX": "#define BUILD_AMX 0",
5152
"#cmakedefine01 BUILD_PRIMITIVE_GPU_ISA_ALL": "#define BUILD_PRIMITIVE_GPU_ISA_ALL 1",
52-
"#cmakedefine01 BUILD_GEN9": "#define BUILD_GEN9 0",
53-
"#cmakedefine01 BUILD_GEN11": "#define BUILD_GEN11 0",
5453
"#cmakedefine01 BUILD_XELP": "#define BUILD_XELP 0",
5554
"#cmakedefine01 BUILD_XEHPG": "#define BUILD_XEHPG 0",
5655
"#cmakedefine01 BUILD_XEHPC": "#define BUILD_XEHPC 0",
@@ -70,8 +69,8 @@ template_rule(
7069
out = "include/oneapi/dnnl/dnnl_version.h",
7170
substitutions = {
7271
"@DNNL_VERSION_MAJOR@": "3",
73-
"@DNNL_VERSION_MINOR@": "7",
74-
"@DNNL_VERSION_PATCH@": "1",
72+
"@DNNL_VERSION_MINOR@": "9",
73+
"@DNNL_VERSION_PATCH@": "0",
7574
},
7675
)
7776

@@ -86,7 +85,7 @@ template_rule(
8685
name = "include_dnnl_version_hash",
8786
src = "include/oneapi/dnnl/dnnl_version_hash.h.in",
8887
out = "include/oneapi/dnnl/dnnl_version_hash.h",
89-
substitutions = {"@DNNL_VERSION_HASH@": "8d263e693366ef8db40acc569cc7d8edf644556d",}
88+
substitutions = {"@DNNL_VERSION_HASH@": "5545f4170185277820039ccc7a540bc802b5f5d9",}
9089
)
9190

9291
cc_library(
@@ -111,6 +110,7 @@ cc_library(
111110
"src/common/*.hpp",
112111
"src/common/**/**/*.h",
113112
"src/common/ittnotify/jitprofiling.h",
113+
"third_party/**/*.h",
114114
], exclude=[
115115
"src/cpu/aarch64/**/*.hpp",
116116
"src/cpu/aarch64/**/*.h",
@@ -141,7 +141,7 @@ cc_library(
141141
"src/",
142142
"src/common/",
143143
"src/cpu/",
144-
"src/cpu/x64/xbyak/",
144+
"third_party/",
145145
],
146146
visibility = ["//visibility:public"],
147147
linkopts = [

0 commit comments

Comments
 (0)