Index of /acl/Textos/HerramientasComputacionalesEnLinux/Lenguajes/HerramientasProgramacion/GPROF
Name
Last modified
Size
Description
Parent Directory
-
EjemploUso/
2023-01-13 14:57
-
README.html
2017-03-14 09:57
769
gprof.pdf
2017-03-14 09:49
239K
GPROF
Para hacer este análisis de rendimiento, hacer:
$ g++ -g -pg -O0 *.cpp
$ ./a.out
$ gprof -c -z a.out gmon.out > sal.txt
el archivo sal.txt contiene el análisis de rendimiento detallado.