Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
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