-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[popsift] Fix missing Thrust include, already merged upstream. (#22929)
- Loading branch information
1 parent
c0d667a
commit 4f6cd51
Showing
5 changed files
with
39 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
From 273adb1c375b12f285694488280e04efd251a76a Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Thomas=20Sch=C3=B6ps?= <[email protected]> | ||
Date: Sat, 28 Aug 2021 16:52:25 +0200 | ||
Subject: [PATCH] Add missing thrust include | ||
|
||
--- | ||
src/popsift/s_filtergrid.cu | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/src/popsift/s_filtergrid.cu b/src/popsift/s_filtergrid.cu | ||
index 078eb114..301c6a96 100644 | ||
--- a/src/popsift/s_filtergrid.cu | ||
+++ b/src/popsift/s_filtergrid.cu | ||
@@ -21,6 +21,7 @@ | ||
#include <thrust/copy.h> | ||
#include <thrust/device_vector.h> | ||
#include <thrust/execution_policy.h> | ||
+#include <thrust/host_vector.h> | ||
#include <thrust/iterator/discard_iterator.h> | ||
#include <thrust/sequence.h> | ||
#include <thrust/sort.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters