All Classes Namespaces Functions Enumerations Enumerator Modules Pages
bounce_buffer.hpp
1 /*
2  * Copyright (c) 2024-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 #pragma once
17 
18 #include <stack>
19 
20 #include <kvikio/defaults.hpp>
21 
22 namespace kvikio {
23 
30 class AllocRetain {
31  private:
32  std::mutex _mutex{};
33  // Stack of free allocations
34  std::stack<void*> _free_allocs{};
35  // The size of each allocation in `_free_allocs`
36  std::size_t _size{defaults::bounce_buffer_size()};
37 
38  public:
42  class Alloc {
43  private:
44  AllocRetain* _manager;
45  void* _alloc;
46  std::size_t const _size;
47 
48  public:
49  Alloc(AllocRetain* manager, void* alloc, std::size_t size);
50  Alloc(Alloc const&) = delete;
51  Alloc& operator=(Alloc const&) = delete;
52  Alloc(Alloc&& o) = delete;
53  Alloc& operator=(Alloc&& o) = delete;
54  ~Alloc() noexcept;
55  void* get() noexcept;
56  void* get(std::ptrdiff_t offset) noexcept;
57  std::size_t size() noexcept;
58  };
59 
60  AllocRetain() = default;
61 
62  // Notice, we do not clear the allocations at destruction thus the allocations leaks
63  // at exit. We do this because `AllocRetain::instance()` stores the allocations in a
64  // static stack that are destructed below main, which is not allowed in CUDA:
65  // <https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#initialization>
66  ~AllocRetain() noexcept = default;
67 
68  private:
76  std::size_t _clear();
77 
83  void _ensure_alloc_size();
84 
85  public:
86  [[nodiscard]] Alloc get();
87 
88  void put(void* alloc, std::size_t size);
89 
95  std::size_t clear();
96 
97  KVIKIO_EXPORT static AllocRetain& instance();
98 
99  AllocRetain(AllocRetain const&) = delete;
100  AllocRetain& operator=(AllocRetain const&) = delete;
101  AllocRetain(AllocRetain&& o) = delete;
102  AllocRetain& operator=(AllocRetain&& o) = delete;
103 };
104 
105 } // namespace kvikio
An host memory allocation.
Singleton class to retain host memory allocations.
std::size_t clear()
Free all retained allocations.
static std::size_t bounce_buffer_size()
Get the size of the bounce buffer used to stage data in host memory.
KvikIO namespace.
Definition: batch.hpp:27