Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[aarch64] make TensorFlow build for aarch64 linux natively with bazel #28392

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions tensorflow/core/kernels/BUILD
Expand Up @@ -747,6 +747,7 @@ cc_library(
"//tensorflow:android": [],
"//tensorflow:arm": [],
"//tensorflow:ios": [],
"//tensorflow:linux_aarch64": [],
"//tensorflow:linux_ppc64le": [],
"//conditions:default": [
"TENSORFLOW_USE_CUSTOM_CONTRACTION_KERNEL",
Expand All @@ -759,6 +760,7 @@ cc_library(
"//tensorflow:android": [],
"//tensorflow:arm": [],
"//tensorflow:ios": [],
"//tensorflow:linux_aarch64": [],
"//tensorflow:linux_ppc64le": [],
"//conditions:default": ["@mkl_dnn//:mkldnn_single_threaded"],
}),
Expand Down
1 change: 1 addition & 0 deletions tensorflow/lite/experimental/ruy/detect_dotprod.cc
Expand Up @@ -19,6 +19,7 @@ limitations under the License.
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <mutex>

Expand Down
1 change: 1 addition & 0 deletions tensorflow/lite/experimental/ruy/kernel.h
Expand Up @@ -16,6 +16,7 @@ limitations under the License.
#ifndef TENSORFLOW_LITE_EXPERIMENTAL_RUY_KERNEL_H_
#define TENSORFLOW_LITE_EXPERIMENTAL_RUY_KERNEL_H_

#include <cstddef>
#include <cstdint>

#include "fixedpoint/fixedpoint.h"
Expand Down