From 47b13a409ab6f030b3c193d09ee852662c89ed54 Mon Sep 17 00:00:00 2001 From: liaogang Date: Fri, 5 May 2017 13:30:19 +0800 Subject: [PATCH] clang format code --- paddle/math/tests/test_matrixCompare.cpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/paddle/math/tests/test_matrixCompare.cpp b/paddle/math/tests/test_matrixCompare.cpp index 05adec637..2bdcab4d8 100644 --- a/paddle/math/tests/test_matrixCompare.cpp +++ b/paddle/math/tests/test_matrixCompare.cpp @@ -236,16 +236,19 @@ TEST(Matrix, unary) { testMatrixTranspose(height, width); testMatrixRotate(height, width); } - #ifdef LAPACK_FOUND +#ifdef LAPACK_FOUND // inverse matrix testMatrixInverse(height); - #else +#else LOG(WARNING) << "Cannot run Matrix Inverse Unit Test.\n" << "Failed to find lapack library in current system.\n" - << "To address this issue, Please adopt one of the following approaches: \n" - << "1. Simply issue `sudo apt-get install liblapacke-dev` to avoid re-build source code. \n" - << "2. Install MKL/Openblas/ATLAS and re-build PaddlePaddle source code." - #endif + << "To address this issue, Please adopt one of the following " + "approaches: \n" + << "1. Simply issue `sudo apt-get install liblapacke-dev` to " + "avoid re-build source code. \n" + << "2. Install MKL/Openblas/ATLAS and re-build PaddlePaddle " + "source code." +#endif } } -- GitLab