19 #include <sys/types.h>
24 #include <system_error>
27 #include <kvikio/buffer.hpp>
28 #include <kvikio/cufile/config.hpp>
30 #include <kvikio/error.hpp>
31 #include <kvikio/parallel_operation.hpp>
32 #include <kvikio/posix_io.hpp>
33 #include <kvikio/shim/cufile.hpp>
34 #include <kvikio/stream.hpp>
35 #include <kvikio/utils.hpp>
47 int _fd_direct_on{-1};
48 int _fd_direct_off{-1};
49 bool _initialized{
false};
51 mutable std::size_t _nbytes{0};
52 CUfileHandle_t _handle{};
66 static constexpr mode_t m644 = S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH;
86 const std::string& flags =
"r",
104 [[nodiscard]]
bool closed() const noexcept;
130 [[nodiscard]]
int fd() const noexcept;
150 [[nodiscard]] std::
size_t nbytes() const;
182 std::
size_t read(
void* devPtr_base,
184 std::
size_t file_offset,
185 std::
size_t devPtr_offset,
186 bool sync_default_stream = true);
219 std::
size_t write(const
void* devPtr_base,
221 std::
size_t file_offset,
222 std::
size_t devPtr_offset,
223 bool sync_default_stream = true);
255 std::future<std::
size_t>
pread(
void* buf,
257 std::
size_t file_offset = 0,
258 std::
size_t task_size =
defaults::task_size(),
259 std::
size_t gds_threshold =
defaults::gds_threshold(),
260 bool sync_default_stream = true);
292 std::future<std::
size_t>
pwrite(const
void* buf,
294 std::
size_t file_offset = 0,
295 std::
size_t task_size =
defaults::task_size(),
296 std::
size_t gds_threshold =
defaults::gds_threshold(),
297 bool sync_default_stream = true);
335 off_t* file_offset_p,
336 off_t* devPtr_offset_p,
337 ssize_t* bytes_read_p,
367 off_t file_offset = 0,
368 off_t devPtr_offset = 0,
369 CUstream stream =
nullptr);
408 off_t* file_offset_p,
409 off_t* devPtr_offset_p,
410 ssize_t* bytes_written_p,
440 off_t file_offset = 0,
441 off_t devPtr_offset = 0,
442 CUstream stream =
nullptr);
Handle of an open file registered with cufile.
void close() noexcept
Deregister the file and close the two files.
FileHandle(const FileHandle &)=delete
FileHandle support move semantic but isn't copyable.
std::future< std::size_t > pread(void *buf, std::size_t size, std::size_t file_offset=0, std::size_t task_size=defaults::task_size(), std::size_t gds_threshold=defaults::gds_threshold(), bool sync_default_stream=true)
Reads specified bytes from the file into the device or host memory in parallel.
void read_async(void *devPtr_base, std::size_t *size_p, off_t *file_offset_p, off_t *devPtr_offset_p, ssize_t *bytes_read_p, CUstream stream)
Reads specified bytes from the file into the device memory asynchronously.
CUfileHandle_t handle()
Get the underlying cuFile file handle.
int fd_open_flags() const
Get the flags of one of the file descriptors (see open(2))
std::size_t write(const void *devPtr_base, std::size_t size, std::size_t file_offset, std::size_t devPtr_offset, bool sync_default_stream=true)
Writes specified bytes from the device memory into the file.
bool is_compat_mode_preferred_for_async() const noexcept
Returns true if the compatibility mode is expected to be ON for the asynchronous I/O on this file.
bool is_compat_mode_preferred() const noexcept
Returns true if the compatibility mode is expected to be ON for this file.
bool closed() const noexcept
Whether the file is closed according to its initialization status.
FileHandle(const std::string &file_path, const std::string &flags="r", mode_t mode=m644, CompatMode compat_mode=defaults::compat_mode())
Construct a file handle from a file path.
int fd() const noexcept
Get one of the file descriptors.
void write_async(void *devPtr_base, std::size_t *size_p, off_t *file_offset_p, off_t *devPtr_offset_p, ssize_t *bytes_written_p, CUstream stream)
Writes specified bytes from the device memory into the file asynchronously.
std::future< std::size_t > pwrite(const void *buf, std::size_t size, std::size_t file_offset=0, std::size_t task_size=defaults::task_size(), std::size_t gds_threshold=defaults::gds_threshold(), bool sync_default_stream=true)
Writes specified bytes from device or host memory into the file in parallel.
std::size_t nbytes() const
Get the file size.
std::size_t read(void *devPtr_base, std::size_t size, std::size_t file_offset, std::size_t devPtr_offset, bool sync_default_stream=true)
Reads specified bytes from the file into the device memory.
Future of an asynchronous IO operation.
Singleton class of default values used throughout KvikIO.
static CompatMode compat_mode()
Return whether the KvikIO library is running in compatibility mode or not.
CompatMode
I/O compatibility mode.