alpaka
Abstraction Library for Parallel Kernel Acceleration
ICpuQueue.hpp
Go to the documentation of this file.
1 /* Copyright 2022 Axel Huebl, Benjamin Worpitz, Matthias Werner, Bernhard Manfred Gruber
2  * SPDX-License-Identifier: MPL-2.0
3  */
4 
5 #pragma once
6 
7 #include "alpaka/dev/DevCpu.hpp"
9 
10 namespace alpaka::cpu
11 {
12  //! The CPU queue interface
13  using ICpuQueue = IGenericThreadsQueue<DevCpu>;
14 } // namespace alpaka::cpu
IGenericThreadsQueue< DevCpu > ICpuQueue
The CPU queue interface.
Definition: DevCpu.hpp:35