Skip to content

Commit

Permalink
Updating includes
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnolet committed Mar 16, 2021
1 parent 40bbb45 commit 4f397ed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion cpp/src_prims/selection/knn.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include <raft/linalg/distance_type.h>
#include "processing.cuh"

#include <selection/haversine_knn.cuh>
#include "haversine_knn.cuh"

#include <cuml/common/cuml_allocator.hpp>
#include <cuml/common/device_buffer.hpp>
Expand Down
6 changes: 3 additions & 3 deletions cpp/src_prims/sparse/distance/bin_distance.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
#include <raft/mr/device/allocator.hpp>
#include <raft/mr/device/buffer.hpp>

#include "../utils.h"
#include "common.h"
#include "ip_distance.cuh"
#include <../utils.h>
#include <common.h>
#include <ip_distance.cuh>

#include <nvfunctional>

Expand Down
8 changes: 4 additions & 4 deletions cpp/src_prims/sparse/distance/l2_distance.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
#include <raft/mr/device/allocator.hpp>
#include <raft/mr/device/buffer.hpp>

#include "../csr.cuh"
#include "../utils.h"
#include <../csr.cuh>
#include <../utils.h>

#include "common.h"
#include "ip_distance.cuh"
#include <common.h>
#include <ip_distance.cuh>

#include <limits.h>
#include <cmath>
Expand Down

0 comments on commit 4f397ed

Please sign in to comment.