18da0bd49d
* Update scripts/update-doxygen.sh
- ensure build-docs folder exists
* Update scripts/run-ci.py
- exclude files in details subdirectory from code coverage
* Update scripts/thread-sanitizer-suppr.txt
- exclude races in glog
* Update docs/rocprofiler.dox.in
- exclude defines in include/rocprofiler/defines.h from doxygen
- Tweak EXCLUDE_PATTERNS and EXAMPLE_PATTERNS
* Update docs workflow
- trigger workflow whenever there is a change to the public headers (which may be doxygen comments)
* Update include/rocprofiler (reorg and overhaul)
- rocprofiler_status_t additions
- CONTEXT_NOT_FOUND
- CONTEXT_ERROR
- INVALID_CONTEXT_ID
- INVALID_CONTEXT
- BUFFER_BUSY
- rocprofiler_context_is_active func
- rocprofiler_context_is_valid func
- rocprofiler_service_callback_tracing_kind_t update
- remove ROCPROFILER_SERVICE_CALLBACK_TRACING_HELPER_THREAD
- Remove rocprofiler_tracing_helper_thread_operation_t
- Remove rocprofiler_helper_thread_callback_tracer_data_t
- Added rocprofiler_internal_thread_library_t
- Added rocprofiler_at_internal_thread_create
- split rocprofiler.h into several smaller headers
- reworked rocprofiler_status_t values
- added doxygen comments for enums
- replaced rocprofiler_trace_record_operation_kind_t with rocprofiler_trace_operation_t
- use @ instead of / in doxygen comment in rocprofiler_plugin.h
- fix ref to ROCPROFILER_SERVICE_CALLBACK_TRACING_MARKER_API
- end group in fwd.h
- remove PROFILE_COUNTING group in dispatch_profile.h
- remove premature group close in callback_tracing.h
- hsa.h: remove rocprofiler_hsa_trace_data_t
- fwd.h: remove rocprofiler_tracer_callback_data_t
- rename rocprofiler_correlation_id_t.handle to rocprofiler_correlation_id_t.id (consistency)
- fwd.h: add rocprofiler_callback_tracing_record_t
- callback_tracing.h: update rocprofiler_hsa_api_callback_tracer_data_t
- callback_tracing.h: add size fields
- simplify rocprofiler_tracer_callback_t
- removed ROCPROFILER_NONNULL from rocprofiler_get_version
- added rocprofiler_get_timestamp
- ROCPROFILER_STATUS_ERROR_CONFIGURATION_LOCKED in rocprofiler_status_t
- add ROCPROFILER_STATUS_ERROR_THREAD_NOT_FOUND rocprofiler_status_t
- add rocprofiler_buffer_category_t
- rocprofiler_trace_operation_t -> rocprofiler_tracing_operation_t
- rocprofiler_user_data_t union
- tweak rocprofiler_callback_tracing_record_t
- make external_correlation_id non-pointer
- add rocprofiler_user_data_t data field
- tweak rocprofiler_record_header_t
- instead of single uint64_t kind field, have union for category + kind (two u32) with u64 hash
- API extensions for kind id <-> kind string
- API extensions for operation id <-> operation string
- rocprofiler_callback_trace_kind_name_cb_t
- rocprofiler_callback_trace_operation_name_cb_t
- rocprofiler_iterate_callback_trace_kind_names
- rocprofiler_iterate_callback_trace_kind_operation_names
- modify rocprofiler_hsa_api_callback_tracer_data_t data members (remove pointers)
- add rocprofiler_callback_trace_operation_args_cb_t function pointer typedef
- add rocprofiler_iterate_callback_trace_operation_args function
- fixed inconsistent use of *_trace_* vs. *_tracing_* (opting for tracing)
- removed rocprofiler_query_callback_trace_kind_name
- removed rocprofiler_query_callback_kind_operation_name
- Add include/rocprofiler/registration.h
- header dedicated to registering a tool/client with rocprofiler
- this header is not intended to be included by rocprofiler.h
- rocprofiler_client_id_t
- identifier for client tool
- rocprofiler_client_finalize_t
- function pointer prototype for tool-initiated finalization
- rocprofiler_tool_initialize_t
- function pointer prototype for tool initialization (i.e. configuration)
- rocprofiler_tool_finalize_t
- function pointer prototype for tool finalization
- rocprofiler_tool_configure_result_t
- struct returned by tool/client to rocprofiler
- rocprofiler_is_initialized
- function for querying whether tool-induced initialization is possible
- rocprofiler_is_finalized
- function for querying whether rocprofiler has been finalized
- rocprofiler_configure prototype
- this is the function tools implement
- prototype is always marked as having default visibility
- no implementation in rocprofiler
- added typedef for rocprofiler_configure function pointer
- added rocprofiler_force_configure to explicitly invoke rocprofiler_configure instead of relying on lazy init
- made callback typedef names more consistent (_cb_t suffix)
- typedef for rocprofiler_internal_thread_library_cb_t function pointer
- added rocprofiler_at_internal_thread_create function
- added rocprofiler_callback_thread_t struct
- added rocprofiler_create_callback_thread function
- added rocprofiler_assign_callback_thread function
- removed rocprofiler_buffer_tracing_record_header_t in favor of kind and correlation id in each record type
- added rocprofiler_buffer_tracing_kind_name_cb_t typedef
- added rocprofiler_buffer_tracing_operation_name_cb_t typedef
- added rocprofiler_iterate_buffer_tracing_kind_names function
- added rocprofiler_iterate_buffer_tracing_kind_operation_names function
- removed rocprofiler_query_buffer_trace_kind_name function
- removed rocprofiler_query_buffer_kind_operation_name function
* Update lib/common/container/stable_vector.hpp
- include limits header
- reserve_size struct
- overload stable_vector constructor to support reserving as part of construction
* Update lib/common/container/record_header_buffer.{hpp,cpp}
- add emplace member function accepting category and kind (two u32 variables) instead of one u64 kind
- use std::shared_mutex to prevent data-race when reading m_headers
- record_header_buffer is now multiple writer, single reader
- add read_lock member function (shared)
- add read_unlock member function (shared)
- lock member function gets exclusive lock
- unlock member function releases exclusive lock
* Rename "config" to "context" + restructure + implement
- Restructure config files + license
- move config files into lib/rocprofiler/config subfolder
- rename some files
- add license to some files which were missing it
- Rename config/helpers.hpp
- rename to allocator.hpp
- remove get_domain_max_ops
- Create config/domain.{hpp,cpp}
- structures for handling tracing domains and ops
- Update config/config.{hpp,cpp}
- buffer_instance struct
- callback_tracing_service struct
- buffer_tracing_service struct
- config struct
- allocate_{config,buffer} func
- {validate,start,stop}_config funcs
- get_registered_configs func
- get_active_configs func
- get_buffers func
- Update rocprofiler.cpp
- Implement rocprofiler_create_context
- Implement rocprofiler_start_context
- Implement rocprofiler_stop_context
- Implement rocprofiler_context_is_active
- Implement rocprofiler_context_is_valid
- Implement rocprofiler_flush_buffer
- Implement rocprofiler_destroy_buffer
- Implement rocprofiler_create_buffer
- Update lib/rocprofiler/hsa
- use rocprofiler_tracer_activity_domain_t instead of rocprofiler_tracer_activity_domain_t
- remove ROCPROFILER_TRACER_ACTIVITY_DOMAIN_HSA_API fromHSA_API_INFO_DEFINITION_* macros
- Update lib/rocprofiler/context/domain.*
- fixes for domain_info (i.e. use correct enums)
- update rocprofiler_status_t codes
- fix template instantiations
- Update lib/rocprofiler/context/context.*
- use rocprofiler_service_callback_tracing_kind_t instead of rocprofiler_tracer_activity_domain_t
- rename correlation_context to correlation_tracing_service
- fix domains in callback_tracing_service and buffer_tracing_service
- unique_ptr for callback_tracer and buffered_tracer in context
- Update lib/rocprofiler/rocprofiler.cpp
- implement rocprofiler_configure_callback_tracing_service
- Update lib/rocprofiler/hsa/ostream.hpp
- include rocprofiler.h instead of tracer.hpp
- Update lib/rocprofiler/hsa
- migration to use rocprofiler_hsa_api_callback_tracer_data_t instead of rocprofiler_hsa_trace_data_t
- restructure hsa_api_impl<Idx>
- remove phase_enter and phase_exit
- add set_data_args (partial replacement for phase_enter)
- functor handles the contexts
- Update lib/rocprofiler/rocprofiler.cpp
- implement rocprofiler_get_version
- Update lib/rocprofiler/hsa/hsa.{hpp,cpp}
- remove hsa_api_ prefix for functions already in hsa namespace
- Update lib/rocprofiler/context/context.{hpp,cpp}
- add client_idx to context struct (tool identifier)
- add push_client function to set client_idx before context is allocated
- add pop_client function to remove client identifier from future context creations
- implemented {registered,active}_contexts and buffers to use new container::reserve_size overload to stable_vector
- fix implementation of start_context
- fix implementation of stop_context
- Update lib/rocprofiler/rocprofiler.cpp
- prevent context creation, buffer creation, pc sampling config, etc. after initialization
- add nullptr checks to rocprofiler_context_is_valid
- fix rocprofiler_configure_callback_tracing_service
- was checking size of buffers, not registered context
- implement rocprofiler_iterate_callback_trace_kind_names
- implement rocprofiler_iterate_callback_trace_kind_operation_names
- Update lib/rocprofiler/CMakeLists.txt
- add registration.{hpp,cpp} to rocprofiler-library target sources
- Update lib/rocprofiler/hsa/utils.hpp
- fix using fmt::formt with const char* strings
- remove join functions (no longer used)
- Update lib/rocprofiler/hsa/hsa.{hpp,cpp}
- remove args_string function
- remove named_args_string function
- update iterate_args function
- change callback type
- accept user data
- rework the hsa_api_impl<Idx>::functor function
- save the rocprofiler_callback_tracing_record_t between callbacks
- update update_table function
- check buffered_tracer domains
- remove comments
- Update lib/rocprofiler/hsa/defines.hpp
- remove MEMBER_<N> macros
- add ADDR_MEMBER_<N> macros
- remove doxygen comments for GET_MEMBER_FIELDS
- add GET_ADDR_MEMBER_FIELDS
- update HSA_API_INFO_DEFINITION_{0,V}
- rename domain_idx to callback_domain_idx
- add buffered_domain_idx
- add as_arg_addr function
- Update lib/rocprofiler/rocprofiler.cpp
- implement rocprofiler_iterate_callback_trace_operation_args
- Remove lib/rocprofiler/tracing.{hpp,cpp} and lib/rocprofiler/CMakeLists.txt
- unused
- Update lib/rocprofiler/hsa/hsa.{hpp,cpp}
- support buffered tracing in hsa_api_impl<Idx>::functor
- rocprofiler_callback_trace_operation_args_cb_t -> rocprofiler_callback_tracing_operation_args_cb_t
- i.e. trace -> tracing
- Update lib/rocprofiler/context/context.{hpp,cpp}
- removed buffer_instance struct
- removed allocate_buffer function
- removed get_buffers function
- changed buffer_tracing_service::buffer_array_t
- Update lib/rocprofiler/hsa: hsa.cpp, ostream.hpp, details folder
- move ostream.hpp into details folder to prevent from contributing to code coverage
- update cmake build system for new directory
* Add lib/rocprofiler/registration.{hpp,cpp}
- implements rocprofiler_set_api_table (called by rocprofiler-register)
- miscellaneous functions for client configure/initialize/finalize
- functions for querying the init/fini status
- relocated OnLoad HSA workaround to this file
- at present, this is used to workaround ROCr not having rocprofiler-register integration yet
- implement rocprofiler_force_configure function
- implement rocprofiler_is_initialized function
- implement rocprofiler_is_finalized function
- ensure configure functions only invoked once
- ensure internal thread creation notification functions are invoked
- get_status is pair of atomics
- fix heap-use-after-free in init_logging
- update finalize
- invoke hsa_shut_down
- set all active contexts to null pointers
* Add lib/rocprofiler/buffer_tracing.cpp
- contains implementations of buffer_tracing (i.e. rocprofiler/buffer_tracing.h)
- previous implementation may have been moved out of lib/rocprofiler/rocprofiler.cpp
* Add lib/rocprofiler/buffer.{hpp,cpp}
- contains implementations of buffer (i.e. rocprofiler/buffer.h) and misc internal access functions
- previous implementation may have been moved out of lib/rocprofiler/rocprofiler.cpp and lib/rocprofiler/context/context.{hpp,cpp}
* Add lib/rocprofiler/callback_tracing.cpp
- contains implementations of callback_tracing (i.e. rocprofiler/callback_tracing.h)
- previous implementation may have been moved out of lib/rocprofiler/rocprofiler.cpp
* Add lib/rocprofiler/context.cpp
- contains implementations of context public API functions (i.e. rocprofiler/context.h)
- previous implementation may have been moved out of lib/rocprofiler/rocprofiler.cpp
* Add lib/rocprofiler/internal_threading.{hpp,cpp}
- contains implementations of internal_threading (i.e. rocprofiler/internal_threading.h)
- also contains implementations of internal access functions
- update finalize function
- join all task groups and destroy all thread pools first, then reset unique_ptr
* Update lib/rocprofiler/rocprofiler.cpp
- rocprofiler_get_version returns status
- implement rocprofiler_get_timestamp
- remove misc implementations that were split into other files
* Update lib/rocprofiler/CMakeLists.txt
- compile new implementation files
- buffer.cpp
- buffer_tracing.cpp
- callback_tracing.cpp
- context.cpp
- internal_threading.cpp
* Update lib/tests/buffering/buffering-*.cpp
- update to reflect changes to rocprofiler_record_header_t
* Update CMakeLists.txt
- increase minimum cmake version to 3.21 which added HIP support as a language
* Add samples/apps/transpose
- simple HIP application for testing
* Add samples/api_callback_tracing
- HIP application and tool library
- This effectively demos how to setup HSA API tracing
- For each function called in tool, it stores the func/file/line and prints it during finalization
- client.hpp and client.cpp are the tool library
- Implement use of rocprofiler_iterate_callback_trace_operation_args
- add demo of using rocprofiler_get_version
- add_test
- remove PASS_REGULAR_EXPRESSION
- causing false passes during memcheck
- add ROCPROFILER_MEMCHECK_PRELOAD_ENV to environment
- check if rocprofiler is initialized before stopping context
* Add samples/api_buffered_tracing
- Sample demonstrating tracing the HSA API via buffering
- demo rocprofiler_record_header_compute_hash
- throw exceptions for unexpected buffer data
- add_test
- remove PASS_REGULAR_EXPRESSION
- causing false passes during memcheck
- add ROCPROFILER_MEMCHECK_PRELOAD_ENV to environment
* Update samples/CMakeLists.txt
- add subdirectory for api_callback_tracing
- add subdirectory api_buffered_tracing
* Update samples/pc_sampling/common.h
- fix processing of headers
* Update lib/rocprofiler/hsa/details/ostream.hpp
- fix data race on HSA_depth_max_cnt and recursion
- HSA_depth_max_cnt and recursion is now thread-local static instead of global static
- replace std::string usage with std::string_view
* Actions update
- add dependabot.yml
- use actions/checkout@v4
- install latest libasan and libtsan in sanitizer containers
* Add PTL (Parallel Tasking Library) submodule
[ROCm/rocprofiler-sdk commit: d3eaacd610]
461 lines
14 KiB
Python
Executable File
461 lines
14 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
|
|
import os
|
|
import re
|
|
import sys
|
|
import glob
|
|
import socket
|
|
import shutil
|
|
import argparse
|
|
import multiprocessing
|
|
|
|
# this constant is used to define CTEST_PROJECT_NAME
|
|
# and default value for CTEST_SUBMIT_URL
|
|
_PROJECT_NAME = "rocprofiler-v2-internal"
|
|
_BASE_URL = "10.194.116.31/cdash"
|
|
|
|
|
|
def which(cmd, require):
|
|
v = shutil.which(cmd)
|
|
if require and v is None:
|
|
raise RuntimeError(f"{cmd} not found")
|
|
return v if v is not None else ""
|
|
|
|
|
|
def generate_custom(args, cmake_args, ctest_args):
|
|
if not os.path.exists(args.binary_dir):
|
|
os.makedirs(args.binary_dir)
|
|
|
|
if args.memcheck is not None:
|
|
if args.coverage:
|
|
raise ValueError(
|
|
f"Enabling --memcheck={args.memcheck} and --coverage not supported"
|
|
)
|
|
cmake_args += [f"-DROCPROFILER_MEMCHECK={args.memcheck}"]
|
|
|
|
NAME = args.name
|
|
SITE = args.site
|
|
BUILD_JOBS = args.build_jobs
|
|
SUBMIT_URL = args.submit_url
|
|
SOURCE_DIR = os.path.realpath(args.source_dir)
|
|
BINARY_DIR = os.path.realpath(args.binary_dir)
|
|
CMAKE_ARGS = " ".join(cmake_args)
|
|
CTEST_ARGS = " ".join(ctest_args)
|
|
|
|
GIT_CMD = which("git", require=True)
|
|
GCOV_CMD = which("gcov", require=False)
|
|
CMAKE_CMD = which("cmake", require=True)
|
|
# CTEST_CMD = which("ctest", require=True)
|
|
|
|
NAME = re.sub(r"(.*)-([0-9]+)/merge", "PR_\\2_\\1", NAME)
|
|
|
|
DEFAULT_CMAKE_ARGS = " ".join(
|
|
[f"-DROCPROFILER_BUILD_{x}=ON" for x in ["CI", "TESTS", "SAMPLES"]]
|
|
)
|
|
|
|
GPU_TARGETS = ";".join(args.gpu_targets)
|
|
MEMCHECK_TYPE = "" if args.memcheck is None else args.memcheck
|
|
|
|
MEMCHECK_SANITIZER_OPTIONS = ""
|
|
MEMCHECK_SUPPRESSION_FILE = ""
|
|
|
|
if MEMCHECK_TYPE == "AddressSanitizer":
|
|
MEMCHECK_SANITIZER_OPTIONS = "detect_leaks=0 use_sigaltstack=0"
|
|
MEMCHECK_SUPPRESSION_FILE = (
|
|
f"{SOURCE_DIR}/source/scripts/address-sanitizer-suppr.txt"
|
|
)
|
|
elif MEMCHECK_TYPE == "LeakSanitizer":
|
|
MEMCHECK_SUPPRESSION_FILE = (
|
|
f"{SOURCE_DIR}/source/scripts/leak-sanitizer-suppr.txt"
|
|
)
|
|
elif MEMCHECK_TYPE == "ThreadSanitizer":
|
|
external_symbolizer_path = ""
|
|
for version in range(8, 20):
|
|
_symbolizer = shutil.which(f"llvm-symbolizer-{version}")
|
|
if _symbolizer:
|
|
external_symbolizer_path = f"external_symbolizer_path={_symbolizer}"
|
|
os.environ["TSAN_OPTIONS"] = " ".join(
|
|
[
|
|
"history_size=5",
|
|
"second_deadlock_stack=1",
|
|
f"suppressions={SOURCE_DIR}/source/scripts/thread-sanitizer-suppr.txt",
|
|
external_symbolizer_path,
|
|
os.environ.get("TSAN_OPTIONS", ""),
|
|
]
|
|
)
|
|
|
|
return f"""
|
|
set(CTEST_PROJECT_NAME "{_PROJECT_NAME}")
|
|
set(CTEST_NIGHTLY_START_TIME "05:00:00 UTC")
|
|
|
|
set(CTEST_DROP_METHOD "http")
|
|
set(CTEST_DROP_SITE_CDASH TRUE)
|
|
set(CTEST_SUBMIT_URL "http://{SUBMIT_URL}")
|
|
|
|
set(CTEST_UPDATE_TYPE git)
|
|
set(CTEST_UPDATE_VERSION_ONLY TRUE)
|
|
set(CTEST_GIT_COMMAND {GIT_CMD})
|
|
set(CTEST_GIT_INIT_SUBMODULES FALSE)
|
|
|
|
set(CTEST_OUTPUT_ON_FAILURE TRUE)
|
|
set(CTEST_USE_LAUNCHERS TRUE)
|
|
set(CMAKE_CTEST_ARGUMENTS --output-on-failure {CTEST_ARGS})
|
|
|
|
set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS "100")
|
|
set(CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS "100")
|
|
set(CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE "51200")
|
|
set(CTEST_CUSTOM_COVERAGE_EXCLUDE "/usr/.*;/opt/.*;.*external/.*;.*samples/.*;.*tests/.*;.*/details/.*")
|
|
|
|
set(CTEST_MEMORYCHECK_TYPE "{MEMCHECK_TYPE}")
|
|
set(CTEST_MEMORYCHECK_SUPPRESSIONS_FILE "{MEMCHECK_SUPPRESSION_FILE}")
|
|
set(CTEST_MEMORYCHECK_SANITIZER_OPTIONS "{MEMCHECK_SANITIZER_OPTIONS}")
|
|
|
|
set(CTEST_SITE "{SITE}")
|
|
set(CTEST_BUILD_NAME "{NAME}")
|
|
|
|
set(CTEST_SOURCE_DIRECTORY {SOURCE_DIR})
|
|
set(CTEST_BINARY_DIRECTORY {BINARY_DIR})
|
|
|
|
set(CTEST_CONFIGURE_COMMAND "{CMAKE_CMD} -B {BINARY_DIR} {SOURCE_DIR} {DEFAULT_CMAKE_ARGS} -DGPU_TARGETS={GPU_TARGETS} {CMAKE_ARGS}")
|
|
set(CTEST_BUILD_COMMAND "{CMAKE_CMD} --build {BINARY_DIR} --target all --parallel {BUILD_JOBS}")
|
|
set(CTEST_COVERAGE_COMMAND {GCOV_CMD})
|
|
"""
|
|
|
|
|
|
def generate_dashboard_script(args):
|
|
CODECOV = 1 if args.coverage else 0
|
|
DASHBOARD_MODE = args.mode
|
|
SOURCE_DIR = os.path.realpath(args.source_dir)
|
|
BINARY_DIR = os.path.realpath(args.binary_dir)
|
|
MEMCHECK = 1 if args.memcheck is not None else 0
|
|
SUBMIT = 0 if args.disable_cdash else 1
|
|
ARGN = "${ARGN}"
|
|
|
|
if args.memcheck == "ThreadSanitizer":
|
|
MEMCHECK = 0
|
|
|
|
_script = f"""
|
|
macro(dashboard_submit)
|
|
if("{SUBMIT}" GREATER 0)
|
|
ctest_submit({ARGN})
|
|
endif()
|
|
endmacro()
|
|
"""
|
|
|
|
_script += """
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/CTestCustom.cmake")
|
|
|
|
macro(handle_error _message _ret)
|
|
if(NOT ${${_ret}} EQUAL 0)
|
|
dashboard_submit(PARTS Done RETURN_VALUE _submit_ret)
|
|
message(FATAL_ERROR "${_message} failed: ${${_ret}}")
|
|
endif()
|
|
endmacro()
|
|
"""
|
|
|
|
_script += f"""
|
|
ctest_start({DASHBOARD_MODE})
|
|
ctest_update(SOURCE "{SOURCE_DIR}" RETURN_VALUE _update_ret
|
|
CAPTURE_CMAKE_ERROR _update_err)
|
|
ctest_configure(BUILD "{BINARY_DIR}" RETURN_VALUE _configure_ret)
|
|
dashboard_submit(PARTS Start Update Configure RETURN_VALUE _submit_ret)
|
|
|
|
if(NOT _update_err EQUAL 0)
|
|
message(WARNING "ctest_update failed")
|
|
endif()
|
|
|
|
handle_error("Configure" _configure_ret)
|
|
|
|
ctest_build(BUILD "{BINARY_DIR}" RETURN_VALUE _build_ret)
|
|
dashboard_submit(PARTS Build RETURN_VALUE _submit_ret)
|
|
|
|
handle_error("Build" _build_ret)
|
|
|
|
if("{MEMCHECK}" GREATER 0)
|
|
ctest_memcheck(BUILD "{BINARY_DIR}" RETURN_VALUE _test_ret)
|
|
dashboard_submit(PARTS Test RETURN_VALUE _submit_ret)
|
|
else()
|
|
ctest_test(BUILD "{BINARY_DIR}" RETURN_VALUE _test_ret)
|
|
dashboard_submit(PARTS Test RETURN_VALUE _submit_ret)
|
|
endif()
|
|
|
|
if("{CODECOV}" GREATER 0)
|
|
ctest_coverage(
|
|
BUILD "{BINARY_DIR}"
|
|
RETURN_VALUE _coverage_ret
|
|
CAPTURE_CMAKE_ERROR _coverage_err)
|
|
dashboard_submit(PARTS Coverage RETURN_VALUE _submit_ret)
|
|
endif()
|
|
|
|
handle_error("Testing" _test_ret)
|
|
|
|
dashboard_submit(PARTS Done RETURN_VALUE _submit_ret)
|
|
"""
|
|
return _script
|
|
|
|
|
|
def parse_cdash_args(args):
|
|
BUILD_JOBS = multiprocessing.cpu_count()
|
|
DASHBOARD_MODE = "Continuous"
|
|
DASHBOARD_STAGES = [
|
|
"Start",
|
|
"Update",
|
|
"Configure",
|
|
"Build",
|
|
"Test",
|
|
"MemCheck",
|
|
"Coverage",
|
|
"Submit",
|
|
]
|
|
SOURCE_DIR = os.getcwd()
|
|
BINARY_DIR = os.path.join(SOURCE_DIR, "build")
|
|
SITE = socket.gethostname()
|
|
SUBMIT_URL = f"{_BASE_URL}/submit.php?project={_PROJECT_NAME}"
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument(
|
|
"-n", "--name", help="Job name", default=None, type=str, required=True
|
|
)
|
|
parser.add_argument("-s", "--site", help="Site name", default=SITE, type=str)
|
|
parser.add_argument(
|
|
"-q", "--quiet", help="Disable printing logs", action="store_true"
|
|
)
|
|
parser.add_argument(
|
|
"-c", "--coverage", help="Enable code coverage", action="store_true"
|
|
)
|
|
parser.add_argument(
|
|
"-j",
|
|
"--build-jobs",
|
|
help="Number of build tasks",
|
|
default=BUILD_JOBS,
|
|
type=int,
|
|
)
|
|
parser.add_argument(
|
|
"-B",
|
|
"--binary-dir",
|
|
help="Build directory",
|
|
default=BINARY_DIR,
|
|
type=str,
|
|
)
|
|
parser.add_argument(
|
|
"-S",
|
|
"--source-dir",
|
|
help="Source directory",
|
|
default=SOURCE_DIR,
|
|
type=str,
|
|
)
|
|
parser.add_argument(
|
|
"-F",
|
|
"--clean",
|
|
help="Remove existing build directory",
|
|
action="store_true",
|
|
)
|
|
parser.add_argument(
|
|
"-M",
|
|
"--mode",
|
|
help="Dashboard mode",
|
|
default=DASHBOARD_MODE,
|
|
choices=("Continuous", "Nightly", "Experimental"),
|
|
type=str,
|
|
)
|
|
parser.add_argument(
|
|
"-T",
|
|
"--stages",
|
|
help="Dashboard stages",
|
|
nargs="+",
|
|
default=DASHBOARD_STAGES,
|
|
choices=DASHBOARD_STAGES,
|
|
type=str,
|
|
)
|
|
parser.add_argument(
|
|
"--submit-url",
|
|
help="CDash submission site",
|
|
default=SUBMIT_URL,
|
|
type=str,
|
|
)
|
|
parser.add_argument(
|
|
"--repeat-until-pass",
|
|
help="<N> for --repeat until-pass:<N>",
|
|
default=None,
|
|
type=int,
|
|
)
|
|
parser.add_argument(
|
|
"--repeat-until-fail",
|
|
help="<N> for --repeat until-fail:<N>",
|
|
default=None,
|
|
type=int,
|
|
)
|
|
parser.add_argument(
|
|
"--repeat-after-timeout",
|
|
help="<N> for --repeat after-timeout:<N>",
|
|
default=None,
|
|
type=int,
|
|
)
|
|
parser.add_argument(
|
|
"--disable-cdash",
|
|
help="Disable submitting results to CDash dashboard",
|
|
action="store_true",
|
|
)
|
|
parser.add_argument(
|
|
"--gpu-targets",
|
|
help="GPU build architectures",
|
|
default="gfx900 gfx906 gfx908 gfx90a gfx1030 gfx1100".split(),
|
|
type=str,
|
|
nargs="+",
|
|
)
|
|
parser.add_argument(
|
|
"--memcheck",
|
|
help="Run dynamic analysis tool",
|
|
default=None,
|
|
type=str,
|
|
choices=(
|
|
"ThreadSanitizer",
|
|
"AddressSanitizer",
|
|
"LeakSanitizer",
|
|
"MemorySanitizer",
|
|
"UndefinedBehaviorSanitizer",
|
|
),
|
|
)
|
|
parser.add_argument(
|
|
"--linter",
|
|
help="Enable linting tool",
|
|
default=None,
|
|
type=str,
|
|
choices=("clang-tidy",),
|
|
)
|
|
|
|
return parser.parse_args(args)
|
|
|
|
|
|
def parse_args(args=None):
|
|
if args is None:
|
|
args = sys.argv[1:]
|
|
|
|
index = 0
|
|
input_args = []
|
|
ctest_args = []
|
|
cmake_args = []
|
|
data = [input_args, cmake_args, ctest_args]
|
|
cmd = os.path.basename(sys.argv[0])
|
|
|
|
for itr in args:
|
|
if itr == "--":
|
|
index += 1
|
|
if index > 2:
|
|
raise RuntimeError(
|
|
f"Usage: {cmd} <options> -- <cmake-args> -- <ctest-args>"
|
|
)
|
|
else:
|
|
data[index].append(itr)
|
|
|
|
cdash_args = parse_cdash_args(input_args)
|
|
|
|
if cdash_args.coverage:
|
|
cmake_args += ["-DROCPROFILER_BUILD_CODECOV=ON"]
|
|
|
|
if cdash_args.linter == "clang-tidy":
|
|
cmake_args += ["-DROCPROFILER_ENABLE_CLANG_TIDY=ON"]
|
|
|
|
def get_repeat_val(_param):
|
|
_value = getattr(cdash_args, f"repeat_{_param}".replace("-", "_"))
|
|
return [f"{_param}:{_value}"] if _value is not None and _value > 1 else []
|
|
|
|
repeat_args = (
|
|
get_repeat_val("until-pass")
|
|
+ get_repeat_val("until-fail")
|
|
+ get_repeat_val("after-timeout")
|
|
)
|
|
ctest_args += ["--repeat"] + repeat_args if len(repeat_args) > 0 else []
|
|
|
|
return [cdash_args, cmake_args, ctest_args]
|
|
|
|
|
|
def run(*args, **kwargs):
|
|
import subprocess
|
|
|
|
return subprocess.run(*args, **kwargs)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
args, cmake_args, ctest_args = parse_args()
|
|
|
|
if args.clean and os.path.exists(args.binary_dir):
|
|
if args.source_dir == args.binary_dir:
|
|
raise RuntimeError(
|
|
f"cannot clean binary directory == source directory ({args.source_dir})"
|
|
)
|
|
|
|
shutil.rmtree(args.binary_dir)
|
|
|
|
if not os.path.exists(args.binary_dir):
|
|
os.makedirs(args.binary_dir)
|
|
|
|
from textwrap import dedent
|
|
|
|
_config = dedent(generate_custom(args, cmake_args, ctest_args))
|
|
_script = dedent(generate_dashboard_script(args))
|
|
|
|
if not args.quiet:
|
|
sys.stderr.write(f"##### CTestCustom.cmake #####\n\n{_config}\n\n")
|
|
sys.stderr.write(f"##### dashboard.cmake #####\n\n{_script}\n\n")
|
|
|
|
with open(os.path.join(args.binary_dir, "CTestCustom.cmake"), "w") as f:
|
|
f.write(f"{_config}\n")
|
|
|
|
with open(os.path.join(args.binary_dir, "dashboard.cmake"), "w") as f:
|
|
f.write(f"{_script}\n")
|
|
|
|
CTEST_CMD = which("ctest", require=True)
|
|
|
|
dashboard_args = ["-D"]
|
|
for itr in args.stages:
|
|
dashboard_args.append(f"{args.mode}{itr}")
|
|
|
|
try:
|
|
if not args.quiet and len(ctest_args) == 0:
|
|
ctest_args = ["--output-on-failure", "-V"]
|
|
|
|
run(
|
|
[CTEST_CMD]
|
|
+ dashboard_args
|
|
+ [
|
|
"-S",
|
|
os.path.join(args.binary_dir, "dashboard.cmake"),
|
|
]
|
|
+ ctest_args,
|
|
check=True,
|
|
)
|
|
finally:
|
|
if "-VV" not in ctest_args and not args.quiet:
|
|
tag = None
|
|
tagfpath = os.path.join(args.binary_dir, "Testing/TAG")
|
|
with open(tagfpath, "r") as f:
|
|
tag = f.readline().strip()
|
|
|
|
for file in glob.glob(
|
|
os.path.join(args.binary_dir, "Testing", tag, "**"),
|
|
recursive=True,
|
|
):
|
|
if not os.path.isfile(file):
|
|
continue
|
|
if "CoverageLog-" in os.path.basename(file):
|
|
continue
|
|
print(f"\n\n###### Reading {file}... ######\n\n")
|
|
with open(file, "r") as inpf:
|
|
fdata = inpf.read()
|
|
print(fdata)
|
|
# print out memory checker files
|
|
for file in glob.glob(
|
|
os.path.join(args.binary_dir, "Testing/Temporary/MemoryChecker.*"),
|
|
recursive=True,
|
|
):
|
|
if not os.path.isfile(file):
|
|
continue
|
|
print(f"\n\n\n###### Reading {file}... ######\n\n\n")
|
|
with open(file, "r") as inpf:
|
|
fdata = inpf.read()
|
|
print(fdata)
|