Skip to content

Commit effd905

Browse files
committed
Fixing Lint issue
1 parent a9a05d9 commit effd905

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

graphbolt/src/cuda/common.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ struct CUDAWorkspaceAllocator {
5858
// Required by thrust to satisfy allocator requirements.
5959
using value_type = value_t;
6060

61-
explicit CUDAWorkspaceAllocator() { at::globalContext().lazyInitDevice(at::kCUDA); }
61+
explicit CUDAWorkspaceAllocator() {
62+
at::globalContext().lazyInitDevice(at::kCUDA);
63+
}
6264

6365
template <class U>
6466
CUDAWorkspaceAllocator(CUDAWorkspaceAllocator<U> const&) noexcept {}

0 commit comments

Comments
 (0)