Singleton class of default values used throughout KvikIO. More...
#include <defaults.hpp>
Static Public Member Functions | |
static CompatMode | compat_mode () |
Return whether the KvikIO library is running in compatibility mode or not. More... | |
static void | compat_mode_reset (CompatMode compat_mode) |
Reset the value of kvikio::defaults::compat_mode() . More... | |
static CompatMode | infer_compat_mode_if_auto (CompatMode compat_mode) |
Infer the AUTO compatibility mode from the system runtime. More... | |
static bool | is_compat_mode_preferred (CompatMode compat_mode) |
Given a requested compatibility mode, whether it is expected to reduce to ON . More... | |
static bool | is_compat_mode_preferred () |
Whether the global compatibility mode from class defaults is expected to be ON . More... | |
static BS::thread_pool & | thread_pool () |
Get the default thread pool. More... | |
static unsigned int | thread_pool_nthreads () |
Get the number of threads in the default thread pool. More... | |
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 completed, then destroys all threads in the pool and creates a new thread pool with the new number of threads. Any tasks that were waiting in the queue before the pool was reset will then be executed by the new threads. If the pool was paused before resetting it, the new pool will be paused as well. More... | |
static std::size_t | task_size () |
Get the default task size used for parallel IO operations. More... | |
static void | task_size_reset (std::size_t nbytes) |
Reset the default task size used for parallel IO operations. More... | |
static std::size_t | gds_threshold () |
Get the default GDS threshold, which is the minimum size to use GDS (in bytes). More... | |
static void | gds_threshold_reset (std::size_t nbytes) |
Reset the default GDS threshold, which is the minimum size to use GDS (in bytes). More... | |
static std::size_t | bounce_buffer_size () |
Get the size of the bounce buffer used to stage data in host memory. More... | |
static void | bounce_buffer_size_reset (std::size_t nbytes) |
Reset the size of the bounce buffer used to stage data in host memory. More... | |
Singleton class of default values used throughout KvikIO.
Definition at line 140 of file defaults.hpp.
|
inlinestatic |
Get the size of the bounce buffer used to stage data in host memory.
Set the value using kvikio::default::bounce_buffer_size_reset()
or by setting the KVIKIO_BOUNCE_BUFFER_SIZE
environment variable. If not set, the value is 16 MiB.
Definition at line 377 of file defaults.hpp.
|
inlinestatic |
Reset the size of the bounce buffer used to stage data in host memory.
nbytes | The bounce buffer size in bytes. |
Definition at line 384 of file defaults.hpp.
|
inlinestatic |
Return whether the KvikIO library is running in compatibility mode or not.
Notice, this is not the same as the compatibility mode in cuFile. That is, cuFile can run in compatibility mode while KvikIO is not.
When KvikIO is running in compatibility mode, it doesn't load libcufile.so
. Instead, reads and writes are done using POSIX.
Set the environment variable KVIKIO_COMPAT_MODE
to enable/disable compatibility mode. By default, compatibility mode is enabled:
libcufile
cannot be found/run/udev
isn't readable, which typically happens when running inside a docker image not launched with --volume /run/udev:/run/udev:ro
Definition at line 216 of file defaults.hpp.
|
inlinestatic |
Reset the value of kvikio::defaults::compat_mode()
.
Changing the compatibility mode affects all the new FileHandles whose compat_mode
argument is not explicitly set, but it never affects existing FileHandles.
compat_mode | Compatibility mode. |
Definition at line 226 of file defaults.hpp.
|
inlinestatic |
Get the default GDS threshold, which is the minimum size to use GDS (in bytes).
In order to improve performance of small IO, .pread()
and .pwrite()
implement a shortcut that circumvent the threadpool and use the POSIX backend directly.
Set the default value using kvikio::default::gds_threshold_reset()
or by setting the KVIKIO_GDS_THRESHOLD
environment variable. If not set, the default value is 1 MiB.
Definition at line 361 of file defaults.hpp.
|
inlinestatic |
Reset the default GDS threshold, which is the minimum size to use GDS (in bytes).
nbytes | The default GDS threshold size in bytes. |
Definition at line 367 of file defaults.hpp.
|
inlinestatic |
Infer the AUTO
compatibility mode from the system runtime.
If the requested compatibility mode is AUTO
, set the expected compatibility mode to ON
or OFF
by performing a system config check; otherwise, do nothing. Effectively, this function reduces the requested compatibility mode from three possible states (ON
/OFF
/AUTO
) to two (ON
/OFF
) so as to determine the actual I/O path. This function is lightweight as the inferred result is cached.
Definition at line 237 of file defaults.hpp.
|
inlinestatic |
Whether the global compatibility mode from class defaults is expected to be ON
.
This function returns true if any of the two condition is satisfied:
ON
.AUTO
but inferred to be ON
.Conceptually, the opposite of this function is whether the global compatibility mode is expected to be OFF
, which would occur if any of the two condition is satisfied:
OFF
.AUTO
but inferred to be OFF
.Definition at line 284 of file defaults.hpp.
|
inlinestatic |
Given a requested compatibility mode, whether it is expected to reduce to ON
.
This function returns true if any of the two condition is satisfied:
ON
.AUTO
but inferred to be ON
.Conceptually, the opposite of this function is whether requested compatibility mode is expected to be OFF
, which would occur if any of the two condition is satisfied:
OFF
.AUTO
but inferred to be OFF
.compat_mode | Compatibility mode. |
Definition at line 263 of file defaults.hpp.
|
inlinestatic |
Get the default task size used for parallel IO operations.
Set the default value using kvikio::default::task_size_reset()
or by setting the KVIKIO_TASK_SIZE
environment variable. If not set, the default value is 4 MiB.
Definition at line 335 of file defaults.hpp.
|
inlinestatic |
Reset the default task size used for parallel IO operations.
nbytes | The default task size in bytes. |
Definition at line 342 of file defaults.hpp.
|
inlinestatic |
Get the default thread pool.
Notice, it is not possible to change the default thread pool. KvikIO will always use the same thread pool however it is possible to change number of threads in the pool (see kvikio::default::thread_pool_nthreads_reset()
).
Definition at line 295 of file defaults.hpp.
|
inlinestatic |
Get the number of threads in the default thread pool.
Set the default value using kvikio::default::thread_pool_nthreads_reset()
or by setting the KVIKIO_NTHREADS
environment variable. If not set, the default value is 1.
Definition at line 305 of file defaults.hpp.
|
inlinestatic |
Reset the number of threads in the default thread pool. Waits for all currently running tasks to be completed, then destroys all threads in the pool and creates a new thread pool with the new number of threads. Any tasks that were waiting in the queue before the pool was reset will then be executed by the new threads. If the pool was paused before resetting it, the new pool will be paused as well.
nthreads | The number of threads to use. |
Definition at line 319 of file defaults.hpp.