#include #include #include #include using c10::intrusive_ptr; using c10::intrusive_ptr_target; using c10::make_intrusive; namespace { // Foo uses intrusive ptr class Foo : public intrusive_ptr_target { public: Foo(int param_) : param(param_) {} int param; }; class Bar : public std::enable_shared_from_this { public: Bar(int param_) : param(param_) {} int param; }; static void BM_IntrusivePtrCtorDtor(benchmark::State& state) { intrusive_ptr var = make_intrusive(0); while (state.KeepRunning()) { // NOLINTNEXTLINE(performance-unnecessary-copy-initialization) volatile intrusive_ptr var2 = var; } } BENCHMARK(BM_IntrusivePtrCtorDtor); static void BM_SharedPtrCtorDtor(benchmark::State& state) { std::shared_ptr var = std::make_shared(0); while (state.KeepRunning()) { // NOLINTNEXTLINE(performance-unnecessary-copy-initialization) volatile std::shared_ptr var2 = var; } } BENCHMARK(BM_SharedPtrCtorDtor); static void BM_IntrusivePtrArray(benchmark::State& state) { intrusive_ptr var = make_intrusive(0); const size_t kLength = state.range(0); std::vector> vararray(kLength); while (state.KeepRunning()) { for (const auto i : c10::irange(kLength)) { vararray[i] = var; } for (const auto i : c10::irange(kLength)) { vararray[i].reset(); } } } // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables,cppcoreguidelines-avoid-magic-numbers) BENCHMARK(BM_IntrusivePtrArray)->RangeMultiplier(2)->Range(16, 4096); static void BM_SharedPtrArray(benchmark::State& state) { std::shared_ptr var = std::make_shared(0); const size_t kLength = state.range(0); std::vector> vararray(kLength); while (state.KeepRunning()) { for (const auto i : c10::irange(kLength)) { vararray[i] = var; } for (const auto i : c10::irange(kLength)) { vararray[i].reset(); } } } // NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables,cppcoreguidelines-avoid-magic-numbers) BENCHMARK(BM_SharedPtrArray)->RangeMultiplier(2)->Range(16, 4096); static void BM_IntrusivePtrExclusiveOwnership(benchmark::State& state) { while (state.KeepRunning()) { volatile auto var = make_intrusive(0); } } BENCHMARK(BM_IntrusivePtrExclusiveOwnership); static void BM_SharedPtrExclusiveOwnership(benchmark::State& state) { while (state.KeepRunning()) { volatile auto var = std::make_shared(0); } } BENCHMARK(BM_SharedPtrExclusiveOwnership); } // namespace BENCHMARK_MAIN();