CodeTools[Profiling]
GetProfileTable
get the raw profiling data associated with a procedure
Calling Sequence
Parameters
Description
Examples
GetProfileTable(p, opts)
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
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[8] 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.
a := proc(x) if (x > 1) then return 1; else return 0; end if; end proc:
with⁡CodeToolsProfiling:
Profile⁡a
a⁡0
0
GetProfileTable⁡a
103103000100
GetProfileTable⁡a,output=table
table⁡_Inert_ASSIGNEDNAME⁡a,PROC=103103000100
a⁡2
1
206206100100
See Also
CodeTools[Profiling][Build]
CodeTools[Profiling][Merge]
CodeTools[Profiling][PrintProfiles]
CodeTools[Profiling][Profile]
rtable
Download Help Document