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 162 163 164 165 166 167 168
|
# #############################################################################
# Copyright (C) 2016 - 2022 Advanced Micro Devices, Inc. All rights reserved.
#
# 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.16 )
# This should appear before the project command, because it does not
# use FORCE
if( WIN32 )
set( CMAKE_INSTALL_PREFIX "${PROJECT_BINARY_DIR}/package" CACHE PATH
"Install path prefix, prepended onto install directories" )
else( )
set( CMAKE_INSTALL_PREFIX "/opt/rocm" CACHE PATH
"Install path prefix, prepended onto install directories" )
endif( )
# This has to be initialized before the project() command appears
# Set the default of CMAKE_BUILD_TYPE to be release, unless user
# specifies with -D. MSVC_IDE does not use CMAKE_BUILD_TYPE
if( NOT DEFINED CMAKE_CONFIGURATION_TYPES AND NOT DEFINED CMAKE_BUILD_TYPE )
set( CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel." )
endif()
project( rocfft-clients-bench LANGUAGES CXX )
set(CMAKE_CXX_STANDARD 17)
list( APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake )
if( NOT TARGET rocfft )
find_package( rocfft REQUIRED CONFIG PATHS )
endif( )
if( NOT HIP_FOUND )
find_package( HIP REQUIRED )
endif()
if( NOT ROCM_FOUND )
find_package( ROCM 0.7.3 REQUIRED )
endif()
if( NOT hiprand_FOUND )
find_package( hiprand REQUIRED )
endif()
include( ROCMInstallTargets )
find_package( Boost COMPONENTS program_options REQUIRED)
set( bench_list rocfft-bench dyna-rocfft-bench )
foreach( bench ${bench_list})
if(${bench} STREQUAL "rocfft-bench")
add_executable( ${bench} ../../shared/array_validator.cpp bench.cpp bench.h )
else()
add_executable( ${bench} ../../shared/array_validator.cpp dyna-bench.cpp bench.h )
endif()
target_compile_options( ${bench} PRIVATE ${WARNING_FLAGS} -Wno-cpp )
# NB: hip-clang includes omp.h, so we need to specify the location
# of ROCM_CLANG_ROOT at cmake config time if we are using clang++.
target_include_directories( ${bench}
PRIVATE
$<BUILD_INTERFACE:${Boost_INCLUDE_DIRS}>
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/misc/include>
${HIP_CLANG_ROOT}/include
${ROCM_CLANG_ROOT}/include
)
if(${bench} STREQUAL "rocfft-bench")
target_link_libraries( ${bench}
PRIVATE
hip::device
roc::rocfft
hip::hiprand
Boost::program_options
)
else()
target_link_libraries( ${bench}
PRIVATE
${CMAKE_DL_LIBS}
hip::device
hip::hiprand
${Boost_LIBRARIES}
)
# We need to include both rocfft.h and rocfft-export.h
target_include_directories( ${bench}
PRIVATE
${CMAKE_BINARY_DIR}/include
${CMAKE_CURRENT_SOURCE_DIR}/../../library/include/
${HIP_CLANG_ROOT}/include
)
endif()
target_link_libraries( ${bench} PUBLIC
${ROCFFT_CLIENTS_HOST_LINK_LIBS}
)
set_target_properties( ${bench} PROPERTIES
CXX_STANDARD_REQUIRED ON
)
if( ROCFFT_BUILD_SCOPE )
set( BENCH_OUT_DIR "/../staging" )
elseif( ROCFFT_CLIENTS_BUILD_SCOPE )
set( BENCH_OUT_DIR "/../bin" )
else()
set( BENCH_OUT_DIR "/bin")
endif()
string( CONCAT BENCH_OUT_DIR "${PROJECT_BINARY_DIR}" ${BENCH_OUT_DIR} )
set_target_properties(${bench}
PROPERTIES
RUNTIME_OUTPUT_DIRECTORY
${BENCH_OUT_DIR} )
rocm_install(TARGETS ${bench} COMPONENT benchmarks)
# install compatibility for old name of bench program - symlink on
# unix, hardlink on windows (since privilege is required to create
# symlinks there)
string(REPLACE bench rider bench_legacy ${bench})
if( WIN32 )
set( BENCH_LINK_COMMAND create_hardlink )
set( BENCH_NEW_NAME ${BENCH_OUT_DIR}/$<TARGET_FILE_BASE_NAME:${bench}>${CMAKE_EXECUTABLE_SUFFIX} )
set( BENCH_OLD_NAME ${BENCH_OUT_DIR}/${bench_legacy}${CMAKE_EXECUTABLE_SUFFIX} )
else()
set( BENCH_LINK_COMMAND create_symlink )
set( BENCH_NEW_NAME $<TARGET_FILE_BASE_NAME:${bench}> )
set( BENCH_OLD_NAME ${BENCH_OUT_DIR}/${bench_legacy} )
endif()
add_custom_command(
TARGET ${bench}
POST_BUILD
COMMAND ${CMAKE_COMMAND} -E ${BENCH_LINK_COMMAND} ${BENCH_NEW_NAME} ${BENCH_OLD_NAME}
)
install(
FILES ${BENCH_OLD_NAME}
DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT benchmarks
)
endforeach()
|