From b30394541d363b27424c1587363c33a02491582e Mon Sep 17 00:00:00 2001 From: Hashim Sharif <hsharif3@tyler.cs.illinois.edu> Date: Fri, 4 Dec 2020 20:04:42 -0600 Subject: [PATCH] Adding missing OpenMP Flag in Cmake template - Keras frontend --- llvm/projects/keras/cmake_template/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/projects/keras/cmake_template/CMakeLists.txt b/llvm/projects/keras/cmake_template/CMakeLists.txt index 67ce4a848b..0cdee697ce 100644 --- a/llvm/projects/keras/cmake_template/CMakeLists.txt +++ b/llvm/projects/keras/cmake_template/CMakeLists.txt @@ -50,7 +50,7 @@ find_library(TENSOR_LIB ) -set(LINK_LIBS cudart cudnn cufft cublas stdc++fs curand) +set(LINK_LIBS cudart cudnn cufft cublas stdc++fs curand -pthread) #### Image Processing Benchmarks -- GitLab