"git@developer.sourcefind.cn:kecinstone/2024-pra-vllm.git" did not exist on "1cb4ad8de98b672873dbfc1f246fbceae29234a5"
CMakeLists.txt 531 Bytes
Newer Older
1
# Copyright (c) 2022-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
Tim Moon's avatar
Tim Moon committed
2
3
4
5
6
7
8
9
#
# See LICENSE for license information.

add_executable(test_util
               test_nvrtc.cpp
               test_string.cpp
               ../test_common.cu)

10

11
12
13
find_package(OpenMP REQUIRED)
target_link_libraries(test_util PUBLIC CUDA::cudart GTest::gtest_main ${TE_LIB} CUDA::nvrtc CUDNN::cudnn  OpenMP::OpenMP_CXX)
target_compile_options(test_util PRIVATE -O2 -fopenmp)
Tim Moon's avatar
Tim Moon committed
14
15

include(GoogleTest)
16
gtest_discover_tests(test_util DISCOVERY_TIMEOUT 600)