ATLAS Offline Software
Loading...
Searching...
No Matches
DeviceInfo.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef ATHCUDASERVICES_DEVICEINFO_H
6#define ATHCUDASERVICES_DEVICEINFO_H
7
8#include "GaudiKernel/IService.h"
9
10#include <vector>
11
12namespace AthCUDA {
13
14 struct DeviceInfo {
15 int id{};
16 std::string name;
17 int smMajor{};
18 int smMinor{};
19 };
20
21} // namespace AthCUDA
22
23#endif // ATHCUDASERVICES_DEVICEINFO_H
Definition Info.h:14
std::string name
Definition DeviceInfo.h:16