CIRCT 23.0.0git
Loading...
Searching...
No Matches
Accelerator.h
Go to the documentation of this file.
1//===- Accelerator.h - Base ESI runtime API ---------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Basic ESI APIs. The 'Accelerator' class is the superclass for all accelerator
10// backends. It should (usually) provide enough functionality such that users do
11// not have to interact with the platform-specific backend implementation with
12// the exception of connecting to the accelerator.
13//
14// DO NOT EDIT!
15// This file is distributed as part of an ESI package. The source for this file
16// should always be modified within CIRCT.
17//
18//===----------------------------------------------------------------------===//
19
20// NOLINTNEXTLINE(llvm-header-guard)
21#ifndef ESI_ACCELERATOR_H
22#define ESI_ACCELERATOR_H
23
24#include "esi/Context.h"
25#include "esi/Design.h"
26#include "esi/Engines.h"
27#include "esi/Manifest.h"
28#include "esi/Ports.h"
29#include "esi/Services.h"
30
31#include <atomic>
32#include <functional>
33#include <future>
34#include <map>
35#include <memory>
36#include <mutex>
37#include <string>
38#include <thread>
39#include <tuple>
40#include <typeinfo>
41#include <utility>
42#include <vector>
43
44namespace esi {
45// Forward declarations.
46class AcceleratorServiceThread;
47
48//===----------------------------------------------------------------------===//
49// Metadata constants which may or may not be used by various backends. Provided
50// here since they are intended to be somewhat standard.
51//===----------------------------------------------------------------------===//
52
53constexpr uint32_t MetadataOffset = 8;
54
55constexpr uint64_t MagicNumberLo = 0xE5100E51;
56constexpr uint64_t MagicNumberHi = 0x207D98E5;
57constexpr uint64_t MagicNumber = MagicNumberLo | (MagicNumberHi << 32);
58constexpr uint64_t MagicNumberOffset = 0;
59
60constexpr uint32_t ExpectedVersionNumber = 0;
61constexpr uint64_t VersionNumberOffset = 8;
62
63constexpr uint32_t ManifestPtrOffset = 0x10;
64
65constexpr uint32_t CycleCountOffset = 0x20;
66constexpr uint32_t CoreFreqOffset = 0x28;
67
68/// Magic value which, when written to MMIO offset `ResetRequestOffset`,
69/// requests a design reset. Keep in sync with 'ResetMagicNumber' in the PyCDE
70/// BSP (python/esiaccel/bsp/common.py).
71constexpr uint64_t ResetMagicNumber = 0x00000E510000B007;
72/// Offset into the (global) MMIO space at which to request a design reset.
73constexpr uint32_t ResetRequestOffset = 0x38;
74
75//===----------------------------------------------------------------------===//
76// Accelerator design hierarchy root.
77//===----------------------------------------------------------------------===//
78
79/// Top level accelerator class. Maintains a shared pointer to the manifest,
80/// which owns objects used in the design hierarchy owned by this class. Since
81/// this class owns the entire design hierarchy, when it gets destroyed the
82/// entire design hierarchy gets destroyed so all of the instances, ports, etc.
83/// are no longer valid pointers.
84class Accelerator : public HWModule {
85public:
86 Accelerator() = delete;
87 Accelerator(const Accelerator &) = delete;
88 ~Accelerator() = default;
89 Accelerator(std::optional<ModuleInfo> info,
90 std::vector<std::unique_ptr<Instance>> children,
91 std::vector<services::Service *> services,
92 std::vector<std::unique_ptr<BundlePort>> &&ports)
93 : HWModule(info, std::move(children), services, std::move(ports)) {}
94};
95
96//===----------------------------------------------------------------------===//
97// Connection to the accelerator and its services.
98//===----------------------------------------------------------------------===//
99
100/// Abstract class representing a connection to an accelerator. Actual
101/// connections (e.g. to a co-simulation or actual device) are implemented by
102/// subclasses. No methods in here are thread safe.
104public:
106 virtual ~AcceleratorConnection();
107 Context &getCtxt() const { return ctxt; }
108 Logger &getLogger() const { return ctxt.getLogger(); }
109
110 /// Disconnect from the accelerator cleanly. Drains owned engines before the
111 /// accelerator is released. Backends _must_ call this from their destructor
112 /// while still fully constructed (their vtable/resources alive), since engine
113 /// teardown may reference accelerator-owned objects. Must be idempotent.
114 virtual void disconnect();
115
116 /// Request a reset of the accelerator design. Returns true if the reset was
117 /// successfully requested, false if it could not be performed for any reason
118 /// -- most commonly because the backend (BSP) does not support resets.
119 virtual bool reset();
120
121 /// Return a pointer to the accelerator 'service' thread (or threads). If the
122 /// thread(s) are not running, they will be started when this method is
123 /// called. `std::thread` is used. If users don't want the runtime to spin up
124 /// threads, don't call this method. `AcceleratorServiceThread` is owned by
125 /// AcceleratorConnection and governed by the lifetime of the this object.
127
129 /// Get a typed reference to a particular service type. Caller does *not* take
130 /// ownership of the returned pointer -- the Accelerator object owns it.
131 /// Pointer lifetime ends with the Accelerator lifetime.
132 template <typename ServiceClass>
133 ServiceClass *getService(AppIDPath id = {}, std::string implName = {},
134 ServiceImplDetails details = {},
135 HWClientDetails clients = {}) {
136 return dynamic_cast<ServiceClass *>(
137 getService(typeid(ServiceClass), id, implName, details, clients));
138 }
139 /// Calls `createService` and caches the result. Subclasses can override if
140 /// they want to use their own caching mechanism.
141 virtual Service *getService(Service::Type service, AppIDPath id = {},
142 std::string implName = {},
143 ServiceImplDetails details = {},
144 HWClientDetails clients = {});
145
146 /// Assume ownership of an accelerator object. Ties the lifetime of the
147 /// accelerator to this connection. Returns a raw pointer to the object.
148 Accelerator *takeOwnership(std::unique_ptr<Accelerator> accel);
149
150 /// Create a new engine for channel communication with the accelerator. The
151 /// default is to call the global `createEngine` to get an engine which has
152 /// registered itself. Individual accelerator connection backends can override
153 /// this to customize behavior.
154 virtual void createEngine(const std::string &engineTypeName, AppIDPath idPath,
155 const ServiceImplDetails &details,
156 const HWClientDetails &clients);
158 return clientEngines[id];
159 }
160
162 if (!ownedAccelerator)
163 throw std::runtime_error(
164 "AcceleratorConnection does not own an accelerator");
165 return *ownedAccelerator;
166 }
167
168protected:
169 /// If `createEngine` is overridden, this method should be called to register
170 /// the engine and all of the channels it services.
171 void registerEngine(AppIDPath idPath, std::unique_ptr<Engine> engine,
172 const HWClientDetails &clients);
173
174 /// Drop accelerator-owned objects before a derived backend destroys resources
175 /// that those objects may reference.
176 void clearOwnedObjects();
177
178 /// Called by `getServiceImpl` exclusively. It wraps the pointer returned by
179 /// this in a unique_ptr and caches it. Separate this from the
180 /// wrapping/caching since wrapping/caching is an implementation detail.
182 std::string implName,
183 const ServiceImplDetails &details,
184 const HWClientDetails &clients) = 0;
185
186 /// Collection of owned engines.
187 std::map<AppIDPath, std::unique_ptr<Engine>> ownedEngines;
188 /// Mapping of clients to their servicing engines.
189 std::map<AppIDPath, BundleEngineMap> clientEngines;
190
191private:
192 /// ESI accelerator context.
194
195 /// Cache services via a unique_ptr so they get free'd automatically when
196 /// Accelerator objects get deconstructed.
197 using ServiceCacheKey = std::tuple<std::string, AppIDPath>;
198 std::map<ServiceCacheKey, std::unique_ptr<Service>> serviceCache;
199
200 std::unique_ptr<AcceleratorServiceThread> serviceThread;
201
202 /// Accelerator object owned by this connection.
203 std::unique_ptr<Accelerator> ownedAccelerator;
204};
205
206namespace registry {
207
208namespace internal {
209
210/// Backends can register themselves to be connected via a connection string.
211using BackendCreate = std::function<std::unique_ptr<AcceleratorConnection>(
212 Context &, std::string)>;
213void registerBackend(const std::string &name, BackendCreate create);
214
215// Helper struct to
216template <typename TAccelerator>
218 RegisterAccelerator(const char *name) {
219 registerBackend(name, &TAccelerator::connect);
220 }
221};
222
223#define REGISTER_ACCELERATOR(Name, TAccelerator) \
224 static ::esi::registry::internal::RegisterAccelerator<TAccelerator> \
225 __register_accel____LINE__(Name)
226
227} // namespace internal
228} // namespace registry
229
230/// Background thread which services various requests. Currently, it listens on
231/// ports and calls callbacks for incoming messages on said ports.
232///
233/// All methods are virtual so that users may provide their own service thread
234/// implementation. Overriders can reuse the default implementation piecemeal by
235/// invoking the base-class methods -- typically overriding `poll()` (to change
236/// what a single iteration does) or `loop()` (to change how iterations are
237/// scheduled). Subclasses that need to run their own `loop()` from the outset
238/// should use the protected `DeferStart` constructor to prevent the base class
239/// from starting the thread, then call `start()` themselves.
241public:
244
245 /// When there's data on any of the listenPorts, call the callback. Callable
246 /// from any thread.
247 virtual void
248 addListener(std::initializer_list<ReadChannelPort *> listenPorts,
249 std::function<void(ReadChannelPort *, MessageData)> callback);
250
251 /// Poll this module.
252 virtual void addPoll(HWModule &module);
253
254 /// Add a task to be invoked on every service iteration. Callable from any
255 /// thread.
256 virtual void addTask(std::function<void(void)> task);
257
258 /// Instruct the service thread to stop running.
259 virtual void stop();
260
261protected:
262 /// Tag type used to construct the base class without starting the service
263 /// thread. Intended for subclasses that need to run their own loop from the
264 /// start.
265 struct DeferStart {};
267
268 /// Start the service thread. Called by the default constructor. Spawns a
269 /// std::thread which invokes `loop()` via virtual dispatch.
270 virtual void start();
271
272 /// The main service loop. Runs until `shutdown` is set to true. The default
273 /// implementation yields and then calls `poll()` on every iteration.
274 virtual void loop();
275
276 /// Perform a single iteration of servicing: drain any ready listener
277 /// futures, invoke their callbacks, and run all registered tasks.
278 /// Overriders can invoke this from a custom loop to reuse the default
279 /// servicing behavior.
280 virtual void poll();
281
282 /// Set to true to request the service loop to exit.
283 std::atomic<bool> shutdown{false};
284 /// The thread running `loop()`.
285 std::thread me;
286
287 /// Protects `listeners` and `taskList`.
288 std::mutex m;
289
290 /// Map of read ports to callbacks and their in-flight async reads.
291 std::map<ReadChannelPort *,
292 std::pair<std::function<void(ReadChannelPort *, MessageData)>,
293 std::future<MessageData>>>
295
296 /// Tasks which should be called on every loop iteration.
297 std::vector<std::function<void(void)>> taskList;
298};
299} // namespace esi
300
301#endif // ESI_ACCELERATOR_H
Abstract class representing a connection to an accelerator.
std::tuple< std::string, AppIDPath > ServiceCacheKey
Cache services via a unique_ptr so they get free'd automatically when Accelerator objects get deconst...
virtual Service * createService(Service::Type service, AppIDPath idPath, std::string implName, const ServiceImplDetails &details, const HWClientDetails &clients)=0
Called by getServiceImpl exclusively.
services::Service Service
ServiceClass * getService(AppIDPath id={}, std::string implName={}, ServiceImplDetails details={}, HWClientDetails clients={})
Get a typed reference to a particular service type.
Context & getCtxt() const
virtual bool reset()
Request a reset of the accelerator design.
void clearOwnedObjects()
Drop accelerator-owned objects before a derived backend destroys resources that those objects may ref...
std::map< AppIDPath, BundleEngineMap > clientEngines
Mapping of clients to their servicing engines.
Context & ctxt
ESI accelerator context.
void registerEngine(AppIDPath idPath, std::unique_ptr< Engine > engine, const HWClientDetails &clients)
If createEngine is overridden, this method should be called to register the engine and all of the cha...
std::map< ServiceCacheKey, std::unique_ptr< Service > > serviceCache
std::unique_ptr< AcceleratorServiceThread > serviceThread
std::unique_ptr< Accelerator > ownedAccelerator
Accelerator object owned by this connection.
virtual void disconnect()
Disconnect from the accelerator cleanly.
std::map< AppIDPath, std::unique_ptr< Engine > > ownedEngines
Collection of owned engines.
Accelerator & getAccelerator()
virtual void createEngine(const std::string &engineTypeName, AppIDPath idPath, const ServiceImplDetails &details, const HWClientDetails &clients)
Create a new engine for channel communication with the accelerator.
virtual const BundleEngineMap & getEngineMapFor(AppIDPath id)
Logger & getLogger() const
virtual AcceleratorServiceThread * getServiceThread()
Return a pointer to the accelerator 'service' thread (or threads).
Accelerator * takeOwnership(std::unique_ptr< Accelerator > accel)
Assume ownership of an accelerator object.
Background thread which services various requests.
virtual void stop()
Instruct the service thread to stop running.
virtual void poll()
Perform a single iteration of servicing: drain any ready listener futures, invoke their callbacks,...
virtual void addPoll(HWModule &module)
Poll this module.
virtual void start()
Start the service thread.
std::map< ReadChannelPort *, std::pair< std::function< void(ReadChannelPort *, MessageData)>, std::future< MessageData > > > listeners
Map of read ports to callbacks and their in-flight async reads.
virtual void addListener(std::initializer_list< ReadChannelPort * > listenPorts, std::function< void(ReadChannelPort *, MessageData)> callback)
When there's data on any of the listenPorts, call the callback.
std::mutex m
Protects listeners and taskList.
std::atomic< bool > shutdown
Set to true to request the service loop to exit.
std::thread me
The thread running loop().
virtual void addTask(std::function< void(void)> task)
Add a task to be invoked on every service iteration.
virtual void loop()
The main service loop.
std::vector< std::function< void(void)> > taskList
Tasks which should be called on every loop iteration.
Top level accelerator class.
Definition Accelerator.h:84
Accelerator(std::optional< ModuleInfo > info, std::vector< std::unique_ptr< Instance > > children, std::vector< services::Service * > services, std::vector< std::unique_ptr< BundlePort > > &&ports)
Definition Accelerator.h:89
~Accelerator()=default
Accelerator()=delete
Accelerator(const Accelerator &)=delete
Since engines can support multiple channels BUT not necessarily all of the channels in a bundle,...
Definition Engines.h:76
AcceleratorConnections, Accelerators, and Manifests must all share a context.
Definition Context.h:34
Logger & getLogger()
Definition Context.h:69
Represents either the top level or an instance of a hardware module.
Definition Design.h:47
const std::optional< ModuleInfo > info
Definition Design.h:101
const std::vector< std::unique_ptr< BundlePort > > ports
Definition Design.h:105
const std::vector< std::unique_ptr< Instance > > children
Definition Design.h:102
const std::vector< services::Service * > services
Definition Design.h:104
A concrete flat message backed by a single vector of bytes.
Definition Common.h:155
A ChannelPort which reads data from the accelerator.
Definition Ports.h:453
Parent class of all APIs modeled as 'services'.
Definition Services.h:59
const std::type_info & Type
Definition Services.h:61
void registerBackend(const std::string &name, BackendCreate create)
std::function< std::unique_ptr< AcceleratorConnection >(Context &, std::string)> BackendCreate
Backends can register themselves to be connected via a connection string.
Definition esi.py:1
constexpr uint32_t CoreFreqOffset
Definition Accelerator.h:66
constexpr uint64_t MagicNumber
Definition Accelerator.h:57
std::map< std::string, std::any > ServiceImplDetails
Definition Common.h:108
constexpr uint64_t MagicNumberHi
Definition Accelerator.h:56
constexpr uint64_t ResetMagicNumber
Magic value which, when written to MMIO offset ResetRequestOffset, requests a design reset.
Definition Accelerator.h:71
constexpr uint32_t ExpectedVersionNumber
Definition Accelerator.h:60
constexpr uint64_t MagicNumberOffset
Definition Accelerator.h:58
constexpr uint32_t MetadataOffset
Definition Accelerator.h:53
constexpr uint32_t CycleCountOffset
Definition Accelerator.h:65
constexpr uint32_t ManifestPtrOffset
Definition Accelerator.h:63
constexpr uint32_t ResetRequestOffset
Offset into the (global) MMIO space at which to request a design reset.
Definition Accelerator.h:73
constexpr uint64_t MagicNumberLo
Definition Accelerator.h:55
constexpr uint64_t VersionNumberOffset
Definition Accelerator.h:61
std::vector< HWClientDetail > HWClientDetails
Definition Common.h:107
Tag type used to construct the base class without starting the service thread.