From d17b33131c14864bd1eae275f49a3f148e21cf29 Mon Sep 17 00:00:00 2001 From: Leo Chan Date: Thu, 22 Oct 2020 01:53:21 -0400 Subject: Squashed commit of the sb-vbs branch. Includes the SD-VBS benchmarks modified to: - Use libextra to loop as realtime jobs - Preallocate memory before starting their main computation - Accept input via stdin instead of via argc Does not include the SD-VBS matlab code. Fixes libextra execution in LITMUS^RT. --- .gitignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 1824f51..057a48b 100644 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,16 @@ # Ignore misc debug and build outputs **/.gdb_history + +**/mser +**/multi_ncut +**/stitch +**/svm +**/texture_synthesis +**/tracking +**/preload +**/sift +**/localization +**/disparity +**/12345.txt +!SD-VBS/**/*.txt -- cgit v1.2.2 From 163c440444c74a4e0bbe0a8db3d1ca725413994b Mon Sep 17 00:00:00 2001 From: Joshua Bakita Date: Thu, 22 Oct 2020 03:17:31 -0400 Subject: Make SD-VBS compatible with run_bench.sh and cleanup SD-VBS: - Run silently - Fix some whitespace errors - Don't duplicate extra.h - Auto-detect if building with LITMUS-RT - Disable result checking - Add helper symlinks Misc: - Remove unused code from libextra - Set some missing rt_param fields in libextra - Disable CSV info dump from computeSMTslowdown.sh - Widen scope of .gitignore on .txt files - Include list of 2MB DIS pair benchmarks and inputs --- .gitignore | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 057a48b..0e0db96 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,9 @@ *.txt.clean # But not benchmark lists !*Names.txt +# Special-case .txt handling for SD-VBS +**/12345.txt +!SD-VBS/benchmarks/**/*.txt # Ignore DIS benchmark binaries **/field @@ -40,12 +43,7 @@ **/statemate **/susan -# Ignore random walk benchmark -**/random_walk - -# Ignore misc debug and build outputs -**/.gdb_history - +# Ignore SD-VBS binaries **/mser **/multi_ncut **/stitch @@ -56,5 +54,10 @@ **/sift **/localization **/disparity -**/12345.txt -!SD-VBS/**/*.txt + +# Ignore random walk benchmark +**/random_walk + +# Ignore misc temporary files +**/.gdb_history +*.swp -- cgit v1.2.2