# Copyright (c) 2023 Arm Limited. # # SPDX-License-Identifier: MIT # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. cmake_minimum_required(VERSION 3.14 FATAL_ERROR) #--------------------------------------------------------------------- # Compute Kernel Writer Project project(ComputeKernelWriter VERSION 1.0.0 LANGUAGES CXX ) set(CMAKE_CXX_STANDARD 14) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) include(GNUInstallDirs) message(STATUS "${CMAKE_PROJECT_NAME} ${CMAKE_PROJECT_VERSION}") message(STATUS "Options:") message(STATUS " CKW_ENABLE_OPENCL: ${CKW_ENABLE_OPENCL}") message(STATUS " CKW_ENABLE_ASSERTS: ${CKW_ASSERTS}") message(STATUS " CKW_BUILD_TESTING: ${CKW_BUILD_TESTING}") message(STATUS " CKW_CCACHE: ${CKW_CCACHE}") #--------------------------------------------------------------------- # Options set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wdisabled-optimization -Wformat=2 \ -Winit-self -Wstrict-overflow=2 -Wswitch-default -Woverloaded-virtual \ -Wformat-security -Wctor-dtor-privacy -Wsign-promo -Weffc++ \ -Wlogical-op -Wstrict-null-sentinel") option(CKW_ENABLE_OPENCL "Enable OpenCL code generation" OFF) option(CKW_ENABLE_ASSERTS "Enable assertions. Always enabled in Debug builds" OFF) option(CKW_BUILD_TESTING "Build the Compute Kernel Writer validation test suite" OFF) option(CKW_CCACHE "Enable compiler cache builds" OFF) #--------------------------------------------------------------------- # Build configuration get_property(CKW_IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) if(NOT CKW_IS_MULTI_CONFIG) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Debug CACHE STRING "Options: Release, Debug (default), RelWithDebInfo, MinSizeRel" FORCE) endif() endif() # Simplistic CCache setup if(CKW_CCACHE) find_program(CCACHE_FOUND ccache) if(CCACHE_FOUND) set(CMAKE_C_COMPILER_LAUNCHER ${CACHE_FOUND}) set(CMAKE_CXX_COMPILER_LAUNCHER ${CACHE_FOUND}) endif() endif() #--------------------------------------------------------------------- # Library targets set(CKW_ASSERTS_OPTS "-fstack-protector-strong") # Define common properties across all targets add_library(ckw_common INTERFACE) target_compile_definitions(ckw_common INTERFACE $<$:COMPUTE_KERNEL_WRITER_DEBUG_ENABLED> $<$:COMPUTE_KERNEL_WRITER_ASSERTS_ENABLED> $<$:COMPUTE_KERNEL_WRITER_ASSERTS_ENABLED> $<$:COMPUTE_KERNEL_WRITER_OPENCL_ENABLED> ) target_compile_options(ckw_common INTERFACE -pedantic "$<$:${CKW_ASSERTS_OPTS}>" ) # Compute Kernel Writer library add_library(ckw) target_sources(ckw PRIVATE src/Error.cpp src/Helpers.cpp src/TensorInfo.cpp src/TensorUtils.cpp src/TileInfo.cpp ) if(CKW_ENABLE_OPENCL) target_sources(ckw PRIVATE src/cl/CLHelpers.cpp src/cl/CLTile.cpp ) endif() target_link_libraries(ckw PUBLIC ckw_common) target_include_directories(ckw PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include PRIVATE ${CMAKE_CURRENT_LIST_DIR} ) set_target_properties(ckw PROPERTIES SOVERSION ${CMAKE_PROJECT_VERSION_MAJOR} VERSION ${CMAKE_PROJECT_VERSION} ) #--------------------------------------------------------------------- # Validation tests if(CKW_BUILD_TESTING) add_executable(ckw_validation validation/tests/common/Common.h validation/tests/TensorBitMaskTest.hpp validation/tests/UtilsTest.hpp validation/Validation.cpp ) if(CKW_ENABLE_OPENCL) target_sources(ckw_validation PRIVATE validation/tests/CLTileTest.hpp) endif() target_link_libraries(ckw_validation PRIVATE ckw) target_include_directories(ckw_validation PRIVATE ${CMAKE_CURRENT_LIST_DIR} ) endif() #--------------------------------------------------------------------- # Installing install(TARGETS ckw CONFIGURATIONS Release RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) install(DIRECTORY include/ckw DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} )