padding_and_phiZ (Calls: 3243, Time: 665.502 s)
Generated 19-Jun-2021 04:01:57 using performance time.
function in file /nfs/inm_phd/07/d07944009/2021/0618-proj6/simpleNN/MATLAB/cnn/padding_and_phiZ.m
Copy to new window for comparing multiple runs
Function Name | Function Type | Calls |
feedforward | function | 1947 |
Jv | function | 1296 |
Line Number | Code | Calls | Total Time | % Time | Time Plot |
6 | phiZ = phiZ(net.idx_phiZ{m}, :... | 3243 | 601.117 s | 90.3% | ![]() |
3 | phiZ = padding(model, Z, m, nu... | 3243 | 62.828 s | 9.4% | ![]() |
10 | phiZ = reshape(phiZ, h*h*d, []... | 3243 | 1.359 s | 0.2% | ![]() |
5 | phiZ = reshape(phiZ, [], num_d... | 3243 | 0.118 s | 0.0% | ![]() |
8 | h = model.wd_filter(m); | 3243 | 0.027 s | 0.0% | ![]() |
All other lines | 0.052 s | 0.0% | ![]() | ||
Totals | 665.502 s | 100% |
Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
padding_and_phiZ>padding | subfunction | 3243 | 62.794 s | 9.4% | ![]() |
Self time (built-ins, overhead, etc.) | 602.707 s | 90.6% | ![]() | ||
Totals | 665.502 s | 100% |
Total lines in function | 10 |
Non-code lines (comments, blank lines) | 4 |
Code lines (lines that can run) | 6 |
Code lines that did run | 6 |
Code lines that did not run | 0 |
Coverage (did run/can run) | 100.00 % |
time | Calls | line | |
---|---|---|---|
1 | function phiZ = padding_and_phiZ(model, net, Z, m, num_data) | ||
2 | |||
62.828 | 3243 | 3 | phiZ = padding(model, Z, m, num_data); |
4 | % Calculate phiZ | ||
0.118 | 3243 | 5 | phiZ = reshape(phiZ, [], num_data); |
601.117 | 3243 | 6 | phiZ = phiZ(net.idx_phiZ{m}, :); |
7 | |||
0.027 | 3243 | 8 | h = model.wd_filter(m); |
0.005 | 3243 | 9 | d = model.ch_input(m); |
1.359 | 3243 | 10 | phiZ = reshape(phiZ, h*h*d, []); |
Other subfunctions in this file are not included in this listing.