Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Dec 4, 2024
1 parent 58c5252 commit 8e37af1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/include/kvikio/shim/cufile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ constexpr bool cufile_version() { return 0; }
*
* @return The boolean answer
*/
inline bool is_batch_api_available() noexcept { return cufile_version() > 1060; }
inline bool is_batch_api_available() noexcept { return cufile_version() >= 1060; }

/**
* @brief Check if cuFile's stream (async) API is available.
Expand All @@ -253,6 +253,6 @@ inline bool is_batch_api_available() noexcept { return cufile_version() > 1060;
*
* @return The boolean answer
*/
inline bool is_stream_api_available() noexcept { return cufile_version() > 1070; }
inline bool is_stream_api_available() noexcept { return cufile_version() >= 1070; }

} // namespace kvikio

0 comments on commit 8e37af1

Please sign in to comment.