Skip to content

Commit f85f07a

Browse files
committed
remove unused include
1 parent 220cf9a commit f85f07a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

dpnp/backend/kernels/elementwise_functions/bitwise_count.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727

2828
#include <sycl/sycl.hpp>
2929

30-
#include "dpctl4pybind11.hpp"
31-
3230
// dpctl tensor headers
3331
#include "utils/type_utils.hpp"
3432

@@ -75,7 +73,7 @@ struct BitwiseCountFunctor
7573
}
7674
}
7775
else {
78-
auto const &res_vec = sycl::popcount(x);
76+
auto const &res_vec = sycl::popcount(sycl::abs(x));
7977

8078
using deducedT = typename std::remove_cv_t<
8179
std::remove_reference_t<decltype(res_vec)>>::element_type;

0 commit comments

Comments
 (0)