diff options
| author | Joshua Bakita <jbakita@cs.unc.edu> | 2021-03-07 19:14:19 -0500 |
|---|---|---|
| committer | Joshua Bakita <jbakita@cs.unc.edu> | 2021-03-07 19:25:21 -0500 |
| commit | 899765845196007c695a2f858dbe3a41b8db4a2b (patch) | |
| tree | 98754916059357c0829fd8acc73130565d866ace /SD-VBS/benchmarks/sift | |
| parent | afcfb8ee7b005edeba8163f00ce5300cf77ede85 (diff) | |
SD-VBS: Fix memory leaks and tweak allocation bounds
- Fix leaks in localization, multi_ncut, svm, and texture_synthesis
- Lower preallocation for sift and texture_synthesis to match memory
profile with QCIF
- Remove trailing whitespace in script_localization.c
Diffstat (limited to 'SD-VBS/benchmarks/sift')
| -rw-r--r-- | SD-VBS/benchmarks/sift/src/c/script_sift.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SD-VBS/benchmarks/sift/src/c/script_sift.c b/SD-VBS/benchmarks/sift/src/c/script_sift.c index ab39ae3..40b16d4 100644 --- a/SD-VBS/benchmarks/sift/src/c/script_sift.c +++ b/SD-VBS/benchmarks/sift/src/c/script_sift.c | |||
| @@ -7,7 +7,7 @@ Author: Sravanthi Kota Venkata | |||
| 7 | #include "sift.h" | 7 | #include "sift.h" |
| 8 | #include <malloc.h> | 8 | #include <malloc.h> |
| 9 | #include "extra.h" | 9 | #include "extra.h" |
| 10 | #define SIFT_MEM 1<<29 | 10 | #define SIFT_MEM 1<<24 |
| 11 | void normalizeImage(F2D* image) | 11 | void normalizeImage(F2D* image) |
| 12 | { | 12 | { |
| 13 | int i; | 13 | int i; |
