Skip to content

Commit

Permalink
Fix bug in Edge sw_emu flow (#8044)
Browse files Browse the repository at this point in the history
Signed-off-by: rbramand <[email protected]>
Co-authored-by: rbramand <[email protected]>
  • Loading branch information
rbramand-xilinx and rbramand authored Apr 2, 2024
1 parent 72f7994 commit a1a7126
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ std::pair<device::id_type, device::id_type>
system::
get_total_devices(bool is_user) const
{
return {0,0};
device::id_type num = xclProbe();
return std::make_pair(num, num);
}

std::shared_ptr<xrt_core::device>
Expand Down

0 comments on commit a1a7126

Please sign in to comment.