Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
CodeTools[Profiling][GetProfileTable] - get the raw profiling data associated with a procedure
Calling Sequence
GetProfileTable(p, opts)
Parameters
p
-
procedure whose profiling data is to be returned
opts
equation(s) of the form output=value where value is one of default or table; specify the type of output
Description
The GetProfileTable(p) command returns the rtable of profiling data associated with the procedure p.
You may not need to access the profiling data at this level. It is usually more useful to use the table of data returned by a call to Build.
The format of the profiling data is as follows:
If p has n statements, the data is an rtable of n+1 rows and 3 columns. The first column is the count of the number of calls, the second is the time spent executing the statement (in milliseconds), and the third is the number of words allocated while executing the statement. The first row of the rtable is the total calls, time spent, and words used for the entire function. The rtable has datatype integer[4] and has order C_order.
If you specify the output = table option, GetProfileTable returns the rtable within a table. This table is compatible with the tables used by other Profiling functions, for example, Merge and PrintProfiles.
It is possible for a procedure name to be assigned a new procedure after the rtable of profiling data has been obtained. If this occurs, the rtable is no longer valid profiling data for that name. However, if other names exist that reference the procedure, then the rtable may still be useful.
Examples
a := proc(x) if (x > 1) then return 1; else return 0; end if; end proc:
See Also
CodeTools[Profiling], CodeTools[Profiling][Build], CodeTools[Profiling][Merge], CodeTools[Profiling][PrintProfiles], CodeTools[Profiling][Profile], rtable
Download Help Document