File: PerfTest_MallocFree.cpp

package info (click to toggle)
kokkos 5.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 15,140 kB
  • sloc: cpp: 225,293; sh: 1,250; python: 78; makefile: 16; fortran: 4; ansic: 2
file content (102 lines) | stat: -rw-r--r-- 2,764 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
// SPDX-FileCopyrightText: Copyright Contributors to the Kokkos project

#include <Kokkos_Macros.hpp>
#ifdef KOKKOS_ENABLE_EXPERIMENTAL_CXX20_MODULES
import kokkos.core;
#else
#include <Kokkos_Core.hpp>
#endif
#include <benchmark/benchmark.h>
#include "Benchmark_Context.hpp"

namespace Benchmark {

// when the time will be recorded
enum class When { after_malloc, after_touch, after_free };

static void Impl(benchmark::State& state, const bool touch, const When when) {
  const size_t N = state.range(0);
  for (auto _ : state) {
    Kokkos::Timer timer;
    char* a_ptr = static_cast<char*>(Kokkos::kokkos_malloc("A", N));
    if (When::after_malloc == when) {
      state.SetIterationTime(timer.seconds());
    }
    if (touch) {
      constexpr size_t STRIDE = 1024;  // stride for touching the allocation.
      // this is intended to be a safe value that would touch every "page", but
      // not saturate the memory bandwidth
      Kokkos::parallel_for(
          N / STRIDE,
          KOKKOS_LAMBDA(const size_t& i) { a_ptr[i * STRIDE] = i * STRIDE; });
      Kokkos::fence();
    }
    if (When::after_touch == when) {
      state.SetIterationTime(timer.seconds());
    }
    Kokkos::kokkos_free(a_ptr);
    if (When::after_free == when) {
      state.SetIterationTime(timer.seconds());
    }
  }

  state.counters[KokkosBenchmark::benchmark_fom("rate")] =
      benchmark::Counter(state.iterations(), benchmark::Counter::kIsRate);
}

static void Malloc(benchmark::State& state) {
  Impl(state, false, When::after_malloc);
}

static void MallocFree(benchmark::State& state) {
  Impl(state, false, When::after_free);
}

static void MallocTouch(benchmark::State& state) {
  Impl(state, true, When::after_touch);
}

static void MallocTouchFree(benchmark::State& state) {
  Impl(state, true, When::after_free);
}

#ifdef KOKKOS_IMPL_32BIT
constexpr int test_range = 30;
#else
#ifndef KOKKOS_ENABLE_LARGE_MEM_TESTS
constexpr int test_range = 31;
#else
constexpr int test_range = 32;
#endif
#endif

BENCHMARK(Malloc)
    ->ArgName("N")
    ->RangeMultiplier(16)
    ->Range(1, int64_t(1) << test_range)
    ->UseManualTime()
    ->Unit(benchmark::kMicrosecond);

BENCHMARK(MallocFree)
    ->ArgName("N")
    ->RangeMultiplier(16)
    ->Range(1, int64_t(1) << test_range)
    ->UseManualTime()
    ->Unit(benchmark::kMicrosecond);

BENCHMARK(MallocTouch)
    ->ArgName("N")
    ->RangeMultiplier(16)
    ->Range(1, int64_t(1) << test_range)
    ->UseManualTime()
    ->Unit(benchmark::kMicrosecond);

BENCHMARK(MallocTouchFree)
    ->ArgName("N")
    ->RangeMultiplier(16)
    ->Range(1, int64_t(1) << test_range)
    ->UseManualTime()
    ->Unit(benchmark::kMicrosecond);

}  // namespace Benchmark