vecmem 1.14.0
Loading...
Searching...
No Matches
run_on_device.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7#pragma once
8
9// Local include(s).
10#include "hip_error_handling.hpp"
11#include "select_device.hpp"
12
13// HIP include(s).
14#include <hip/hip_runtime_api.h>
15
16namespace vecmem::hip::details {
17
20
21public:
23 run_on_device(int device) : m_device(device) {}
24
26 template <typename EXECUTABLE>
28
29 // Switch to the device in a RAII mode.
30 select_device helper(m_device);
31
32 // Execute the code.
33 exe();
34 }
35
36private:
38 const int m_device;
39
40}; // class run_on_device
41
42} // namespace vecmem::hip::details
Helper functor used for running a piece of code on a given device.
Definition run_on_device.hpp:19
run_on_device(int device)
Constructor, with the device that code should run on.
Definition run_on_device.hpp:23
void operator()(EXECUTABLE exe)
Operator executing "something" on the specified device.
Definition run_on_device.hpp:27
Class with RAII mechanism for selecting a HIP device.
Definition select_device.hpp:25
Namespace for types that should not be used directly by clients.
Definition get_device.cpp:17
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35