We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1010592 commit cc6142cCopy full SHA for cc6142c
offload/plugins-nextgen/host/src/rtl.cpp
@@ -147,6 +147,12 @@ struct GenELF64DeviceTy : public GenericDeviceTy {
147
/// Initialize the device, which is a no-op
148
Error initImpl(GenericPluginTy &Plugin) override { return Plugin::success(); }
149
150
+ /// Unload the binary image
151
+ ///
152
+ /// TODO: This currently does nothing, and should be implemented as part of
153
+ /// broader memory handling logic for this plugin
154
+ Error unloadBinaryImpl(DeviceImageTy *) override { return Plugin::success(); }
155
+
156
/// Deinitialize the device, which is a no-op
157
Error deinitImpl() override { return Plugin::success(); }
158
0 commit comments