Skip to content

Commit

Permalink
lint complain about empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
chenfucn committed Oct 27, 2023
1 parent f1b801a commit 93af026
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions onnxruntime/test/mlas/unittest/test_blockq4.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ class MlasBlockwiseQdqTest : public MlasTestBase {
float* o_scales = OutputScales.GetBuffer(meta_rows * meta_cols);
uint8_t* o_zp = symmetric ? nullptr : OutputOffsets.GetBuffer(((meta_rows + 1) / 2) * meta_cols, true);


MlasQuantizeBlockwise(o_elements, o_scales, o_zp, transposed, block_size, columnwise, rows, columns, columns, threadpool_ptr);

for (int c = 0; c < columns; c++) {
Expand All @@ -119,7 +118,7 @@ class MlasBlockwiseQdqTest : public MlasTestBase {
<< "] block: " << block_size << ", symmetric: " << symmetric << ", columnwise: " << columnwise;
}
}
}
}

for (int c = 0; c < meta_cols; c++) {
for (int r = 0; r < meta_rows; r++) {
Expand All @@ -144,7 +143,6 @@ class MlasBlockwiseQdqTest : public MlasTestBase {
}
}
}

}

public:
Expand Down

0 comments on commit 93af026

Please sign in to comment.