GetProfileTable - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


CodeTools[Profiling]

  

GetProfileTable

  

get the raw profiling data associated with a procedure

 

Calling Sequence

Parameters

Description

Examples

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[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.

Examples

a := proc(x)
    if (x > 1) then
        return 1;
    else
        return 0;
    end if;
end proc:

withCodeToolsProfiling:

Profilea

a0

0

(1)

GetProfileTablea

103103000100

(2)

GetProfileTablea,output=table

table_Inert_ASSIGNEDNAMEa,PROC=103103000100

(3)

a2

1

(4)

GetProfileTablea

206206100100

(5)

See Also

CodeTools[Profiling]

CodeTools[Profiling][Build]

CodeTools[Profiling][Merge]

CodeTools[Profiling][PrintProfiles]

CodeTools[Profiling][Profile]

rtable