diff options
author | Joshua Bakita <jbakita@cs.unc.edu> | 2020-10-23 19:16:45 -0400 |
---|---|---|
committer | Joshua Bakita <jbakita@cs.unc.edu> | 2020-10-23 19:16:45 -0400 |
commit | e0c5691110f38f63d1955a711fc7f786333bcaad (patch) | |
tree | 39c26e944b42a38ac2bd2fb7ca3d514e2c799599 /SD-VBS/benchmarks/disparity/src | |
parent | 3498e3270194093098f9b8275901517fa2f9fa32 (diff) |
Fix heap corruption in the stitch benchmark and tweak some heap limits
Diffstat (limited to 'SD-VBS/benchmarks/disparity/src')
-rw-r--r-- | SD-VBS/benchmarks/disparity/src/c/script_disparity.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SD-VBS/benchmarks/disparity/src/c/script_disparity.c b/SD-VBS/benchmarks/disparity/src/c/script_disparity.c index 7d45ada..58a9e06 100644 --- a/SD-VBS/benchmarks/disparity/src/c/script_disparity.c +++ b/SD-VBS/benchmarks/disparity/src/c/script_disparity.c | |||
@@ -7,7 +7,8 @@ Author: Sravanthi Kota Venkata | |||
7 | #include "disparity.h" | 7 | #include "disparity.h" |
8 | #include <malloc.h> | 8 | #include <malloc.h> |
9 | #include "extra.h" | 9 | #include "extra.h" |
10 | #define DISPARITY_MEM 1<<24 | 10 | // Valgrind says we use ~67Mb for fullhd - round up to 128Mb |
11 | #define DISPARITY_MEM 1<<27 | ||
11 | int main(int argc, char* argv[]) | 12 | int main(int argc, char* argv[]) |
12 | { | 13 | { |
13 | SET_UP | 14 | SET_UP |