Skip to content

Commit

Permalink
remove any mention of clock frequencies (#8491)
Browse files Browse the repository at this point in the history
Signed-off-by: AShivangi <[email protected]>
  • Loading branch information
AShivangi authored Oct 4, 2024
1 parent 7906aa4 commit b7c2c09
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/runtime_src/core/common/info_platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,6 @@ add_platform_info(const xrt_core::device* device, ptree_type& pt_platform_array)
ptree_type pt_platforms;

add_static_region_info(device, pt_platform);
add_clock_info(device, pt_platform);
add_status_info(device, pt_platform);

const auto device_class = xrt_core::device_query_default<xrt_core::query::device_class>(device, xrt_core::query::device_class::type::alveo);
Expand All @@ -434,6 +433,7 @@ add_platform_info(const xrt_core::device* device, ptree_type& pt_platform_array)
else
add_controller_info(device, pt_platform);
add_mac_info(device, pt_platform);
add_clock_info(device, pt_platform);
add_config_info(device, pt_platform);
break;
}
Expand Down
1 change: 0 additions & 1 deletion src/runtime_src/core/tools/common/tests/TestGemm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ TestGemm::run(std::shared_ptr<xrt_core::device> dev)
if(XBU::getVerbose()) {
logger(ptree, "Details", boost::str(boost::format("Total Duration: %.1f ns") % (ipu_hclck_period * (total_cycle_count/num_of_cores))));
logger(ptree, "Details", boost::str(boost::format("Average cycle count: %.1f") % (total_cycle_count/num_of_cores)));
logger(ptree, "Details", boost::str(boost::format("NPU H-Clock: %f MHz") % ipu_hclock));
}

//check if the value is in range
Expand Down

0 comments on commit b7c2c09

Please sign in to comment.