From bb5c69d6099974657c78a25425d6f1899ac806f9 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Tue, 19 Nov 2024 13:07:03 +0100 Subject: [PATCH 1/2] Add missing include to math_utils.hpp --- dpctl/tensor/libtensor/include/utils/math_utils.hpp | 1 + 1 file changed, 1 insertion(+) 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 { From ed867105e42cede7b0f048fde603cfac13c3477b Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Tue, 19 Nov 2024 13:18:36 +0100 Subject: [PATCH 2/2] Add changelog entry --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74b3569030..32c2c75bf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [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) + ## [0.18.1] - Oct. 11, 2024 ### Changed