alpaka
Abstraction Library for Parallel Kernel Acceleration
Loading...
Searching...
No Matches
BufFpgaSyclIntel.hpp
Go to the documentation of this file.
1/* Copyright 2024 Jan Stephan, Aurora Perego
2 * SPDX-License-Identifier: MPL-2.0
3 */
4
5#pragma once
6
7#include "alpaka/acc/Tag.hpp"
9
10#if defined(ALPAKA_ACC_SYCL_ENABLED) && defined(ALPAKA_SYCL_ONEAPI_FPGA)
11
12namespace alpaka
13{
14 template<typename TElem, typename TDim, typename TIdx>
15 using ConstBufFpgaSyclIntel = ConstBufGenericSycl<TElem, TDim, TIdx, TagFpgaSyclIntel>;
16
17 template<typename TElem, typename TDim, typename TIdx>
18 using BufFpgaSyclIntel = BufGenericSycl<TElem, TDim, TIdx, TagFpgaSyclIntel>;
19} // namespace alpaka
20
21#endif
The alpaka accelerator library.