Skip to content

Commit

Permalink
Fix in ML Timeline, AIE PC plugin for Linux Client (#8546)
Browse files Browse the repository at this point in the history
  • Loading branch information
IshitaGhosh authored Oct 21, 2024
1 parent 76bea33 commit be2f6cc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ namespace xdp {
{
}

AIEPCClientDevImpl::~AIEPCClientDevImpl()
{}

void AIEPCClientDevImpl::updateDevice(void* hwCtxImpl)
{
(void)hwCtxImpl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace xdp {
public :
AIEPCClientDevImpl(VPDatabase* dB);

~AIEPCClientDevImpl() = default;
~AIEPCClientDevImpl();

virtual void updateDevice(void* hwCtxImpl);
virtual void finishflushDevice(void* hwCtxImpl);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,12 @@ namespace xdp {
"Created ML Timeline Plugin for Client Device.");
}

MLTimelineClientDevImpl::~MLTimelineClientDevImpl()
{
xrt_core::message::send(xrt_core::message::severity_level::debug, "XRT",
"In destructor for ML Timeline Plugin for Client Device.");
}

void MLTimelineClientDevImpl::updateDevice(void* hwCtxImpl)
{
xrt_core::message::send(xrt_core::message::severity_level::debug, "XRT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ namespace xdp {
public :
MLTimelineClientDevImpl(VPDatabase* dB);

~MLTimelineClientDevImpl() = default;
~MLTimelineClientDevImpl();

virtual void updateDevice(void* hwCtxImpl);
virtual void finishflushDevice(void* hwCtxImpl, uint64_t implId = 0);
Expand Down

0 comments on commit be2f6cc

Please sign in to comment.