Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #437 from allisonvacanti/missing_headers
Browse files Browse the repository at this point in the history
Add missing <iterator> headers.
  • Loading branch information
alliepiper authored Feb 9, 2022
2 parents ce45e0e + 769e149 commit 3e27978
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
13 changes: 7 additions & 6 deletions cub/device/dispatch/dispatch_adjacent_difference.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,16 @@

#pragma once

#include "../../config.cuh"
#include "../../util_math.cuh"
#include "../../util_device.cuh"
#include "../../util_namespace.cuh"
#include "../../detail/type_traits.cuh"
#include "../../agent/agent_adjacent_difference.cuh"
#include <cub/agent/agent_adjacent_difference.cuh>
#include <cub/config.cuh>
#include <cub/detail/type_traits.cuh>
#include <cub/util_device.cuh>
#include <cub/util_math.cuh>
#include <cub/util_namespace.cuh>

#include <thrust/system/cuda/detail/core/triple_chevron_launch.h>

#include <iterator>

CUB_NAMESPACE_BEGIN

Expand Down
9 changes: 5 additions & 4 deletions cub/device/dispatch/dispatch_unique_by_key.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@
* cub::DeviceSelect::UniqueByKey provides device-wide, parallel operations for selecting unique items by key from sequences of data items residing within device-accessible memory.
*/

#include "../../agent/agent_unique_by_key.cuh"
#include "../../util_math.cuh"
#include "../../util_macro.cuh"
#include <cub/agent/agent_unique_by_key.cuh>
#include <cub/device/dispatch/dispatch_scan.cuh>
#include <cub/util_macro.cuh>
#include <cub/util_math.cuh>

#include "dispatch_scan.cuh"
#include <iterator>

CUB_NAMESPACE_BEGIN

Expand Down
1 change: 1 addition & 0 deletions cub/util_type.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@

#include <cfloat>
#include <iostream>
#include <iterator>
#include <limits>
#include <type_traits>

Expand Down

0 comments on commit 3e27978

Please sign in to comment.