|
OK, but that's only a 2x2 computation matrix, which is a much simpler computation than that used in the demo, which is a 5x5 computation. For a comparison, here's what my notebook computer requires (not using CUDA) in seconds for 2x2, 3x3 and 5x5 matrices: slope(s,2): 14.064 slope(s,3): 24.615 slope(s,5): 55.751 ... this is a 64-bit machine with a slower processor and slow disk drive with the above timings done immediately one after the other so no doubt there was some slight benefit from RAM caching in Windows, etc., for the 3x3 and 5x5 computations. For an illustration of what the formulae are and how it is that a 5x5 matrix takes longer, see the supercomputer gis video, which discusses that and gives the montara demo using a 5x5 matrix.
|