All Classes Files Functions Enumerations Enumerator Pages
defaults.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2022-2025, NVIDIA CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 // Enable documentation of the enum.
22 #pragma once
23 
24 #include <cstddef>
25 #include <cstdlib>
26 #include <sstream>
27 #include <stdexcept>
28 #include <string>
29 
30 #include <BS_thread_pool.hpp>
31 
32 #include <kvikio/shim/cufile.hpp>
33 
34 namespace kvikio {
38 enum class CompatMode : uint8_t {
39  OFF,
42  ON,
43  AUTO,
45 };
46 
47 namespace detail {
58 CompatMode parse_compat_mode_str(std::string_view compat_mode_str);
59 
60 } // namespace detail
61 
62 template <typename T>
63 T getenv_or(std::string_view env_var_name, T default_val)
64 {
65  const auto* env_val = std::getenv(env_var_name.data());
66  if (env_val == nullptr) { return default_val; }
67 
68  std::stringstream sstream(env_val);
69  T converted_val;
70  sstream >> converted_val;
71  if (sstream.fail()) {
72  throw std::invalid_argument("unknown config value " + std::string{env_var_name} + "=" +
73  std::string{env_val});
74  }
75  return converted_val;
76 }
77 
78 template <>
79 bool getenv_or(std::string_view env_var_name, bool default_val);
80 
81 template <>
82 CompatMode getenv_or(std::string_view env_var_name, CompatMode default_val);
83 
88 class defaults {
89  private:
90  BS::thread_pool _thread_pool{get_num_threads_from_env()};
91  CompatMode _compat_mode;
92  std::size_t _task_size;
93  std::size_t _gds_threshold;
94  std::size_t _bounce_buffer_size;
95 
96  static unsigned int get_num_threads_from_env();
97 
98  defaults();
99 
100  KVIKIO_EXPORT static defaults* instance();
101 
102  public:
121  [[nodiscard]] static CompatMode compat_mode();
122 
132 
143 
160 
176 
186  [[nodiscard]] static BS::thread_pool& thread_pool();
187 
196  [[nodiscard]] static unsigned int thread_pool_nthreads();
197 
207  static void thread_pool_nthreads_reset(unsigned int nthreads);
208 
217  [[nodiscard]] static std::size_t task_size();
218 
224  static void task_size_reset(std::size_t nbytes);
225 
237  [[nodiscard]] static std::size_t gds_threshold();
238 
243  static void gds_threshold_reset(std::size_t nbytes);
244 
253  [[nodiscard]] static std::size_t bounce_buffer_size();
254 
260  static void bounce_buffer_size_reset(std::size_t nbytes);
261 };
262 
263 } // namespace kvikio
Singleton class of default values used throughout KvikIO.
Definition: defaults.hpp:88
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.
Definition: defaults.hpp:38
@ ON
Enforce POSIX I/O.
CompatMode parse_compat_mode_str(std::string_view compat_mode_str)
Parse a string into a CompatMode enum.