010693b795
* Migrate XML counter defs and reader from v1/v2 * Current Working Set * Modified parser * Evaluate AST Start * Update lib/common/xml - move definitions out of class declaration * Update lib/rocprofiler/counters/parser - update build of bison and flex build - reproducible generation - add ROCPROFILER_REGENERATE_COUNTERS_PARSER option - fix namespacing * Update lib/rocprofiler/counters/xml - change location of XML files and install them * Update lib/rocprofiler/counter/tests - normalize the test names - improve test failures (more clear about where failure is) * Update lib/rocprofiler/counters - fix namespace - update to new XML metrics directory * Update lib/rocprofiler/CMakeLists.txt - link to object library * Update lib/rocprofiler/hsa/types.hpp - reorganize includes * Add metric loading class/printers * Agent Implementation * Queue Implementation (#79) * Queue Implementation * API Implementation For Counters (part 1) (#80) * API Implementation For Counters * Bewelton/counter collection 3 (#84) * Added counter sample * More changes * More changes * Update samples/counter_collection - mostly formatting * Update include/rocprofiler/counters.h - formatting * Add lib.common/synchronized.hpp - Synchronized struct * Update lib/rocprofiler/counters/xml/basic_counters.xml - whitespace * Update scripts/patch-parser.cmake - tweaks for consistency * Update lib/rocprofiler/counters/parser/tests/parser_tests.cpp - formatting * Update lib/rocprofiler/counters/parser - improve consistency in rocprofiler-expr-parser-patch - update parser.{h,cpp} and scanner.cpp - formatting + regenerated * Update lib/rocprofiler/aql - formatting - clang-tidy fixes - guard against memory pool access errors * Update lib/rocprofiler/aql/tests - formatting - update use of get_val - normalize test names * Update lib/rocprofiler/counters/tests - formatting - patch basic_counters and derived_counters - normalize test names * Update lib/rocprofiler/aql/tests - set_tests_properties * Update test labels - fix minor issue with gtest labels * Update lib/rocprofiler/counters - formatting - clang-tidy fixes * Update lib/rocprofiler/hsa - fix includes - formatting - clang-tidy fixes - tweak to queue_controller_init interface * Update lib/rocprofiler - include fixes - namespace fixes - clang-tidy fixes - formatting * Update scripts/run-ci.py - exclude counters/parser from code coverage (generated files) * Update include/rocprofiler/counters.h - fix doxygen comment * Update lib/rocprofiler/aql/packet_construct.cpp - guard against HSA_AMD_MEMORY_POOL_ACCESS_DISALLOWED_BY_DEFAULT and HSA_AMD_MEMORY_POOL_ACCESS_NEVER_ALLOWED * Update lib/rocprofiler/counters/parser/raw_ast.hpp - clang-tidy fixes * Update lib/rocprofiler/counters/evaluate_ast.hpp - clang-tidy fixes * Update lib/rocprofiler/aql/tests - disable packet_generation_single and packet_generation_multi tests - the entire implementation rocprofiler::get_ext_table() is incorrect * Minor fixes before cleanup * More changes * More fixes * More fixes * source formatting (clang-format v11) (#99) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Revert PTL submodule * Update scripts/run-ci.py - exclude counters/parser from code coverage (generated files) * Migrating counters state to context * Linting * source formatting (clang-format v11) (#101) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * revert run-ci * Testing fixes * More test changes * Fix minor typo * Small queue change * Small queue change * source formatting (clang-format v11) (#102) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * source formatting (clang-format v11) (#105) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Documentation Change * More documentation fixes * source formatting (clang-format v11) (#106) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Threading fixes * Threading fixes * source formatting (clang-format v11) (#107) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Threading fixes * More test fixes * More agent fixes * More build fixes * source formatting (clang-format v11) (#109) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * changed test timeouts * Build fix * Build fix * Updates to agent * source formatting (clang-format v11) (#114) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * cmake formatting (cmake-format) (#113) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * remove git worktree folder * Doc update * testing fix * Another test fix * More test changes * Rebase * source formatting (clang-format v11) (#116) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Documentation * source formatting (clang-format v11) (#119) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * PTL Changes * Minor agent fix for empty labels * source formatting (clang-format v11) (#120) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Minor agent fix for empty labels * Refactor read_map * source formatting (clang-format v11) (#121) Co-authored-by: bwelton <bwelton@users.noreply.github.com> * Refactor read_map * Cache fixes * source formatting (clang-format v11) (#122) Co-authored-by: bwelton <bwelton@users.noreply.github.com> --------- Co-authored-by: Jonathan R. Madsen <jonathanrmadsen@gmail.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: bwelton <bwelton@users.noreply.github.com>
137 строки
5.3 KiB
CMake
137 строки
5.3 KiB
CMake
#
|
|
# rocprofiler_options.cmake
|
|
#
|
|
# Configure miscellaneous settings
|
|
#
|
|
include_guard(GLOBAL)
|
|
|
|
# export compile commands of the project. Many IDEs want the compile_commands.json in root
|
|
# directory so run ln -s <build>/compile_commands.json
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
# C settings
|
|
set(CMAKE_C_STANDARD 11)
|
|
set(CMAKE_C_EXTENSIONS OFF)
|
|
set(CMAKE_C_STANDARD_REQUIRED ON)
|
|
set(CMAKE_C_VISIBILITY_PRESET "hidden")
|
|
# C++ settings
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_CXX_VISIBILITY_PRESET "hidden")
|
|
# general settings affecting build
|
|
set(CMAKE_VISIBILITY_INLINES_HIDDEN ON)
|
|
set(CMAKE_UNITY_BUILD OFF)
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
rocprofiler_add_feature(CMAKE_BUILD_TYPE "Build type")
|
|
rocprofiler_add_feature(CMAKE_INSTALL_PREFIX "Install prefix")
|
|
|
|
# standard cmake options
|
|
rocprofiler_add_option(BUILD_SHARED_LIBS "Build shared libraries" ON)
|
|
# rocprofiler_add_option(BUILD_STATIC_LIBS "Build static libraries" OFF)
|
|
|
|
rocprofiler_add_option(
|
|
ROCPROFILER_BUILD_CI "Enable continuous integration default values for options" OFF
|
|
ADVANCED)
|
|
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_TESTS "Enable building the tests"
|
|
${ROCPROFILER_BUILD_CI})
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_SAMPLES "Enable building the code samples"
|
|
${ROCPROFILER_BUILD_CI})
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_CODECOV
|
|
"Enable building for code coverage analysis" OFF)
|
|
|
|
# CLI and FILE plugins are always built
|
|
foreach(_PLUGIN "ATT" "CTF" "PERFETTO")
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_PLUGIN_${_PLUGIN}
|
|
"Enable building the ${_PLUGIN} plugin" ON)
|
|
endforeach()
|
|
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_FMT "Enable building fmt library internally" ON)
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_GLOG
|
|
"Enable building glog (Google logging) library internally" ON)
|
|
if(ROCPROFILER_BUILD_TESTS)
|
|
rocprofiler_add_option(
|
|
ROCPROFILER_BUILD_GTEST
|
|
"Enable building gtest (Google testing) library internally" ON ADVANCED)
|
|
endif()
|
|
|
|
rocprofiler_add_option(ROCPROFILER_DEBUG_TRACE "Enable debug tracing" OFF ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_LD_AQLPROFILE
|
|
"Enable direct loading of AQL-profile HSA extension" OFF ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_ENABLE_CLANG_TIDY "Enable clang-tidy checks" OFF
|
|
ADVANCED)
|
|
|
|
rocprofiler_add_option(
|
|
ROCPROFILER_BUILD_DEVELOPER "Extra build flags for development like -Werror"
|
|
${ROCPROFILER_BUILD_CI} ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_WERROR "Any compiler warnings are errors"
|
|
${ROCPROFILER_BUILD_CI} ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_RELEASE "Build with minimal debug info" OFF
|
|
ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_DEBUG "Build with extra debug info" OFF ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_STATIC_LIBGCC
|
|
"Build with -static-libgcc if possible" OFF ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_STATIC_LIBSTDCXX
|
|
"Build with -static-libstdc++ if possible" OFF ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_BUILD_STACK_PROTECTOR "Build with -fstack-protector"
|
|
ON ADVANCED)
|
|
rocprofiler_add_option(ROCPROFILER_UNSAFE_NO_VERSION_CHECK
|
|
"Disable HSA version checking (for development only)" OFF ADVANCED)
|
|
rocprofiler_add_option(
|
|
ROCPROFILER_REGENERATE_COUNTERS_PARSER
|
|
"Regenerate the counter parser (requires bison and flex)" OFF ADVANCED)
|
|
|
|
# In the future, we will do this even with clang-tidy enabled
|
|
if(ROCPROFILER_BUILD_CI AND NOT ROCPROFILER_BUILD_WERROR)
|
|
message(STATUS "Forcing ROCPROFILER_BUILD_WERROR=ON because ROCPROFILER_BUILD_CI=ON")
|
|
set(ROCPROFILER_BUILD_WERROR
|
|
ON
|
|
CACHE BOOL
|
|
"Any compiler warnings are errors (forced due ROCPROFILER_BUILD_CI=ON)"
|
|
FORCE)
|
|
endif()
|
|
|
|
set(ROCPROFILER_BUILD_TYPES "Release" "RelWithDebInfo" "Debug" "MinSizeRel" "Coverage")
|
|
|
|
if(NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE
|
|
"Release"
|
|
CACHE STRING "Build type" FORCE)
|
|
endif()
|
|
|
|
if(NOT CMAKE_BUILD_TYPE IN_LIST ROCPROFILER_BUILD_TYPES)
|
|
message(
|
|
FATAL_ERROR
|
|
"Unsupported build type '${CMAKE_BUILD_TYPE}'. Options: ${ROCPROFILER_BUILD_TYPES}"
|
|
)
|
|
endif()
|
|
|
|
if(ROCPROFILER_BUILD_CI)
|
|
foreach(_BUILD_TYPE ${ROCPROFILER_BUILD_TYPES})
|
|
string(TOUPPER "${_BUILD_TYPE}" _BUILD_TYPE)
|
|
|
|
# remove NDEBUG preprocessor def so that asserts are triggered
|
|
string(REGEX REPLACE ".DNDEBUG" "" CMAKE_C_FLAGS_${_BUILD_TYPE}
|
|
"${CMAKE_C_FLAGS_${_BUILD_TYPE}}")
|
|
string(REGEX REPLACE ".DNDEBUG" "" CMAKE_CXX_FLAGS_${_BUILD_TYPE}
|
|
"${CMAKE_CXX_FLAGS_${_BUILD_TYPE}}")
|
|
endforeach()
|
|
endif()
|
|
|
|
if(CMAKE_PROJECT_NAME STREQUAL PROJECT_NAME)
|
|
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "${ROCPROFILER_BUILD_TYPES}")
|
|
endif()
|
|
|
|
rocprofiler_add_cache_option(ROCPROFILER_MEMCHECK "" STRING "Memory checker type"
|
|
ADVANCED)
|
|
|
|
# ASAN is defined by testing team on Jenkins
|
|
if(ASAN)
|
|
set(ROCPROFILER_MEMCHECK
|
|
"AddressSanitizer"
|
|
CACHE STRING "Memory checker type (forced by ASAN defined)" FORCE)
|
|
endif()
|
|
|
|
include(rocprofiler_memcheck)
|