Skip to content

Commit

Permalink
Remove linalg.
Browse files Browse the repository at this point in the history
  • Loading branch information
trivialfis committed Jan 13, 2022
1 parent 8e82462 commit 201ffea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cpp/include/raft/mdarray.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <rmm/device_uvector.hpp>
#include <thrust/device_ptr.h>

namespace raft::linalg {
namespace raft {
namespace detail {
/**
* @brief A simplified version of thrust::device_reference with support for CUDA stream.
Expand Down Expand Up @@ -405,4 +405,4 @@ template <class ElementType,
class AccessorPolicy = detail::device_uvector_policy<ElementType>>
using device_mdarray =
mdarray<ElementType, Extents, LayoutPolicy, detail::device_accessor<AccessorPolicy>>;
} // namespace raft::linalg
} // namespace raft
4 changes: 2 additions & 2 deletions cpp/test/mdarray.cu
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void test_mdspan()

TEST(MDSpan, Basic) { test_mdspan(); }

namespace raft::linalg {
namespace raft {
void test_uvector_policy()
{
auto s = rmm::cuda_stream{};
Expand Down Expand Up @@ -138,4 +138,4 @@ void test_mdarray_copy()
}

TEST(MDArray, Copy) { test_mdarray_copy(); }
} // namespace raft::linalg
} // namespace raft

0 comments on commit 201ffea

Please sign in to comment.