Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any available Processing program profiler?

My project is coded in Processing, is there available profiler for Processing? If not, how to test the performance of Processing program?

Thanks and Best Regards

like image 505
Summer_More_More_Tea Avatar asked Jun 12 '11 15:06

Summer_More_More_Tea


People also ask

What is profiler in programming?

Program profiling is an advanced optimization technique to reorder procedures, or code within procedures, in ILE programs and service programs based on statistical data gathered while running the program.

Does VS code have a profiler?

There is a whole list of code profilers for the big VS, (only . NET and managed c++).. With the 'real' VisualStudio you have pretty advanced profiling tools, supporting many languages, that MSVS supports.

How do I use profiler tool?

Open the Performance Profiler by choosing Debug > Performance Profiler (or Alt + F2). For more information on using the CPU Usage or Memory usage tool in the Performance Profiler vs. the debugger-integrated tools, see Run profiling tools with or without the debugger.


1 Answers

I use VisualVM to profile my Processing applications. Simply navigate to the appropriate process in VisualVM while your sketch is running. Processing is fundamentally Java, so most Java tools will work on your Processing apps.

EDIT: Processing.js sketches can also be profiled by using the Developer Tools extensions in browsers, just run a CPU profile.

like image 118
Nate Berkopec Avatar answered Sep 22 '22 03:09

Nate Berkopec