Skip to content

Commit 65c3f3e

Browse files
kimishpatelfacebook-github-bot
authored andcommitted
Include <tuple>
Summary: Missing include results in compilation failure in gh executorch repo Reviewed By: larryliu0820 Differential Revision: D47799888 fbshipit-source-id: a406403613e84c5ac91f7dabfe7d62c28b5f43a0
1 parent 5213aee commit 65c3f3e

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

kernels/portable/cpu/op_argmax.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
#include <cmath>
10+
#include <tuple>
1011

1112
#include <executorch/kernels/portable/cpu/util/reduce_util.h>
1213
#include <executorch/runtime/kernel/kernel_includes.h>

kernels/portable/cpu/op_argmin.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
#include <cmath>
10+
#include <tuple>
1011

1112
#include <executorch/kernels/portable/cpu/util/reduce_util.h>
1213
#include <executorch/runtime/kernel/kernel_includes.h>

kernels/portable/cpu/op_max.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
#include <cmath>
10+
#include <tuple>
1011

1112
#include <executorch/kernels/portable/cpu/util/reduce_util.h>
1213
#include <executorch/runtime/kernel/kernel_includes.h>

kernels/portable/cpu/op_min.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88

99
#include <cmath>
10+
#include <tuple>
1011

1112
#include <executorch/kernels/portable/cpu/util/reduce_util.h>
1213
#include <executorch/runtime/kernel/kernel_includes.h>

kernels/portable/cpu/util/reduce_util.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include <executorch/runtime/core/exec_aten/exec_aten.h>
1212
#include <executorch/runtime/core/exec_aten/util/tensor_util.h>
1313
#include <cstring>
14+
#include <tuple>
1415

1516
namespace torch {
1617
namespace executor {

0 commit comments

Comments
 (0)