Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/GConvTest.cc')
-rw-r--r--test/GConvTest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/GConvTest.cc b/test/GConvTest.cc
index 8c1fb82..0074535 100644
--- a/test/GConvTest.cc
+++ b/test/GConvTest.cc
@@ -465,8 +465,8 @@ TEST_P(fbgemmGConvPackTest, PackUnpackTest) {
for (int i = 0; i < weight_len; ++i) {
EXPECT_EQ(Bint8.data()[i], unpack_buf.data()[i])
<< "Pack/Unpack results differ at index " << i
- << ", Reference: " << static_cast<int>(Bint8.data()[i])
- << ", Pack-Unpacked: " << static_cast<int>(unpack_buf.data()[i]);
+ << ", Reference: " << static_cast<int> (Bint8.data()[i])
+ << ", Pack-Unpacked: " << static_cast<int> (unpack_buf.data()[i]);
}
} // for each shape
}