From 544254fe4fb6eb2fbc1b69374b8ad2bbc709fa97 Mon Sep 17 00:00:00 2001 From: Yi Wang Date: Sat, 7 Apr 2018 11:58:37 -0700 Subject: [PATCH] Correct fluid/memory (#9716) --- paddle/fluid/memory/memory_test.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/paddle/fluid/memory/memory_test.cc b/paddle/fluid/memory/memory_test.cc index 03829702a0c..9fbbe62559b 100644 --- a/paddle/fluid/memory/memory_test.cc +++ b/paddle/fluid/memory/memory_test.cc @@ -13,16 +13,16 @@ See the License for the specific language governing permissions and limitations under the License. */ #include "paddle/fluid/memory/memory.h" + +#include + +#include "gtest/gtest.h" #include "paddle/fluid/memory/detail/memory_block.h" #include "paddle/fluid/memory/detail/meta_data.h" - #include "paddle/fluid/platform/cpu_info.h" #include "paddle/fluid/platform/gpu_info.h" #include "paddle/fluid/platform/place.h" -#include -#include - inline bool is_aligned(void const *p) { return 0 == (reinterpret_cast(p) & 0x3); } -- GitLab