aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Brian Patton <bjp@google.com>2018-01-10 13:06:33 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-10 13:10:32 -0800
commit3dc58f798660b98a0198b33edefb6f9f2aa7d827 (patch)
treeb1948c5c6096cf7fd160564a83559b247826868f
parentd2082810c4e6fdcd501fce7abc86e9be4c36cb3a (diff)
Attempt to fix #15951
MacOS build fails for missing include of <array> PiperOrigin-RevId: 181506335
-rw-r--r--tensorflow/compiler/xla/service/cpu/runtime_fft_impl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/compiler/xla/service/cpu/runtime_fft_impl.h b/tensorflow/compiler/xla/service/cpu/runtime_fft_impl.h
index c7c701ca97..984cb0616e 100644
--- a/tensorflow/compiler/xla/service/cpu/runtime_fft_impl.h
+++ b/tensorflow/compiler/xla/service/cpu/runtime_fft_impl.h
@@ -15,6 +15,8 @@ limitations under the License.
#ifndef TENSORFLOW_COMPILER_XLA_SERVICE_CPU_RUNTIME_FFT_IMPL_H_
#define TENSORFLOW_COMPILER_XLA_SERVICE_CPU_RUNTIME_FFT_IMPL_H_
+#include <array>
+
#include "third_party/eigen3/Eigen/Core"
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
#include "tensorflow/compiler/xla/xla_data.pb.h"