From 647194069bd149f9c3897ac50a5c0033eda4db34 Mon Sep 17 00:00:00 2001 From: "Corey J. Nolet" Date: Sat, 1 Oct 2022 22:38:01 -0400 Subject: [PATCH] Making sure nn and dist libs are compiled when benchmarks are compiled --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index e8dfa3e404..a0a7ba2d8f 100755 --- a/build.sh +++ b/build.sh @@ -199,7 +199,9 @@ fi if hasArg bench || (( ${NUMARGS} == 0 )); then BUILD_BENCH=ON + COMPILE_DIST_LIBRARY=ON ENABLE_NN_DEPENDENCIES=ON + COMPILE_NN_LIBRARY=ON CMAKE_TARGET="${CMAKE_TARGET};bench_raft" fi