diff --git a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/algorithms/equal.hpp b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/algorithms/equal.hpp index 82b044831f9..7f52ee528fc 100644 --- a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/algorithms/equal.hpp +++ b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/algorithms/equal.hpp @@ -9,7 +9,7 @@ #include "../init.hpp" #include "../util.hpp" #include "../views/views.hpp" -#include "../zip_view.hpp" +#include "../views/zip.hpp" #include "fill.hpp" #include "reduce.hpp" diff --git a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/algorithms/for_each.hpp b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/algorithms/for_each.hpp index 6b17fa7fd4e..fd345f8b08a 100644 --- a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/algorithms/for_each.hpp +++ b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/algorithms/for_each.hpp @@ -21,7 +21,7 @@ #include "../detail.hpp" #include "../init.hpp" #include "../util.hpp" -#include "../zip_view.hpp" +#include "../views/zip.hpp" #include "execution_policy.hpp" namespace oneapi::dpl::experimental::dr::sp diff --git a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/range_adaptors.hpp b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/range_adaptors.hpp index b84272c725f..65fbd88bd69 100644 --- a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/range_adaptors.hpp +++ b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/range_adaptors.hpp @@ -17,7 +17,7 @@ #define _ONEDPL_DR_SP_RANGE_ADAPTORS_HPP #include "views/standard_views.hpp" -#include "zip_view.hpp" +#include "views/zip.hpp" namespace oneapi::dpl::experimental::dr::sp { diff --git a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/enumerate.hpp b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/enumerate.hpp index 4771ee435ee..80d468dd39a 100644 --- a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/enumerate.hpp +++ b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/enumerate.hpp @@ -16,7 +16,7 @@ #ifndef _ONEDPL_DR_SP_VIEWS_ENUMERATE_HPP #define _ONEDPL_DR_SP_VIEWS_ENUMERATE_HPP -#include "../zip_view.hpp" +#include "../views/zip.hpp" namespace oneapi::dpl::experimental::dr::sp { diff --git a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/standard_views.hpp b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/standard_views.hpp index 39a0f0fdda6..bf117cc092e 100644 --- a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/standard_views.hpp +++ b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/standard_views.hpp @@ -19,7 +19,7 @@ #include "../../detail/segments_tools.hpp" #include "../../views/transform.hpp" #include "../distributed_span.hpp" -#include "../zip_view.hpp" +#include "../views/zip.hpp" #include "enumerate.hpp" #endif /* _ONEDPL_DR_SP_VIEWS_STANDARD_VIEWS_HPP */ diff --git a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/zip_view.hpp b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/zip.hpp similarity index 98% rename from include/oneapi/dpl/internal/distributed_ranges_impl/sp/zip_view.hpp rename to include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/zip.hpp index 0916fcc340d..349eae98bee 100644 --- a/include/oneapi/dpl/internal/distributed_ranges_impl/sp/zip_view.hpp +++ b/include/oneapi/dpl/internal/distributed_ranges_impl/sp/views/zip.hpp @@ -18,11 +18,11 @@ #include "oneapi/dpl/iterator" -#include "../detail/iterator_adaptor.hpp" -#include "../detail/owning_view.hpp" -#include "../detail/std_ranges_shim.hpp" -#include "../detail/view_detectors.hpp" -#include "remote_span.hpp" +#include "../../detail/iterator_adaptor.hpp" +#include "../../detail/owning_view.hpp" +#include "../../detail/std_ranges_shim.hpp" +#include "../../detail/view_detectors.hpp" +#include "../remote_span.hpp" namespace oneapi::dpl::experimental::dr::sp {