Skip to content

Commit

Permalink
Fix cugraph-ops header names (#2095)
Browse files Browse the repository at this point in the history
cugraph-ops header files are being renamed to be better inline with rapids.

Authors:
  - Kumar Aatish (https://github.com/kaatish)

Approvers:
  - Seunghwa Kang (https://github.com/seunghwak)
  - Chuck Hastings (https://github.com/ChuckHastings)

URL: #2095
  • Loading branch information
kaatish authored Mar 1, 2022
1 parent cf7b174 commit f7eea32
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cpp/cmake/thirdparty/get_libcugraphops.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function(find_and_configure_cugraphops)
endif()

rapids_find_generate_module(cugraphops
HEADER_NAMES graph/sampling.h
HEADER_NAMES graph/sampling.hpp
LIBRARY_NAMES cugraph-ops++
INCLUDE_SUFFIXES cugraph-ops
BUILD_EXPORT_SET cugraph-exports
Expand Down
2 changes: 1 addition & 1 deletion cpp/include/cugraph/algorithms.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <cugraph/internals.hpp>
#include <cugraph/legacy/graph.hpp>

#include <cugraph-ops/graph/sampling.h>
#include <cugraph-ops/graph/sampling.hpp>

#include <raft/handle.hpp>

Expand Down
2 changes: 1 addition & 1 deletion cpp/src/sampling/neighborhood.cu
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <utilities/cugraph_ops_utils.hpp>

#include <cugraph-ops/graph/sampling.h>
#include <cugraph-ops/graph/sampling.hpp>

namespace cugraph {

Expand Down
2 changes: 1 addition & 1 deletion cpp/src/utilities/cugraph_ops_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <cugraph/graph_view.hpp>

#include <cugraph-ops/graph/format.h>
#include <cugraph-ops/graph/format.hpp>

#include <tuple>

Expand Down

0 comments on commit f7eea32

Please sign in to comment.