IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 20561


Ignore:
Timestamp:
Nov 6, 2008, 11:53:45 AM (18 years ago)
Author:
Paul Price
Message:

Adding log messages with time of important stages.

Location:
trunk/psModules/src/imcombine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/imcombine/pmSubtraction.c

    r20505 r20561  
    11311131    }
    11321132
     1133    psTimerStart("pmSubtractionConvolve");
     1134
    11331135    bool threaded = pmSubtractionThreaded(); // Running threaded?
    11341136
     
    13471349    }
    13481350
     1351    psLogMsg("psModules.imcombine", PS_LOG_INFO, "Convolve image: %f sec",
     1352             psTimerClear("pmSubtractionConvolve"));
     1353
    13491354    return true;
    13501355}
  • trunk/psModules/src/imcombine/pmSubtractionEquation.c

    r19765 r20561  
    665665    PM_ASSERT_SUBTRACTION_KERNELS_NON_NULL(kernels, false);
    666666
     667    psTimerStart("pmSubtractionCalculateEquation");
     668
    667669    // We iterate over each stamp, allocate the matrix and vectors if
    668670    // necessary, and then calculate those matrix/vectors.
     
    692694        return false;
    693695    }
     696
     697    psLogMsg("psModules.imcombine", PS_LOG_INFO, "Calculate equation: %f sec",
     698             psTimerClear("pmSubtractionCalculateEquation"));
     699
    694700
    695701    return true;
Note: See TracChangeset for help on using the changeset viewer.