diff --git a/CHANGELOG.md b/CHANGELOG.md index cb45db859d..6ba0d90eb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.18.2] - Nov. XX, 2024 +### Maintenance + +* Add missing include of SYCL header to "math_utils.hpp" [gh-1899](https://github.com/IntelPython/dpctl/pull/1899) + ### Fixed + * Fix for `tensor.result_type` when all inputs are Python built-in scalars [gh-1904](https://github.com/IntelPython/dpctl/pull/1904) + ## [0.18.1] - Oct. 11, 2024 ### Changed diff --git a/dpctl/tensor/libtensor/include/utils/math_utils.hpp b/dpctl/tensor/libtensor/include/utils/math_utils.hpp index 3b44954abd..7a70249841 100644 --- a/dpctl/tensor/libtensor/include/utils/math_utils.hpp +++ b/dpctl/tensor/libtensor/include/utils/math_utils.hpp @@ -25,6 +25,7 @@ #pragma once #include #include +#include namespace dpctl {