| 71 | |
| 72 | |
| 73 | TEST_F(AllocationPoolTest, initialize_test) { |
| 74 | std::size_t size_buffers_host = 4000000; |
| 75 | std::size_t num_buffers_host = 100; |
| 76 | std::size_t size_buffers_pinned = 4000000; |
| 77 | std::size_t num_buffers_pinned = 100; |
| 78 | bool map_ucx = false; |
| 79 | |
| 80 | auto context = CreateUcpContext(); |
| 81 | ral::memory::set_allocation_pools(size_buffers_host, num_buffers_host, |
| 82 | size_buffers_pinned, num_buffers_pinned, map_ucx, context); |
| 83 | |
| 84 | ral::memory::empty_pools(); |
| 85 | ucp_cleanup(context); |
| 86 | } |
| 87 | |
| 88 | |
| 89 | TEST_F(AllocationPoolTest, mem_map_test) { |
nothing calls this directly
no test coverage detected