Skip to content

Commit

Permalink
Fix BH CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pjanevskiTT committed Sep 26, 2024
1 parent 101c9b0 commit 406f457
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/blackhole/test_silicon_driver_bh.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ TEST(SiliconDriverBH, UnalignedStaticTLB_RW) {
for(auto& core : device.get_virtual_soc_descriptors().at(i).workers) {
device.write_to_device(write_vec.data(), size, tt_cxy_pair(i, core), address, "");
device.wait_for_non_mmio_flush();
test_utils::read_data_from_device(device, readback_vec, tt_cxy_pair(i, core), address, size, "");
device.read_from_device(readback_vec.data(), tt_cxy_pair(i, core), address, size, "");
ASSERT_EQ(readback_vec, write_vec);
readback_vec = std::vector<uint8_t>(size, 0);
device.write_to_sysmem(write_vec.data(), size, 0, 0, 0);
Expand All @@ -274,7 +274,6 @@ TEST(SiliconDriverBH, UnalignedStaticTLB_RW) {
device.close_device();
}


TEST(SiliconDriverBH, StaticTLB_RW) {
auto get_static_tlb_index_callback = [] (tt_xy_pair target) {
return get_static_tlb_index(target);
Expand Down

0 comments on commit 406f457

Please sign in to comment.