Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Moving low-level iterative solver primitives to raft::solver #923

Draft
wants to merge 42 commits into
base: branch-23.02
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
6873186
MOving gram matrix over to raft
cjnolet Oct 14, 2022
4df4df1
Adding specializations for gram matrix kernels
cjnolet Oct 14, 2022
c9e82cd
Commenting out rbf kernel instantiations for now.
cjnolet Oct 15, 2022
443130b
Fixing style after commenting RBC out
cjnolet Oct 15, 2022
231c3d9
Adding cudart_utils.hpp to init.cuh
cjnolet Oct 15, 2022
1bbd5f0
Style
cjnolet Oct 15, 2022
b663d3e
Fixing typo
cjnolet Oct 15, 2022
94bc17c
Fixing benchmark gramm
cjnolet Oct 15, 2022
f94cc7f
Fixing include
cjnolet Oct 15, 2022
ada42fd
Adding gram test to distances
cjnolet Oct 15, 2022
510cb6d
Adding gram.cu
cjnolet Oct 15, 2022
d1ab18e
Fixing import
cjnolet Oct 15, 2022
915d659
Adding missing curly brace
cjnolet Oct 16, 2022
86b72e6
CHanging namespace
cjnolet Oct 16, 2022
271abfd
Adding logger
cjnolet Oct 16, 2022
8a13f8d
Fixing style
cjnolet Oct 16, 2022
8d7ab1c
Fixing doc
cjnolet Oct 16, 2022
405f387
Pulling solver files over, starting to update qn solver public API
cjnolet Oct 17, 2022
8d2bd0b
Updates
cjnolet Oct 18, 2022
20a9734
Merge branch 'branch-22.12' into fea-2212-iterative_solvers
cjnolet Oct 20, 2022
879e85f
Fixing style
cjnolet Oct 20, 2022
66e1281
Checking in
cjnolet Oct 20, 2022
4131c0e
Exposing solver APIs. It needs some work but it's getting there.
cjnolet Oct 20, 2022
87d620f
Correcting spatial::knn docs to raft::neighbors
cjnolet Oct 20, 2022
febd1d4
Adding neighbors to index
cjnolet Oct 20, 2022
63e2e8b
Updating docs
cjnolet Oct 21, 2022
831c3d2
Making sure we call new cluster namespaced code from deprecated code to
cjnolet Oct 21, 2022
3c8bad1
Fixing style
cjnolet Oct 21, 2022
bb93fc1
Merge branch 'branch-22.12' into doc-2212-neighbors_docs
cjnolet Oct 21, 2022
31047e6
Deprecation warnings
cjnolet Oct 21, 2022
fd8899c
Fixing typo
cjnolet Oct 21, 2022
4968ce8
Fixing hierarchical compile error
cjnolet Oct 21, 2022
6ccf61f
Removing namespace conflict
cjnolet Oct 21, 2022
a36f26e
Many many updates to the docs, including a quick-start
cjnolet Oct 21, 2022
6acbb23
Merge branch 'branch-22.12' into doc-2212-neighbors_docs
cjnolet Oct 21, 2022
004af04
Fixing style
cjnolet Oct 21, 2022
b63f056
Merge branch 'doc-2212-neighbors_docs' into fea-2212-iterative_solvers
cjnolet Oct 21, 2022
b2fc56a
Merge branch 'branch-22.12' into fea-2212-iterative_solvers
cjnolet Oct 27, 2022
337dd02
Fixing style
cjnolet Oct 27, 2022
77a7c0b
A little more cleanup
cjnolet Oct 27, 2022
2adffb9
Merge branch 'branch-22.12' into fea-2212-iterative_solvers
cjnolet Jan 10, 2023
7c4f9de
Merge branch 'branch-23.02' into fea-2212-iterative_solvers
cjnolet Jan 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Style
  • Loading branch information
cjnolet committed Oct 15, 2022
commit 1bbd5f0f555d87507fca1d5feac06b8080d81e42
2 changes: 1 addition & 1 deletion cpp/include/raft/linalg/init.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@

#pragma once

#include <raft/util/cudart_utils.hpp>
#include "detail/init.hpp"
#include <raft/util/cudart_utils.hpp>

namespace raft {
namespace linalg {
Expand Down