Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit

Permalink
Use cl::sycl::abs in device code
Browse files Browse the repository at this point in the history
  • Loading branch information
pgorlani committed Apr 11, 2024
1 parent 11e8b0b commit e3ec870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operations/blas1_trees.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ PORTBLAS_INLINE bool TupleOp<rhs_t>::valid_thread(
template <typename rhs_t>
PORTBLAS_INLINE typename TupleOp<rhs_t>::value_t TupleOp<rhs_t>::eval(
typename TupleOp<rhs_t>::index_t i) {
return TupleOp<rhs_t>::value_t(i, std::abs(rhs_.eval(i)));
return TupleOp<rhs_t>::value_t(i, cl::sycl::abs(rhs_.eval(i)));
}

template <typename rhs_t>
Expand Down

0 comments on commit e3ec870

Please sign in to comment.