@bjodom @MoushumiMaria @pmpeter1 @yuguen-intel
Can you please review this change (DPC++)
Description
A new routine had been created to handle double precision numbers. Mandelbrot::CalculateDP
The Method Mandelbrot::Calculate did not call this new method, for some reason, it seems it called itself and recursed into a stack overflow.
void Mandelbrot::Calculate(uint32_t* pixels) {
if (singlePrecision)
CalculateSP(pixels);
else
Calculate(pixels); //<--- Should be CalculateDP(pixels);
}
@bjodom @MoushumiMaria @pmpeter1 @yuguen-intel Can you please review this change (DPC++)
Description A new routine had been created to handle double precision numbers. Mandelbrot::CalculateDP
The Method Mandelbrot::Calculate did not call this new method, for some reason, it seems it called itself and recursed into a stack overflow.
Fixes Issue# ISSUE 2263
External Dependencies
None
Type of change
How Has This Been Tested?
Term coverage analysis was done for the lines changed.