Update kernels.cuh

This commit is contained in:
Jake Hemstad 2025-02-19 19:26:17 -06:00 committed by Rob Armstrong
parent 940a4c7a91
commit 37c5bcbef4

View File

@ -34,13 +34,12 @@
#define _KERNELS_H_
#include <stdio.h>
#include <thrust/functional.h>
#include "common.cuh"
// Functors used with thrust library.
template <typename Input>
struct IsGreaterEqualThan : public thrust::unary_function<Input, bool>
struct IsGreaterEqualThan
{
__host__ __device__ IsGreaterEqualThan(uint upperBound) :
upperBound_(upperBound) {}