Skip to content

Commit

Permalink
fixed bug with vector adaptation
Browse files Browse the repository at this point in the history
  • Loading branch information
Magdalen Dobson committed Apr 4, 2024
1 parent 9aeff04 commit 42969b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/concurrentKNN/octTree/experiments.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mkdir -p graphs

##OVERSUBSCRIPTION

# python3 run_experiments.py [neighbors_bench,neighbors_bench_lockfree,neighbors_bench_path_copy,neighbors_bench_path_copy_lockfree] [144,196,288,432,500] [50] [1] 3 [3DinCube_20M]
python3 run_experiments.py [neighbors_bench,neighbors_bench_lockfree,neighbors_bench_path_copy,neighbors_bench_path_copy_lockfree] [144,196,288,432,500] [50] [1] 3 [3DinCube_20M]
python3 run_experiments.py [working_set_bench,working_set_bench_lockfree] [144,196,288,432,500] [50] [1] 3 [3DinCube_WorkingSet_11M]


Expand Down
2 changes: 1 addition & 1 deletion benchmarks/concurrentKNN/octTree/k_nearest_neighbors.h
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ node* find_leaf(node* T){ //takes in a point since interleave_bits() takes in a
// std::cout << "case 1" << std::endl;
//we know we are in case 1
//form leaf
parlay::sequence<indexed_point> points = {q};
std::vector<indexed_point> points = {q};
node* R = node::new_leaf(std::move(points), cur_bit-1);
//new parent node should replace T as G's child
node* P;
Expand Down

0 comments on commit 42969b8

Please sign in to comment.