Skip to content

Commit 89db625

Browse files
committed
add fixedprovider based benchmarks
1 parent 9fb88d5 commit 89db625

File tree

2 files changed

+135
-1
lines changed

2 files changed

+135
-1
lines changed

benchmark/benchmark.cpp

+75
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,81 @@ UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark, scalable_pool_uniform)
136136

137137
#endif
138138

139+
UMF_BENCHMARK_TEMPLATE_DEFINE(multiple_malloc_free_benchmark,
140+
proxy_pool_fixedprovider, fixed_alloc_size,
141+
pool_allocator<proxy_pool<fixed_provider>>);
142+
143+
UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark,
144+
proxy_pool_fixedprovider)
145+
->Apply(&default_multiple_alloc_fix_size)
146+
->Apply(&singlethreaded);
147+
148+
UMF_BENCHMARK_TEMPLATE_DEFINE(multiple_malloc_free_benchmark, fixed_provider,
149+
fixed_alloc_size,
150+
provider_allocator<fixed_provider>);
151+
UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark, fixed_provider)
152+
->Apply(&default_multiple_alloc_fix_size)
153+
->Apply(&singlethreaded);
154+
155+
UMF_BENCHMARK_TEMPLATE_DEFINE(multiple_malloc_free_benchmark,
156+
disjoint_pool_fix_fixedprovider, fixed_alloc_size,
157+
pool_allocator<disjoint_pool<fixed_provider>>);
158+
UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark,
159+
disjoint_pool_fix_fixedprovider)
160+
->Apply(&default_multiple_alloc_fix_size)
161+
->Apply(&multithreaded);
162+
163+
UMF_BENCHMARK_TEMPLATE_DEFINE(multiple_malloc_free_benchmark,
164+
disjoint_pool_uniform_fixedprovider,
165+
uniform_alloc_size,
166+
pool_allocator<disjoint_pool<fixed_provider>>);
167+
UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark,
168+
disjoint_pool_uniform_fixedprovider)
169+
->Apply(&default_multiple_alloc_uniform_size)
170+
->Apply(&singlethreaded);
171+
// TODO: change to multithreaded
172+
//->Apply(&multithreaded);
173+
174+
#ifdef UMF_POOL_JEMALLOC_ENABLED
175+
UMF_BENCHMARK_TEMPLATE_DEFINE(multiple_malloc_free_benchmark,
176+
jemalloc_pool_fixedprovider, fixed_alloc_size,
177+
pool_allocator<jemalloc_pool<fixed_provider>>);
178+
UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark, jemalloc_pool_fix)
179+
->Apply(&default_multiple_alloc_fix_size)
180+
->Apply(&multithreaded);
181+
182+
UMF_BENCHMARK_TEMPLATE_DEFINE(multiple_malloc_free_benchmark,
183+
jemalloc_pool_uniform_fixedprovider,
184+
uniform_alloc_size,
185+
pool_allocator<jemalloc_pool<fixed_provider>>);
186+
UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark, jemalloc_pool_uniform)
187+
->Apply(&default_multiple_alloc_uniform_size)
188+
->Apply(&multithreaded);
189+
190+
#endif
191+
192+
#ifdef UMF_POOL_SCALABLE_ENABLED
193+
UMF_BENCHMARK_TEMPLATE_DEFINE(multiple_malloc_free_benchmark,
194+
scalable_pool_fix_fixedprovider, fixed_alloc_size,
195+
pool_allocator<scalable_pool<fixed_provider>>);
196+
197+
UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark,
198+
scalable_pool_fix_fixedprovider)
199+
->Apply(&default_multiple_alloc_fix_size)
200+
->Apply(&multithreaded);
201+
202+
UMF_BENCHMARK_TEMPLATE_DEFINE(multiple_malloc_free_benchmark,
203+
scalable_pool_uniform_fixedprovider,
204+
uniform_alloc_size,
205+
pool_allocator<scalable_pool<fixed_provider>>);
206+
207+
UMF_BENCHMARK_REGISTER_F(multiple_malloc_free_benchmark,
208+
scalable_pool_uniform_fixedprovider)
209+
->Apply(&default_multiple_alloc_uniform_size)
210+
->Apply(&multithreaded);
211+
212+
#endif
213+
139214
//BENCHMARK_MAIN();
140215
int main(int argc, char **argv) {
141216
if (initAffinityMask()) {

benchmark/benchmark_umf.hpp

+60-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
#ifdef UMF_POOL_SCALABLE_ENABLED
2020
#include <umf/pools/pool_scalable.h>
2121
#endif
22+
#include <umf/providers/provider_fixed_memory.h>
2223
#include <umf/providers/provider_os_memory.h>
2324

2425
#ifdef UMF_POOL_JEMALLOC_ENABLED
@@ -145,7 +146,9 @@ struct os_provider : public provider_interface {
145146
umfOsMemoryProviderParamsDestroy(handle);
146147
};
147148

148-
return {static_cast<void *>(raw_params), deleter};
149+
return {static_cast<provider_interface::params_ptr::element_type *>(
150+
raw_params),
151+
deleter};
149152
}
150153

151154
umf_memory_provider_ops_t *
@@ -155,6 +158,62 @@ struct os_provider : public provider_interface {
155158
static std::string name() { return "os_provider"; }
156159
};
157160

161+
struct fixed_provider : public provider_interface {
162+
private:
163+
char *mem = NULL;
164+
const size_t size = 1024 * 1024 * 1024; // 1GB
165+
public:
166+
virtual void SetUp(::benchmark::State &state) override {
167+
if (state.thread_index() != 0) {
168+
return;
169+
}
170+
171+
if (!mem) {
172+
mem = new char[size];
173+
}
174+
175+
provider_interface::SetUp(state);
176+
}
177+
178+
virtual void TearDown(::benchmark::State &state) override {
179+
if (state.thread_index() != 0) {
180+
return;
181+
}
182+
183+
delete[] mem;
184+
mem = nullptr;
185+
186+
provider_interface::TearDown(state);
187+
}
188+
189+
provider_interface::params_ptr
190+
getParams(::benchmark::State &state) override {
191+
umf_fixed_memory_provider_params_handle_t raw_params = nullptr;
192+
umfFixedMemoryProviderParamsCreate(&raw_params, mem, size);
193+
if (!raw_params) {
194+
state.SkipWithError("Failed to create fixed provider params");
195+
return {nullptr, [](void *) {}};
196+
}
197+
198+
// Use a lambda as the custom deleter
199+
auto deleter = [](void *p) {
200+
auto handle =
201+
static_cast<umf_fixed_memory_provider_params_handle_t>(p);
202+
umfFixedMemoryProviderParamsDestroy(handle);
203+
};
204+
205+
return {static_cast<provider_interface::params_ptr::element_type *>(
206+
raw_params),
207+
deleter};
208+
}
209+
210+
umf_memory_provider_ops_t *
211+
getOps([[maybe_unused]] ::benchmark::State &state) override {
212+
return umfFixedMemoryProviderOps();
213+
}
214+
static std::string name() { return "fixed_provider"; }
215+
};
216+
158217
template <typename Provider>
159218
struct proxy_pool : public pool_interface<Provider> {
160219
umf_memory_pool_ops_t *

0 commit comments

Comments
 (0)