We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OK, first, there's a problem in this code:
if sys.version_info >= (3, 0): if file_name is None: file_name = b'out.prof' status = libprofiler.ProfilerStart(bytes(file_name, 'ASCII'))
b'out.prof' should be 'out.prof' (not an asci string). Converting an asci string in this way will result in an error.
b'out.prof'
'out.prof'
Second: what is pperf? I couldn't find such program in gperftools package (Arch name for Debian google-perftools). There's only pprof.
pperf
gperftools
google-perftools
pprof
This aside, when I try running yep.start() ... yep.stop() very little information is collected. When I then try:
yep.start()
yep.stop()
pprof $(which python) ./out.pprof
It does enter interactive mode, but doing top100 gives just 10 records, which are selected kind of at random...
top100
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OK, first, there's a problem in this code:
b'out.prof'
should be'out.prof'
(not an asci string). Converting an asci string in this way will result in an error.Second: what is
pperf
? I couldn't find such program ingperftools
package (Arch name for Debiangoogle-perftools
). There's onlypprof
.This aside, when I try running
yep.start()
...yep.stop()
very little information is collected. When I then try:It does enter interactive mode, but doing
top100
gives just 10 records, which are selected kind of at random...The text was updated successfully, but these errors were encountered: