Commit 5b9dd8e5 authored by Ramesh Errabolu's avatar Ramesh Errabolu
Browse files

Access between dev<i> and dev-<j> is not symmetric

parent a1a217aa
...@@ -169,12 +169,6 @@ void RocmBandwidthTest::PrintAccessMatrix() const { ...@@ -169,12 +169,6 @@ void RocmBandwidthTest::PrintAccessMatrix() const {
for (uint32_t dst_idx = 0; dst_idx < agent_index_; dst_idx++) { for (uint32_t dst_idx = 0; dst_idx < agent_index_; dst_idx++) {
uint32_t path_exists = access_matrix_[(src_idx * agent_index_) + dst_idx]; uint32_t path_exists = access_matrix_[(src_idx * agent_index_) + dst_idx];
std::cout.width(format); std::cout.width(format);
/* Remove this block - as it is not always correct
* i.e. access path can be asymmetric
if (path_exists == 2) {
path_exists = 1;
}
*/
std::cout << path_exists; std::cout << path_exists;
} }
std::cout << std::endl; std::cout << std::endl;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment