vecmem 1.14.0
Loading...
Searching...
No Matches
get_device_name.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2025 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8#pragma once
9
10// System include(s).
11#include <string>
12
13namespace vecmem::hip::details {
14
23std::string get_device_name(int device);
24
25} // namespace vecmem::hip::details
Namespace for types that should not be used directly by clients.
Definition get_device.cpp:17
std::string get_device_name(int device)
Get a "fully qualified" name for a given HIP device.
Definition get_device_name.cpp:20