Skip to content

Commit cd74a60

Browse files
committed
Fix more missing includes
1 parent c2ed9a7 commit cd74a60

File tree

9 files changed

+10
-0
lines changed

9 files changed

+10
-0
lines changed

dpctl/tensor/libtensor/include/kernels/elementwise_functions/bitwise_and.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "utils/type_utils.hpp"
3434

3535
#include "kernels/elementwise_functions/common.hpp"
36+
#include "kernels/elementwise_functions/common_inplace.hpp"
3637
#include <pybind11/pybind11.h>
3738

3839
namespace dpctl

dpctl/tensor/libtensor/include/kernels/elementwise_functions/bitwise_invert.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
#include "utils/type_utils.hpp"
3636
#include <pybind11/pybind11.h>
3737

38+
#include "kernels/elementwise_functions/common.hpp"
39+
3840
namespace dpctl
3941
{
4042
namespace tensor

dpctl/tensor/libtensor/include/kernels/elementwise_functions/bitwise_left_shift.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include "utils/type_utils.hpp"
3535

3636
#include "kernels/elementwise_functions/common.hpp"
37+
#include "kernels/elementwise_functions/common_inplace.hpp"
3738
#include <pybind11/pybind11.h>
3839

3940
namespace dpctl

dpctl/tensor/libtensor/include/kernels/elementwise_functions/bitwise_or.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "utils/type_utils.hpp"
3434

3535
#include "kernels/elementwise_functions/common.hpp"
36+
#include "kernels/elementwise_functions/common_inplace.hpp"
3637
#include <pybind11/pybind11.h>
3738

3839
namespace dpctl

dpctl/tensor/libtensor/include/kernels/elementwise_functions/bitwise_right_shift.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include "utils/type_utils.hpp"
3535

3636
#include "kernels/elementwise_functions/common.hpp"
37+
#include "kernels/elementwise_functions/common_inplace.hpp"
3738
#include <pybind11/pybind11.h>
3839

3940
namespace dpctl

dpctl/tensor/libtensor/include/kernels/elementwise_functions/bitwise_xor.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
#include "utils/type_utils.hpp"
3434

3535
#include "kernels/elementwise_functions/common.hpp"
36+
#include "kernels/elementwise_functions/common_inplace.hpp"
3637
#include <pybind11/pybind11.h>
3738

3839
namespace dpctl

dpctl/tensor/libtensor/include/kernels/elementwise_functions/remainder.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#include "utils/type_utils.hpp"
3636

3737
#include "kernels/elementwise_functions/common.hpp"
38+
#include "kernels/elementwise_functions/common_inplace.hpp"
3839
#include <pybind11/pybind11.h>
3940

4041
namespace dpctl

dpctl/tensor/libtensor/include/kernels/elementwise_functions/subtract.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include "utils/type_utils.hpp"
3535

3636
#include "kernels/elementwise_functions/common.hpp"
37+
#include "kernels/elementwise_functions/common_inplace.hpp"
3738
#include <pybind11/pybind11.h>
3839

3940
namespace dpctl

dpctl/tensor/libtensor/include/kernels/elementwise_functions/true_divide.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
#include "utils/type_utils.hpp"
3535

3636
#include "kernels/elementwise_functions/common.hpp"
37+
#include "kernels/elementwise_functions/common_inplace.hpp"
3738
#include <pybind11/pybind11.h>
3839

3940
namespace dpctl

0 commit comments

Comments
 (0)