diff --git a/conda/recipes/libkvikio/build.sh b/conda/recipes/libkvikio/build.sh index 508420305b..82117d66a4 100644 --- a/conda/recipes/libkvikio/build.sh +++ b/conda/recipes/libkvikio/build.sh @@ -1,8 +1,4 @@ #!/bin/bash # Copyright (c) 2023-2024, NVIDIA CORPORATION. -echo '$PREFIX:' -find $PREFIX -echo '$BUILD_PREFIX:' -find $BUILD_PREFIX ./build.sh -v -n libkvikio diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 08b01379a3..23c214e9bd 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -97,7 +97,6 @@ else() LINK_LIBRARIES CUDA::cuFile OUTPUT_VARIABLE batch_output ) - message(STATUS "batch output: ${batch_output}") message(STATUS "Found cuFile Batch API: ${cuFile_BATCH_API_FOUND}") try_compile( cuFile_STREAM_API_FOUND SOURCE_FROM_CONTENT @@ -106,14 +105,13 @@ else() int main() { CUfileHandle_t fh; CUstream stream; - cuFileReadAsync(fh, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr); + cuFileReadAsync(fh, nullptr, nullptr, nullptr, nullptr, nullptr, stream); return 0; } ]] LINK_LIBRARIES CUDA::cuFile OUTPUT_VARIABLE stream_output ) - message(STATUS "stream output: ${stream_output}") message(STATUS "Found cuFile Stream API: ${cuFile_STREAM_API_FOUND}") endif()