missing #include <thrust/count.h> in non_max_suppression_impl.cu (#11730)

Otherwise, depending on cuda or hip thrust versions, transitive header inclusions miss thrust::count_if.
This commit is contained in:
Jeff Daily 2022-06-10 10:45:28 -07:00 committed by GitHub
parent d4ea59654c
commit 5562b47f06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,6 +14,7 @@ limitations under the License.
==============================================================================*/
/* Modifications Copyright (c) Microsoft. */
#include <thrust/count.h>
#include <thrust/device_vector.h>
#include <thrust/execution_policy.h>