Skip to content

Commit

Permalink
Getting select_k tests and bench to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnolet committed Nov 8, 2024
1 parent 0aecdee commit 2885f64
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 1,084 deletions.
1 change: 1 addition & 0 deletions cpp/test/matrix/select_k.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once

#include "../test_utils.cuh"

Expand Down
8 changes: 4 additions & 4 deletions cpp/test/matrix/select_large_k.cu
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ auto inputs_random_largek = testing::Values(select::params{100, 100000, 1000, tr
select::params{100, 100000, 2048, false},
select::params{100, 100000, 1237, true});

using ReferencedRandomFloatSizeT =
using ReferencedRandomFloatLargeSizeT =
SelectK<float, int64_t, with_ref<SelectAlgo::kRadix8bits>::params_random>;
TEST_P(ReferencedRandomFloatSizeT, LargeK) { run(); } // NOLINT
INSTANTIATE_TEST_CASE_P(SelectK, // NOLINT
ReferencedRandomFloatSizeT,
TEST_P(ReferencedRandomFloatLargeSizeT, LargeK) { run(); } // NOLINT
INSTANTIATE_TEST_CASE_P(SelectK, // NOLINT
ReferencedRandomFloatLargeSizeT,
testing::Combine(inputs_random_largek,
testing::Values(SelectAlgo::kRadix11bits,
SelectAlgo::kRadix11bitsExtraPass)));
Expand Down
3 changes: 0 additions & 3 deletions docs/source/cpp_api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,10 @@ C++ API
:maxdepth: 4

cpp_api/core.rst
cpp_api/cluster.rst
cpp_api/distance.rst
cpp_api/linalg.rst
cpp_api/matrix.rst
cpp_api/mdspan.rst
cpp_api/mnmg.rst
cpp_api/neighbors.rst
cpp_api/random.rst
cpp_api/solver.rst
cpp_api/sparse.rst
Expand Down
7 changes: 0 additions & 7 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,12 @@ While not exhaustive, the following general categories help summarize the accele

* - Category
- Examples
* - Nearest Neighbors
- pairwise distances, vector search, epsilon neighborhoods, neighborhood graph construction
* - Data Formats
- sparse & dense, conversions, data generation
* - Dense Operations
- linear algebra, matrix and vector operations, slicing, norms, factorization, least squares, svd & eigenvalue problems
* - Sparse Operations
- linear algebra, eigenvalue problems, slicing, norms, reductions, factorization, symmetrization, components & labeling
* - Basic Clustering
- spectral clustering, hierarchical clustering, k-means
* - Solvers
- combinatorial optimization, iterative solvers
* - Statistics
Expand All @@ -61,9 +57,6 @@ While not exhaustive, the following general categories help summarize the accele
build.md
cpp_api.rst
pylibraft_api.rst
using_libraft.md
vector_search_tutorial.md
raft_ann_benchmarks.md
raft_dask_api.rst
using_raft_comms.rst
developer_guide.md
Expand Down
597 changes: 0 additions & 597 deletions docs/source/raft_ann_benchmarks.md

This file was deleted.

64 changes: 0 additions & 64 deletions docs/source/using_libraft.md

This file was deleted.

Loading

0 comments on commit 2885f64

Please sign in to comment.