Merge pull request #43889 from cfRod:onednn-aarch64
PiperOrigin-RevId: 336263931 Change-Id: Ib10f71df8976e418b48d929e26caa3efc8e02397
This commit is contained in:
commit
56ca08345f
6
.bazelrc
6
.bazelrc
@ -174,6 +174,12 @@ build:mkl_opensource_only --define=tensorflow_mkldnn_contraction_kernel=0
|
|||||||
build:mkl_opensource_only --define=build_with_mkl_opensource=true
|
build:mkl_opensource_only --define=build_with_mkl_opensource=true
|
||||||
build:mkl_opensource_only -c opt
|
build:mkl_opensource_only -c opt
|
||||||
|
|
||||||
|
# Config setting to build with oneDNN for Arm.
|
||||||
|
build:mkl_aarch64 --define=build_with_mkl_aarch64=true --define=enable_mkl=true
|
||||||
|
build:mkl_aarch64 --define=tensorflow_mkldnn_contraction_kernel=0
|
||||||
|
build:mkl_aarch64 --define=build_with_mkl_opensource=true
|
||||||
|
build:mkl_aarch64 -c opt
|
||||||
|
|
||||||
# This config refers to building with CUDA available. It does not necessarily
|
# This config refers to building with CUDA available. It does not necessarily
|
||||||
# mean that we build CUDA op kernels.
|
# mean that we build CUDA op kernels.
|
||||||
build:using_cuda --define=using_cuda=true
|
build:using_cuda --define=using_cuda=true
|
||||||
|
@ -1485,6 +1485,7 @@ def main():
|
|||||||
'adding "--config=<>" to your build command. See .bazelrc for more '
|
'adding "--config=<>" to your build command. See .bazelrc for more '
|
||||||
'details.')
|
'details.')
|
||||||
config_info_line('mkl', 'Build with MKL support.')
|
config_info_line('mkl', 'Build with MKL support.')
|
||||||
|
config_info_line('mkl_aarch64', 'Build with oneDNN support for Aarch64.')
|
||||||
config_info_line('monolithic', 'Config for mostly static monolithic build.')
|
config_info_line('monolithic', 'Config for mostly static monolithic build.')
|
||||||
config_info_line('ngraph', 'Build with Intel nGraph support.')
|
config_info_line('ngraph', 'Build with Intel nGraph support.')
|
||||||
config_info_line('numa', 'Build with NUMA support.')
|
config_info_line('numa', 'Build with NUMA support.')
|
||||||
|
8
third_party/mkl/BUILD
vendored
8
third_party/mkl/BUILD
vendored
@ -21,6 +21,14 @@ config_setting(
|
|||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
config_setting(
|
||||||
|
name = "build_with_mkl_aarch64",
|
||||||
|
define_values = {
|
||||||
|
"build_with_mkl_aarch64": "true",
|
||||||
|
},
|
||||||
|
visibility = ["//visibility:public"],
|
||||||
|
)
|
||||||
|
|
||||||
config_setting(
|
config_setting(
|
||||||
name = "enable_mkl",
|
name = "enable_mkl",
|
||||||
define_values = {
|
define_values = {
|
||||||
|
1
third_party/mkl/build_defs.bzl
vendored
1
third_party/mkl/build_defs.bzl
vendored
@ -91,6 +91,7 @@ def mkl_deps():
|
|||||||
"""
|
"""
|
||||||
return select({
|
return select({
|
||||||
"@org_tensorflow//third_party/mkl:build_with_mkl": ["@mkl_dnn_v1//:mkl_dnn"],
|
"@org_tensorflow//third_party/mkl:build_with_mkl": ["@mkl_dnn_v1//:mkl_dnn"],
|
||||||
|
"@org_tensorflow//third_party/mkl:build_with_mkl_aarch64": ["@mkl_dnn_v1//:mkl_dnn_aarch64"],
|
||||||
"//conditions:default": [],
|
"//conditions:default": [],
|
||||||
})
|
})
|
||||||
|
|
||||||
|
33
third_party/mkl_dnn/mkldnn_v1.BUILD
vendored
33
third_party/mkl_dnn/mkldnn_v1.BUILD
vendored
@ -135,3 +135,36 @@ cc_library(
|
|||||||
],
|
],
|
||||||
visibility = ["//visibility:public"],
|
visibility = ["//visibility:public"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
cc_library(
|
||||||
|
name = "mkl_dnn_aarch64",
|
||||||
|
srcs = glob([
|
||||||
|
"src/common/*.cpp",
|
||||||
|
"src/common/*.hpp",
|
||||||
|
"src/cpu/*.cpp",
|
||||||
|
"src/cpu/*.hpp",
|
||||||
|
"src/cpu/rnn/*.cpp",
|
||||||
|
"src/cpu/rnn/*.hpp",
|
||||||
|
"src/cpu/matmul/*.cpp",
|
||||||
|
"src/cpu/matmul/*.hpp",
|
||||||
|
"src/cpu/gemm/**/*",
|
||||||
|
]) + [
|
||||||
|
":dnnl_config_h",
|
||||||
|
":dnnl_version_h",
|
||||||
|
],
|
||||||
|
hdrs = glob(["include/*"]),
|
||||||
|
copts = [
|
||||||
|
"-fexceptions",
|
||||||
|
"-UUSE_MKL",
|
||||||
|
"-UUSE_CBLAS",
|
||||||
|
],
|
||||||
|
includes = [
|
||||||
|
"include",
|
||||||
|
"src",
|
||||||
|
"src/common",
|
||||||
|
"src/cpu",
|
||||||
|
"src/cpu/gemm",
|
||||||
|
],
|
||||||
|
linkopts = ["-lgomp"],
|
||||||
|
visibility = ["//visibility:public"],
|
||||||
|
)
|
||||||
|
1
third_party/ngraph/ngraph.BUILD
vendored
1
third_party/ngraph/ngraph.BUILD
vendored
@ -118,6 +118,7 @@ cc_library(
|
|||||||
":ngraph_headers",
|
":ngraph_headers",
|
||||||
"@eigen_archive//:eigen",
|
"@eigen_archive//:eigen",
|
||||||
"@mkl_dnn_v1//:mkl_dnn",
|
"@mkl_dnn_v1//:mkl_dnn",
|
||||||
|
"@mkl_dnn_v1//:mkl_dnn_aarch64",
|
||||||
"@nlohmann_json_lib",
|
"@nlohmann_json_lib",
|
||||||
"@tbb",
|
"@tbb",
|
||||||
],
|
],
|
||||||
|
Loading…
Reference in New Issue
Block a user