Commit dbd2927c authored by Peter Eastman's avatar Peter Eastman
Browse files

Fixed a bus error caused by trying to clean up things that were never initialized

parent dd0574f6
...@@ -65,7 +65,6 @@ void testGaussian() { ...@@ -65,7 +65,6 @@ void testGaussian() {
skew += value*value*value; skew += value*value*value;
kurtosis += value*value*value*value; kurtosis += value*value*value*value;
} }
gpuShutDown(gpu);
mean /= numValues; mean /= numValues;
var /= numValues; var /= numValues;
skew /= numValues; skew /= numValues;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment