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
The nprofile command line utility
Calling Sequence
nprofile [sortmode] < filename
nprofile -callgraph [sortmode] < filename
Parameters
[sortmode]
-
valid '-' option describing the sort mode (see below)
filename
name of file containing the profile
-callgraph
option specifying generation of a callgraph instead of a profile
Description
nprofile (or nprofile.exe on Windows) is a command line executable that can be used to efficiently process huge profile files, as generated by kernelopts(profile=true). This command includes all functionality currently available in the Maple exprofile and excallgraph functions.
The utility lives under the Maple installation directory in the specific Maple binary directory for the current platform. For example, on 32-bit Linux this would be <Maple install directory>/bin.IBM_INTEL_LINUX.
The data sort mode can be specified with a '-' option. The names have been chosen to be compatible with exprofile and excallgraph:
-alpha - sort table alphabetically by name of function
-ralpha - sort table reverse alphabetically by name of function
-time - sort table by increasing usage of cpu time
-rtime - sort table by decreasing usage of cpu time
-words - sort table by increasing usage of memory
-rwords - sort table by decreasing usage of memory
-calls - sort table by increasing number of calls to each function
-rcalls - sort table by decreasing number of calls to each function
-load - sort table by increasing memory^2*time
-rload - sort table by decreasing memory^2*time
The default sort mode for a profile is -rload.
For a description of the output format, see exprofile.
See Also
excallgraph, exprofile, kernelopts
Download Help Document