-
Notifications
You must be signed in to change notification settings - Fork 434
/
CMakeLists.txt
43 lines (32 loc) · 1.29 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
cmake_minimum_required(VERSION 3.11.0 FATAL_ERROR)
project(TorchRec
LANGUAGES CXX C)
find_package(Torch REQUIRED)
set(CMAKE_CXX_STANDARD 20)
include(FetchContent)
option(BUILD_TEST "Build C++ test binaries (need gtest and gbenchmark)" OFF)
add_definitions("-D_GLIBCXX_USE_CXX11_ABI=0")
add_subdirectory(torchrec/csrc)
if (BUILD_TEST)
FetchContent_Declare(googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG v1.12.0
)
FetchContent_Declare(google_benchmark
GIT_REPOSITORY https://github.com/google/benchmark.git
GIT_TAG v1.5.6
)
# We will not need to test benchmark lib itself.
set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "Disable benchmark testing as we don't need it.")
# We will not need to install benchmark since we link it statically.
set(BENCHMARK_ENABLE_INSTALL OFF CACHE BOOL "Disable benchmark install to avoid overwriting vendor install.")
FetchContent_MakeAvailable(googletest google_benchmark)
enable_testing()
add_subdirectory(benchmarks/cpp)
add_subdirectory(test/cpp)
endif()