Skip to content

Commit

Permalink
Added missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
konradkusiak97 committed Aug 7, 2024
1 parent fc3d4e2 commit eaec8e9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/lapack/backends/rocsolver/rocsolver_scope_handle.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@
#include "rocsolver_helper.hpp"
#include "rocsolver_handle.hpp"

// After Plugin Interface removal in DPC++ ur.hpp is the new include
#if __has_include(<sycl/detail/ur.hpp>)
#include <sycl/detail/ur.hpp>
#ifndef _PI_INTERFACE_REMOVED_
#define _PI_INTERFACE_REMOVED_
#endif
#elif __has_include(<sycl/detail/pi.hpp>)
#include <sycl/detail/pi.hpp>
#else
#include <CL/sycl/detail/pi.hpp>
#endif

namespace oneapi {
namespace mkl {
namespace lapack {
Expand Down

0 comments on commit eaec8e9

Please sign in to comment.