Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move the uva files into cuda directory.
Browse files Browse the repository at this point in the history
mfbalin committed Jan 16, 2024
1 parent 0b1d3f6 commit ba52ef2
Showing 5 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions graphbolt/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -49,6 +49,7 @@ set(BOLT_DIR "${CMAKE_CURRENT_SOURCE_DIR}/src")
set(BOLT_INCLUDE "${CMAKE_CURRENT_SOURCE_DIR}/include")
file(GLOB BOLT_HEADERS ${BOLT_INCLUDE})
file(GLOB BOLT_SRC ${BOLT_DIR}/*.cc)
file(GLOB BOLT_SRC ${BOLT_DIR}/cuda/*.cc)
if(USE_CUDA)
file(GLOB BOLT_CUDA_SRC
${BOLT_DIR}/cuda/*.cu
2 changes: 1 addition & 1 deletion graphbolt/src/cuda/index_select_impl.cu
Original file line number Diff line number Diff line change
@@ -9,8 +9,8 @@

#include <numeric>

#include "../max_uva_threads.h"
#include "./common.h"
#include "./max_uva_threads.h"
#include "./utils.h"

namespace graphbolt {
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion graphbolt/src/python_binding.cc
Original file line number Diff line number Diff line change
@@ -9,8 +9,8 @@
#include <graphbolt/serialize.h>
#include <graphbolt/unique_and_compact.h>

#include "./cuda/max_uva_threads.h"
#include "./index_select.h"
#include "./max_uva_threads.h"
#include "./random.h"

namespace graphbolt {

0 comments on commit ba52ef2

Please sign in to comment.