alpaka
Abstraction Library for Parallel Kernel Acceleration
Loading...
Searching...
No Matches
tag.hpp
Go to the documentation of this file.
1/* Copyright 2024 René Widera
2 * SPDX-License-Identifier: MPL-2.0
3 */
4
5#pragma once
6
7namespace alpaka::onAcc
8{
9 namespace internal
10 {
11 struct StlAtomic
12 {
13 };
14
15 constexpr auto stlAtomic = StlAtomic{};
16 } // namespace internal
17} // namespace alpaka::onAcc
18
19namespace alpaka::internal
20{
21 struct StlIntrinsic
22 {
23 };
24
25 constexpr auto stlIntrinsic = StlIntrinsic{};
26} // namespace alpaka::internal
functionality which is usable on the accelerator compute device from within a kernel.
Definition executor.hpp:38