30 #include <BS_thread_pool.hpp>
32 #include <kvikio/shim/cufile.hpp>
63 T getenv_or(std::string_view env_var_name, T default_val)
65 const auto* env_val = std::getenv(env_var_name.data());
66 if (env_val ==
nullptr) {
return default_val; }
68 std::stringstream sstream(env_val);
70 sstream >> converted_val;
72 throw std::invalid_argument(
"unknown config value " + std::string{env_var_name} +
"=" +
73 std::string{env_val});
79 bool getenv_or(std::string_view env_var_name,
bool default_val);
82 CompatMode getenv_or(std::string_view env_var_name, CompatMode default_val);
90 BS::thread_pool _thread_pool{get_num_threads_from_env()};
92 std::size_t _task_size;
93 std::size_t _gds_threshold;
94 std::size_t _bounce_buffer_size;
96 static unsigned int get_num_threads_from_env();
100 KVIKIO_EXPORT
static defaults* instance();
Singleton class of default values used throughout KvikIO.
static CompatMode infer_compat_mode_if_auto(CompatMode compat_mode) noexcept
Infer the AUTO compatibility mode from the system runtime.
static std::size_t task_size()
Get the default task size used for parallel IO operations.
static void gds_threshold_reset(std::size_t nbytes)
Reset the default GDS threshold, which is the minimum size to use GDS (in bytes).
static BS::thread_pool & thread_pool()
Get the default thread pool.
static void bounce_buffer_size_reset(std::size_t nbytes)
Reset the size of the bounce buffer used to stage data in host memory.
static bool is_compat_mode_preferred()
Whether the global compatibility mode from class defaults is expected to be ON.
static void task_size_reset(std::size_t nbytes)
Reset the default task size used for parallel IO operations.
static void compat_mode_reset(CompatMode compat_mode)
Reset the value of kvikio::defaults::compat_mode().
static bool is_compat_mode_preferred(CompatMode compat_mode) noexcept
Given a requested compatibility mode, whether it is expected to reduce to ON.
static void thread_pool_nthreads_reset(unsigned int nthreads)
Reset the number of threads in the default thread pool. Waits for all currently running tasks to be c...
static std::size_t gds_threshold()
Get the default GDS threshold, which is the minimum size to use GDS (in bytes).
static unsigned int thread_pool_nthreads()
Get the number of threads in the default thread pool.
static std::size_t bounce_buffer_size()
Get the size of the bounce buffer used to stage data in host memory.
static CompatMode compat_mode()
Return whether the KvikIO library is running in compatibility mode or not.
CompatMode
I/O compatibility mode.
CompatMode parse_compat_mode_str(std::string_view compat_mode_str)
Parse a string into a CompatMode enum.