From 93af0262d9d448e361bd4d6589db66505fa6adef Mon Sep 17 00:00:00 2001 From: Chen Fu <1316708+chenfucn@users.noreply.github.com> Date: Fri, 27 Oct 2023 16:00:49 -0700 Subject: [PATCH] lint complain about empty lines --- onnxruntime/test/mlas/unittest/test_blockq4.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/onnxruntime/test/mlas/unittest/test_blockq4.cpp b/onnxruntime/test/mlas/unittest/test_blockq4.cpp index fdfc795e5ff60..6f06e0f2eead8 100644 --- a/onnxruntime/test/mlas/unittest/test_blockq4.cpp +++ b/onnxruntime/test/mlas/unittest/test_blockq4.cpp @@ -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++) { @@ -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++) { @@ -144,7 +143,6 @@ class MlasBlockwiseQdqTest : public MlasTestBase { } } } - } public: