-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
161 lines (141 loc) · 5.56 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# BSD 3-Clause License
#
# Copyright (c) 2021, Shahriar Rezghi <shahriar25.ss@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its
# contributors may be used to endorse or promote products derived from
# this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Project
cmake_minimum_required(VERSION 3.5)
project(Tense VERSION 0.1.0 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Variables
set(TENSE_MASTER OFF CACHE INTERNAL "")
if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
set(TENSE_MASTER ON CACHE INTERNAL "")
endif()
set(TENSE_VERSION ${PROJECT_VERSION} CACHE INTERNAL "")
option(TENSE_NATIVE "Build for Native Architecture" ON)
option(TENSE_TESTS "Build Tense Tests" ${TENSE_MASTER})
option(TENSE_EXAMPLES "Build Tense Examples" ${TENSE_MASTER})
option(TENSE_INSTALL "Install Tense Library" ${TENSE_MASTER})
# Files
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/src/tense/config.h.in"
"${CMAKE_CURRENT_BINARY_DIR}/gen/tense/config.h")
file(GLOB HEADERS
"${CMAKE_CURRENT_SOURCE_DIR}/src/tense/*.h"
"${CMAKE_CURRENT_BINARY_DIR}/gen/tense/config.h")
file(GLOB MATRIX_HEADERS
"${CMAKE_CURRENT_SOURCE_DIR}/src/tense/matrix/*.h")
file(GLOB TENSOR_HEADERS
"${CMAKE_CURRENT_SOURCE_DIR}/src/tense/tensor/*.h")
# Library
find_package(OpenMP REQUIRED)
option(BLASW_INSTALL "" ${TENSE_MASTER})
add_subdirectory(blasw)
add_library(Tense INTERFACE)
target_link_libraries(Tense INTERFACE
OpenMP::OpenMP_CXX BLASW::BLASW)
target_include_directories(Tense INTERFACE
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src/>"
"$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/gen/>"
"$<INSTALL_INTERFACE:${CMAKE_INSTALL_PREFIX}/include/>")
target_compile_options(Tense INTERFACE
# "-Rpass=loop-vectorize"
# "-Rpass-missed=loop-vectorize"
# "-Rpass-analysis=loop-vectorize"
"-ffast-math")
if(TENSE_NATIVE)
target_compile_options(Tense INTERFACE "-march=native")
message("Tense Native Architecture Enabled!")
else()
message("Tense Native Architecture Disabled!")
endif()
add_library(Tense::Tense ALIAS Tense)
# Installation
if(TENSE_INSTALL)
install(FILES ${HEADERS}
DESTINATION include/tense)
install(FILES ${MATRIX_HEADERS}
DESTINATION include/tense/matrix)
install(FILES ${TENSOR_HEADERS}
DESTINATION include/tense/tensor)
include(CMakePackageConfigHelpers)
write_basic_package_version_file(
"TenseConfigVersion.cmake"
VERSION ${PROJECT_VERSION}
COMPATIBILITY AnyNewerVersion)
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/TenseConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/TenseConfig.cmake" @ONLY)
file(GLOB MODULES
"${CMAKE_CURRENT_BINARY_DIR}/TenseConfig.cmake"
"${CMAKE_CURRENT_BINARY_DIR}/TenseConfigVersion.cmake")
install(FILES ${MODULES}
DESTINATION lib/cmake/tense)
install(TARGETS Tense
EXPORT TenseTargets
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
RUNTIME DESTINATION bin
INCLUDES DESTINATION include)
install(EXPORT TenseTargets
NAMESPACE Tense::
DESTINATION lib/cmake/tense)
export(TARGETS Tense
NAMESPACE Tense::
FILE "${CMAKE_CURRENT_BINARY_DIR}/TenseTargets.cmake")
message("Tense Installation Enabled!")
else()
message("Tense Installation Disabled!")
endif()
if(TENSE_TESTS)
if(WIN32)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /bigobj")
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
endif(WIN32)
set(BUILD_GMOCK OFF CACHE BOOL "")
set(INSTALL_GTEST OFF CACHE BOOL "")
add_subdirectory(./test/gtest/)
add_executable(tests
"test/tests.cpp" #"test/matrix.cpp" "test/tensor.cpp"
${HEADERS} ${MATRIX_HEADERS} ${TENSOR_HEADERS})
target_link_libraries(tests PUBLIC
Tense::Tense gtest gtest_main)
message("Tense Tests Enabled!")
else()
message("Tense Tests Disabled!")
endif()
if(TENSE_EXAMPLES)
add_executable(LeastSquares example/least_squares.cpp)
target_link_libraries(LeastSquares PUBLIC Tense::Tense)
add_executable(NeuralNetwork example/neural_network.cpp)
target_link_libraries(NeuralNetwork PUBLIC Tense::Tense)
message("Tense Examples Enabled!")
else()
message("Tense Examples Disabled!")
endif()