I wrote a common-lisp program and it is slower than it needs to be. Now I want to analyse my code to see where my time is going. Are there any tools that people use?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are using SLIME, there are a few profiling commands you could use besides
timeand implementation specific tools.Use
M-x slime-toggle-profile-fdefinitionto (un)profile specific functions,M-x slime-profile-reportto show the results, andM-x slime-profile-resetfor resetting.