← Index
Performance Profile   « block view • line view • sub view »
For /wise/base/deliv/dev/bin/framedepth
  Run on Fri May 28 15:23:26 2010
Reported on Fri May 28 15:26:30 2010

File/wise/base/deliv/dev/lib/perl/WISE.pm
Statements Executed5
Total Time0.00403 seconds

Subroutines — ordered by exclusive time
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1110.155790.20119WISE::import

LineStmts.Exclusive
Time
Avg.Code
1
2
3# set the version
411.0e-61.0e-6$WISE::VERSION = '1.00';
5
6# Main loader of standard PDL package
7
8
# spent 201ms (156+45.4) within WISE::import which was called # once (156ms+45.4ms) at line 26 of /wise/base/deliv/dev/lib/perl/WISE/PgAitoff.pm
sub WISE::import {
9
1012.0e-62.0e-6my $pkg = (caller())[0];
1110.004020.00402eval <<"EOD";
# spent 278µs making 6 calls to Exporter::import, avg 46µs/call # spent 28µs making 1 call to Exporter::Lite::import # spent 20µs making 4 calls to import, avg 5µs/call
12
13package $pkg;
14
15# Load the fundamental packages
16use WISE::Release;
17use WISE::Time;
18use WISE::Pars;
19use WISE::Utils;
20use WISE::IOUtils;
21use WISE::IPACTbl;
22use WISE::FITSIO;
23#use WISE::FITSIO::PDL;
24use WISE::Dumper;
25use WISE::CoUtils;
26use WISE::Release;
27use WISE::Wrap;
28
29EOD
30
3113.0e-63.0e-6die $@ if $@;
32
33}
34
35package WISE;
36
37# Exit with OK status
38
3914.0e-64.0e-61;
40