Skip to content
Snippets Groups Projects
Commit 99f8e5ad authored by Akash Kothari's avatar Akash Kothari
Browse files

Added Maria's changes to dynamic control

parent f44d1e49
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,7 @@ set(
debug.cpp
device_math.cu
error.cu
tensor_cpu_runtime.cc
fp16_gemm.cu
global_data.cc
half_precision_api.cu
......@@ -86,9 +87,11 @@ endif()
# Adding new rule for building a cuDNN runtime library
# Offline version
find_package(OpenMP REQUIRED)
cuda_add_library(tensor_runtime ${RUNTIME_SRCS})
cuda_add_cublas_to_target(tensor_runtime)
target_link_libraries(tensor_runtime ${LINK_LIBS})
cuda_add_cublas_to_target(tensor_runtime ${OpenMP_CXX_FLAGS})
target_compile_options(tensor_runtime PRIVATE ${OpenMP_CXX_FLAGS})
target_link_libraries(tensor_runtime ${LINK_LIBS} ${OpenMP_CXX_FLAGS})
target_compile_definitions(tensor_runtime PRIVATE -DONLINE_PROFILING=false -DFP16_tuning=true)
# Install version (also offline)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment