Skip to content

Commit

Permalink
Remove debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleFromNVIDIA committed Nov 8, 2024
1 parent 945df21 commit f167cdd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
4 changes: 0 additions & 4 deletions conda/recipes/libkvikio/build.sh
Original file line number Diff line number Diff line change
@@ -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
4 changes: 1 addition & 3 deletions cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()

Expand Down

0 comments on commit f167cdd

Please sign in to comment.