diff --git a/dpctl/tensor/libtensor/include/kernels/elementwise_functions/round.hpp b/dpctl/tensor/libtensor/include/kernels/elementwise_functions/round.hpp index cdc16180f8..f129799ff8 100644 --- a/dpctl/tensor/libtensor/include/kernels/elementwise_functions/round.hpp +++ b/dpctl/tensor/libtensor/include/kernels/elementwise_functions/round.hpp @@ -81,7 +81,7 @@ template struct RoundFunctor private: template T round_func(const T &input) const { - return std::rint(input); + return sycl::rint(input); } };