1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#ifndef HeterogeneousCore_AlpakaCore_interface_QueueCache_h
#define HeterogeneousCore_AlpakaCore_interface_QueueCache_h
#include <memory>
#include <vector>
#include <alpaka/alpaka.hpp>
#include "FWCore/Utilities/interface/ReusableObjectHolder.h"
#include "FWCore/Utilities/interface/thread_safety_macros.h"
#include "HeterogeneousCore/AlpakaInterface/interface/config.h"
#include "HeterogeneousCore/AlpakaInterface/interface/devices.h"
#include "HeterogeneousCore/AlpakaInterface/interface/AlpakaServiceFwd.h"
namespace cms::alpakatools {
template <typename Queue>
class QueueCache {
#ifdef ALPAKA_ACC_GPU_CUDA_ENABLED
friend class alpaka_cuda_async::AlpakaService;
#endif
#ifdef ALPAKA_ACC_GPU_HIP_ENABLED
friend class alpaka_rocm_async::AlpakaService;
#endif
#ifdef ALPAKA_ACC_CPU_B_SEQ_T_SEQ_ENABLED
friend class alpaka_serial_sync::AlpakaService;
#endif
#ifdef ALPAKA_ACC_CPU_B_TBB_T_SEQ_ENABLED
friend class alpaka_tbb_async::AlpakaService;
#endif
using Device = alpaka::Dev<Queue>;
using Platform = alpaka::Platform<Device>;
public:
// QueueCache should be constructed by the first call to
// getQueueCache() only if we have any devices present
QueueCache() : cache_(devices<Platform>().size()) {}
// Gets a (cached) queue for the current device. The queue
// will be returned to the cache by the shared_ptr destructor.
// This function is thread safe
std::shared_ptr<Queue> get(Device const& dev) {
return cache_[alpaka::getNativeHandle(dev)].makeOrGet([dev]() { return std::make_unique<Queue>(dev); });
}
private:
// not thread safe, intended to be called only from AlpakaService
void clear() {
// Reset the contents of the caches, but leave an
// edm::ReusableObjectHolder alive for each device. This is needed
// mostly for the unit tests, where the function-static
// QueueCache lives through multiple tests (and go through
// multiple shutdowns of the framework).
cache_.clear();
cache_.resize(devices<Platform>().size());
}
std::vector<edm::ReusableObjectHolder<Queue>> cache_;
};
// Gets the global instance of a QueueCache
// This function is thread safe
template <typename Queue>
QueueCache<Queue>& getQueueCache() {
// the public interface is thread safe
CMS_THREAD_SAFE static QueueCache<Queue> cache;
return cache;
}
} // namespace cms::alpakatools
#endif // HeterogeneousCore_AlpakaCore_interface_QueueCache_h
|