Merge pull request #42073 from Intel-tensorflow:ltokas-DNNL-1.5.1

PiperOrigin-RevId: 326637753
Change-Id: I849e9640953326b09845e217cfe201c4eecbad5f
This commit is contained in:
TensorFlower Gardener 2020-08-14 05:32:18 -07:00
commit faa1e98551
2 changed files with 6 additions and 6 deletions

View File

@ -211,11 +211,11 @@ def tf_repositories(path_prefix = "", tf_repo_name = ""):
tf_http_archive(
name = "mkl_dnn_v1",
build_file = clean_dep("//third_party/mkl_dnn:mkldnn_v1.BUILD"),
sha256 = "54737bcb4dc1961d32ee75da3ecc529fa48198f8b2ca863a079e19a9c4adb70f",
strip_prefix = "oneDNN-1.4",
sha256 = "aef4d2a726f76f5b98902491a1a4ac69954039aa8e5a1d67ef6ce58ed00e23a6",
strip_prefix = "oneDNN-1.5.1",
urls = [
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/oneapi-src/oneDNN/archive/v1.4.tar.gz",
"https://github.com/oneapi-src/oneDNN/archive/v1.4.tar.gz",
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/oneapi-src/oneDNN/archive/v1.5.1.tar.gz",
"https://github.com/oneapi-src/oneDNN/archive/v1.5.1.tar.gz",
],
)

View File

@ -59,8 +59,8 @@ template_rule(
out = "include/dnnl_version.h",
substitutions = {
"@DNNL_VERSION_MAJOR@": "1",
"@DNNL_VERSION_MINOR@": "4",
"@DNNL_VERSION_PATCH@": "0",
"@DNNL_VERSION_MINOR@": "5",
"@DNNL_VERSION_PATCH@": "1",
"@DNNL_VERSION_HASH@": "N/A",
},
)