|
Size: 872
Comment:
|
Size: 1510
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 4: | Line 4: |
| Each face had a normal vector and area stored in the nx,ny,nz,orig_area members of the FACE struct. | mris_fix_topology has a hot loop, which does unnecessary calculations of the face normals |
| Line 6: | Line 6: |
| mris_fix_topology has a hot loop | mrisComputeOptimalRetessellation and mrisComputeRandomRetessellation have a similar structure |
| Line 8: | Line 8: |
| ___: mrisComputeOptimalRetessellation and mrisComputeRandomRetessellation have a similar structure | _:_: then it loops over a set of patches, or iterates on one patch. For each patch it calls |
| Line 10: | Line 10: |
| ___: ___: a computeDefectContext is constructed here | _:_:_: mrisDefectPatchFitness, which calls |
| Line 12: | Line 12: |
| ___:___: then it loops over a set of patches, or iterates on one patch. For each patch it calls | _:_:_:_: mrisComputeDefectLogLikelihood, which calls |
| Line 14: | Line 14: |
| ___:___:___: mrisDefectPatchFitness, which calls | _:_:_:_:_: mrisComputeDefectMRILogUnlikelihood, which |
| Line 16: | Line 16: |
| ___:___:___: ___: mrisComputeDefectLogLikelihood, which calls | _:_:_:_:_:_: does an expensive computation all the face normals for ALL the faces |
| Line 18: | Line 18: |
| ___:___:___: ___: ___: mrisComputeDefectMRILogUnlikelihood, which | _:_:_:_:_:_: does two other expensive steps, which only use a few of the face normals |
| Line 20: | Line 20: |
| ___:___:___: ___: ___:___: does an expensive computation all the face normals for ALL the faces | To simplify, the original code does this |
| Line 22: | Line 22: |
| ___:___:___: ___: ___:___: does two other expensive steps, which only use a few of the face normals | loop for all fno normal[fno] = f (inputs) for a few fno use normal[fno] change some inputs end loop change some inputs use some normal[fno] Since only a few of the face normals are used, it is a waste of time to calculate all of them every time around the loop! This is replaced by code that does loop for all fno __normal[fno].deferred = true__ for a few fno __if normal[fno].deferred normal[fno] = f (inputs); normal[fno].deferred = false__ change some inputs end loop __for a few fno if normal[fno].deferred normal[fno] = f (inputs); normal[fno].deferred = false__ change some inputs use some normal[fno] |
A variety of techniques have been used.
Deferring calculations until needed
mris_fix_topology has a hot loop, which does unnecessary calculations of the face normals
mrisComputeOptimalRetessellation and mrisComputeRandomRetessellation have a similar structure
_:_: then it loops over a set of patches, or iterates on one patch. For each patch it calls
_:_:_: mrisDefectPatchFitness, which calls
_:_:_:_: mrisComputeDefectLogLikelihood, which calls
_:_:_:_:_: mrisComputeDefectMRILogUnlikelihood, which
_:_:_:_:_:_: does an expensive computation all the face normals for ALL the faces
_:_:_:_:_:_: does two other expensive steps, which only use a few of the face normals
To simplify, the original code does this
- loop
- for all fno normal[fno] = f (inputs) for a few fno use normal[fno] change some inputs
Since only a few of the face normals are used, it is a waste of time to calculate all of them every time around the loop!
This is replaced by code that does
- loop
for all fno normal[fno].deferred = true
for a few fno if normal[fno].deferred normal[fno] = f (inputs); normal[fno].deferred = false change some inputs
for a few fno if normal[fno].deferred normal[fno] = f (inputs); normal[fno].deferred = false change some inputs use some normal[fno]
