From f0725dccd92b4c0bea0859d18eb116d015e46e52 Mon Sep 17 00:00:00 2001 From: "Mads R. B. Kristensen" Date: Wed, 24 Jul 2024 22:14:43 +0200 Subject: [PATCH] cufile-wrapper: include the cuda-wrapper (#413) Fix the cufile-wrapper when `cuda.h` isn't available Authors: - Mads R. B. Kristensen (https://github.com/madsbk) Approvers: - Quincey Koziol (https://github.com/qkoziol) - https://github.com/jakirkham URL: https://github.com/rapidsai/kvikio/pull/413 --- cpp/include/kvikio/shim/cufile_h_wrapper.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpp/include/kvikio/shim/cufile_h_wrapper.hpp b/cpp/include/kvikio/shim/cufile_h_wrapper.hpp index cb9902f0a6..33c3fee9a2 100644 --- a/cpp/include/kvikio/shim/cufile_h_wrapper.hpp +++ b/cpp/include/kvikio/shim/cufile_h_wrapper.hpp @@ -17,6 +17,8 @@ #include +#include + /** * In order to support compilation when `cufile.h` isn't available, we * wrap all use of cufile in a `#ifdef KVIKIO_CUFILE_FOUND` guard.