We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d334647 commit a8b9c0bCopy full SHA for a8b9c0b
1 file changed
vortex-cuda/cub/kernels/filter.cu
@@ -9,6 +9,11 @@
9
#include <cuda_runtime.h>
10
#include <stdint.h>
11
12
+// The include is done to ensure C API definitions match declarations.
13
+// Otherwise, the implementation could diverge from the declaration causing
14
+// silent ABI breaks. This is crucial to keep rust bindgen in sync.
15
+#include "filter.h"
16
+
17
// Bit extraction functor for TransformInputIterator
18
struct BitExtractor {
19
const uint8_t* packed;
0 commit comments