IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 11, 2012, 10:16:48 AM (14 years ago)
Author:
bills
Message:

Fix problems with IPP threading. In psThreadPoolWait wait until all threads have
finished before returning even if one of the threads has a fault.
Return false if any thread faults. Also add a new argument bool harvestOnFailure
which tells psThreadPoolWait to harvest the done jobs if there is a failure.
Many functions previously used psThreadPoolWait(harvest = false) because they
wanted to examine the jobs structs afterwards. However they weren't cleaning up the
jobs in the failure case.
These now call psThreadPoolWait(harvest = false, harvestOnFailure = true)
which causes the jobs to be cleaned up on fault. These lingering jobs were the
cause of the "Unknown task" failure in psImageConvolve*
Also changed psphotReadout to check for failure of psphotGuessModels and return
to the caller. This yields quality = 3007

File:
1 edited

Legend:

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

    r32695 r33089  
    905905        }
    906906    }
    907     if (!psThreadPoolWait(true)) {
     907    if (!psThreadPoolWait(true, true)) {
    908908        psError(psErrorCodeLast(), false, "Error waiting for threads.");
    909909        return false;
     
    14271427    }
    14281428
    1429     if (!psThreadPoolWait(false)) {
     1429    if (!psThreadPoolWait(false, true)) {
    14301430        psError(psErrorCodeLast(), false, "Error waiting for threads.");
    14311431        return false;
Note: See TracChangeset for help on using the changeset viewer.