DPC++ Runtime
Runtime libraries for oneAPI DPC++
backend_impl.hpp
Go to the documentation of this file.
1 //==------------------ backend_impl.hpp - get impls backend ----------------==//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #pragma once
10 #include <cassert>
11 #include <sycl/backend_types.hpp>
12 
13 namespace sycl {
14 inline namespace _V1 {
15 namespace detail {
16 
17 template <class T> backend getImplBackend(const T &Impl) {
18  assert(!Impl->is_host() && "Cannot get the backend for host.");
19  return Impl->getContextImplPtr()->getBackend();
20 }
21 
22 } // namespace detail
23 } // namespace _V1
24 } // namespace sycl
backend getImplBackend(const T &Impl)
Definition: access.hpp:18