From 9490d243dd0255021b288f9c2e43c57b30264b9b Mon Sep 17 00:00:00 2001
From: liaogang <liaogang@baidu.com>
Date: Wed, 28 Jun 2017 10:46:14 +0800
Subject: [PATCH] ENH: clang-format

---
 paddle/memory/detail/buddy_allocator.h | 2 +-
 paddle/platform/cuda.h                 | 9 ++++-----
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/paddle/memory/detail/buddy_allocator.h b/paddle/memory/detail/buddy_allocator.h
index 702c7d28ee..82e6aaedc7 100644
--- a/paddle/memory/detail/buddy_allocator.h
+++ b/paddle/memory/detail/buddy_allocator.h
@@ -16,8 +16,8 @@
 
 #include "paddle/memory/detail/system_allocator.h"
 
-#include <vector>
 #include <mutex>
+#include <vector>
 
 namespace paddle {
 namespace memory {
diff --git a/paddle/platform/cuda.h b/paddle/platform/cuda.h
index 864a5d3340..8fe891f9ce 100644
--- a/paddle/platform/cuda.h
+++ b/paddle/platform/cuda.h
@@ -29,13 +29,12 @@ inline void throw_on_error(cudaError_t e, const char* message) {
 }
 
 int GetDeviceCount(void) {
-    int count;
-    throw_on_error(cudaGetDeviceCount(&count),
-                   "cudaGetDeviceCount failed");
-    return count;
+  int count;
+  throw_on_error(cudaGetDeviceCount(&count), "cudaGetDeviceCount failed");
+  return count;
 }
 
 }  // namespace platform
 }  // namespace paddle
 
-#endif  // PADDLE_ONLY_CPU 
+#endif  // PADDLE_ONLY_CPU