Skip to content

Commit

Permalink
Add missing thrust includes to transpose.cuh (#575)
Browse files Browse the repository at this point in the history
Including `raft/linalg/transpose.cuh` appears to work today, but a few weeks ago it didn't because of these missing includes. Either way, these should be here because they're used.

I can't figure out how to get include-what-you-use to process .cuh files, but that would be a nice check for all of the RAPIDS repos.

Authors:
  - Zach Bjornson (https://github.com/zbjornson)

Approvers:
  - Corey J. Nolet (https://github.com/cjnolet)

URL: #575
  • Loading branch information
zbjornson authored Mar 22, 2022
1 parent 1c54493 commit 15b2ef7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cpp/include/raft/linalg/detail/transpose.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

#include <raft/handle.hpp>
#include <rmm/exec_policy.hpp>
#include <thrust/for_each.h>
#include <thrust/iterator/counting_iterator.h>

namespace raft {
namespace linalg {
Expand Down

0 comments on commit 15b2ef7

Please sign in to comment.