alpaka
Abstraction Library for Parallel Kernel Acceleration
Loading...
Searching...
No Matches
NoOp.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 cpu
10 {
11 struct NoOp
12 {
13 constexpr void operator()() const
14 {
15 }
16 };
17 } // namespace cpu
18} // namespace alpaka::onAcc
functionality which is usable on the accelerator compute device from within a kernel.
Definition executor.hpp:38
constexpr void operator()() const
Definition NoOp.hpp:13