Skip to content

Commit

Permalink
Merge pull request #16431 from rapidsai/branch-24.08
Browse files Browse the repository at this point in the history
Forward-merge branch-24.08 into branch-24.10
  • Loading branch information
GPUtester authored Jul 30, 2024
2 parents f8eb63e + bd302d7 commit e8048f7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions cpp/include/cudf/utilities/prefetch.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <rmm/device_uvector.hpp>

#include <map>
#include <shared_mutex>
#include <string>
#include <string_view>

Expand All @@ -47,13 +48,17 @@ class prefetch_config {
/**
* @brief Get the value of a configuration key.
*
* If the key does not exist, a `false` value will be returned.
*
* @param key The configuration key.
* @return The value of the configuration key.
*/
bool get(std::string_view key);
/**
* @brief Set the value of a configuration key.
*
* This is a thread-safe operation.
*
* @param key The configuration key.
* @param value The value to set.
*/
Expand All @@ -68,6 +73,7 @@ class prefetch_config {
private:
prefetch_config() = default; //< Private constructor to enforce singleton pattern
std::map<std::string, bool> config_values; //< Map of configuration keys to values
std::shared_mutex config_mtx; //< Mutex for thread-safe config access
};

/**
Expand Down
15 changes: 9 additions & 6 deletions cpp/src/utilities/prefetch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,16 @@ prefetch_config& prefetch_config::instance()

bool prefetch_config::get(std::string_view key)
{
// Default to not prefetching
if (config_values.find(key.data()) == config_values.end()) {
return (config_values[key.data()] = false);
}
return config_values[key.data()];
std::shared_lock<std::shared_mutex> lock(config_mtx);
auto const it = config_values.find(key.data());
return it == config_values.end() ? false : it->second; // default to not prefetching
}

void prefetch_config::set(std::string_view key, bool value)
{
std::lock_guard<std::shared_mutex> lock(config_mtx);
config_values[key.data()] = value;
}
void prefetch_config::set(std::string_view key, bool value) { config_values[key.data()] = value; }

cudaError_t prefetch_noexcept(std::string_view key,
void const* ptr,
Expand Down

0 comments on commit e8048f7

Please sign in to comment.