Valgrind (profiler)

Valgrind is an instrumentation framework for building dynamic analysis tools. - Valgrind / git

Memcheck

valgrind --tool=memcheck --leak-check=full ./build/cg < test_21.txt , --l
eak-check=full

see valgrind: –-tool=memcheck: command not found

Alternatives

Supported platform

  • AMD64/Linux: up to and including AVX2. This is the primary development target and tends to be well supported.
  • x86/Linux: up to and including SSSE3, but not higher – no SSE4, AVX, AVX2. This target is in maintenance mode now..
  • and some others…

Additional tools

Notes: valgrind-3.13.0

Usage

valgrind --tool=callgrind -v --dump-every-bb=10000000  ./a.out < data/game_1/01.dat 

caption

Written on December 23, 2017, Last update on October 21, 2022
benchmarking profiler c++ debug-c++