
understand that this is not friendly, and are working to change our internal code-development to make it easier to make development features available more frequently and in finer (more functional) chunks. Unfortunately we haven't got that in place yet, and unpicking this into multiple separate check-ins would be non-trivial, so please bear with me on this one. We should be better in the future. Apologies over, what do we have here? GGC 4.9 compatibility -------------------- * We have implemented the new entrypoints used by code compiled by GCC 4.9 to implement the same functionality in gcc 4.8. Therefore code compiled with gcc 4.9 that used to work will continue to do so. However, there are some other new entrypoints (associated with task cancellation) which are not implemented. Therefore user code compiled by gcc 4.9 that uses these new features will not link against the LLVM runtime. (It remains unclear how to handle those entrypoints, since the GCC interface has potentially unpleasant performance implications for join barriers even when cancellation is not used) --- new parallel entry points --- new entry points that aren't OpenMP 4.0 related These are implemented fully :- GOMP_parallel_loop_dynamic() GOMP_parallel_loop_guided() GOMP_parallel_loop_runtime() GOMP_parallel_loop_static() GOMP_parallel_sections() GOMP_parallel() --- cancellation entry points --- Currently, these only give a runtime error if OMP_CANCELLATION is true because our plain barriers don't check for cancellation while waiting GOMP_barrier_cancel() GOMP_cancel() GOMP_cancellation_point() GOMP_loop_end_cancel() GOMP_sections_end_cancel() --- taskgroup entry points --- These are implemented fully. GOMP_taskgroup_start() GOMP_taskgroup_end() --- target entry points --- These are empty (as they are in libgomp) GOMP_target() GOMP_target_data() GOMP_target_end_data() GOMP_target_update() GOMP_teams() Improvements in Barriers and Fork/Join -------------------------------------- * Barrier and fork/join code is now in its own file (which makes it easier to understand and modify). * Wait/release code is now templated and in its own file; suspend/resume code is also templated * There's a new, hierarchical, barrier, which exploits the cache-hierarchy of the Intel(r) Xeon Phi(tm) coprocessor to improve fork/join and barrier performance. ***BEWARE*** the new source files have *not* been added to the legacy Cmake build system. If you want to use that fixes wil be required. Statistics Collection Code -------------------------- * New code has been added to collect application statistics (if this is enabled at library compile time; by default it is not). The statistics code itself is generally useful, the lightweight timing code uses the X86 rdtsc instruction, so will require changes for other architectures. The intent of this code is not for users to tune their codes but rather 1) For timing code-paths inside the runtime 2) For gathering general properties of OpenMP codes to focus attention on which OpenMP features are most used. Nested Hot Teams ---------------- * The runtime now maintains more state to reduce the overhead of creating and destroying inner parallel teams. This improves the performance of code that repeatedly uses nested parallelism with the same resource allocation. Set the new KMP_HOT_TEAMS_MAX_LEVEL envirable to a depth to enable this (and, of course, OMP_NESTED=true to enable nested parallelism at all). Improved Intel(r) VTune(Tm) Amplifier support --------------------------------------------- * The runtime provides additional information to Vtune via the itt_notify interface to allow it to display better OpenMP specific analyses of load-imbalance. Support for OpenMP Composite Statements --------------------------------------- * Implement new entrypoints required by some of the OpenMP 4.1 composite statements. Improved ifdefs --------------- * More separation of concepts ("Does this platform do X?") from platforms ("Are we compiling for platform Y?"), which should simplify future porting. ScaleMP* contribution --------------------- Stack padding to improve the performance in their environment where cross-node coherency is managed at the page level. Redesign of wait and release code --------------------------------- The code is simplified and performance improved. Bug Fixes --------- *Fixes for Windows multiple processor groups. *Fix Fortran module build on Linux: offload attribute added. *Fix entry names for distribute-parallel-loop construct to be consistent with the compiler codegen. *Fix an inconsistent error message for KMP_PLACE_THREADS environment variable. llvm-svn: 219214
112 lines
5.1 KiB
CMake
112 lines
5.1 KiB
CMake
#
|
|
#//===----------------------------------------------------------------------===//
|
|
#//
|
|
#// The LLVM Compiler Infrastructure
|
|
#//
|
|
#// This file is dual licensed under the MIT and the University of Illinois Open
|
|
#// Source Licenses. See LICENSE.txt for details.
|
|
#//
|
|
#//===----------------------------------------------------------------------===//
|
|
#
|
|
|
|
###############################################################################
|
|
# This file contains additional build rules that correspond to build.pl's rules
|
|
# Building libiomp5.dbg is linux only, Windows will build libiomp5md.dll.pdb
|
|
#
|
|
# ######### BUILD DEPENDENCIES ##########
|
|
#
|
|
# exports/.../libiomp5.so exports/.../libiomp5.dbg
|
|
# [copy] | | [copy]
|
|
# | |
|
|
# ./libiomp5.so ./libiomp5.dbg
|
|
# [copy] / OR \____________ [copy] | [copy]
|
|
# / \ |
|
|
# ./unstripped/libiomp5.so ./stripped/libiomp5.so ./unstripped/libiomp5.dbg
|
|
# / \ /
|
|
# / [linking] \[strip] /[strip and store]
|
|
# / \ /
|
|
# ${objs} (maybe compiled with -g) ./unstripped/libiomp5.so (library with debug info in it)
|
|
# |
|
|
# | [linking]
|
|
# |
|
|
# ${objs} (always compiled with -g)
|
|
#
|
|
# For icc Linux builds, we always include debugging information via -g and create libiomp5.dbg
|
|
# so that Intel(R) Parallel Amplifier can use the .dbg file.
|
|
# For icc Windows builds, we always include debugging information via -Zi and create libiomp5.pdb
|
|
# in a fashion similar to libiomp5.dbg
|
|
# For icc Mac builds, we don't bother with the debug info.
|
|
|
|
# We build library in unstripped directory
|
|
file(MAKE_DIRECTORY ${build_dir}/unstripped)
|
|
|
|
# Only build the .dbg file for Release builds
|
|
# Debug and RelWithDebInfo builds should not create a .dbg file.
|
|
# The debug info should remain in the library file.
|
|
if(${LINUX} AND ${RELEASE_BUILD})
|
|
set(dbg_file ${lib_item}.dbg)
|
|
endif()
|
|
|
|
################################
|
|
# --- Create $(lib_file).dbg ---
|
|
if(NOT "${dbg_file}" STREQUAL "")
|
|
# if a ${dbg_file} file is going to be created, then
|
|
file(MAKE_DIRECTORY ${build_dir}/stripped)
|
|
|
|
# ./${lib_file} : stripped/${lib_file}
|
|
# copy stripped/${lib_file} ./${lib_file}
|
|
simple_copy_recipe("${lib_file}" "${build_dir}/stripped" "${build_dir}")
|
|
|
|
# stripped/${lib_file} : unstripped/${lib_file} ./${dbg_file}
|
|
# objcopy --strip-debug unstripped/${lib_file} stripped/${lib_file}.tmp
|
|
# objcopy --add-gnu-debuglink=${dbg_file} stripped/${lib_file}.tmp stripped/${lib_file}
|
|
add_custom_command(
|
|
OUTPUT ${build_dir}/stripped/${lib_file}
|
|
COMMAND ${CMAKE_OBJCOPY} --strip-debug ${build_dir}/unstripped/${lib_file} ${build_dir}/stripped/${lib_file}.tmp
|
|
COMMAND ${CMAKE_OBJCOPY} --add-gnu-debuglink=${dbg_file} ${build_dir}/stripped/${lib_file}.tmp ${build_dir}/stripped/${lib_file}
|
|
DEPENDS "${build_dir}/${dbg_file}"
|
|
)
|
|
|
|
# ./${dbg_file} : unstripped/${dbg_file}
|
|
# copy unstripped/${dbg_file} ./${dbg_file}
|
|
simple_copy_recipe("${dbg_file}" "${build_dir}/unstripped" "${build_dir}")
|
|
|
|
# unstripped/${dbg_file} : unstripped/${lib_file}
|
|
# objcopy --only-keep-debug unstripped/${lib_file} unstripped/${dbg_file}
|
|
add_custom_command(
|
|
OUTPUT ${build_dir}/unstripped/${dbg_file}
|
|
COMMAND ${CMAKE_OBJCOPY} --only-keep-debug ${build_dir}/unstripped/${lib_file} ${build_dir}/unstripped/${dbg_file}
|
|
DEPENDS iomp5
|
|
)
|
|
|
|
else()
|
|
|
|
# ./${lib_file} : unstripped/${lib_file}
|
|
# copy unstripped/${lib_file} ./${lib_file}
|
|
simple_copy_recipe("${lib_file}" "${build_dir}/unstripped" "${build_dir}")
|
|
endif()
|
|
|
|
# Windows specific command to move around debug info files post-build
|
|
if(NOT "${pdb_file}" STREQUAL "" AND ${RELEASE_BUILD})
|
|
add_custom_command(TARGET iomp5 POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E rename ${pdb_file} ${pdb_file}.nonstripped
|
|
COMMAND ${CMAKE_COMMAND} -E rename ${pdb_file}.stripped ${pdb_file}
|
|
)
|
|
endif()
|
|
|
|
# Have icc build libiomp5 in unstripped directory
|
|
set_target_properties(iomp5 PROPERTIES
|
|
LIBRARY_OUTPUT_DIRECTORY "${build_dir}/unstripped"
|
|
RUNTIME_OUTPUT_DIRECTORY "${build_dir}/unstripped"
|
|
ARCHIVE_OUTPUT_DIRECTORY "${build_dir}"
|
|
)
|
|
|
|
# Always use RelWithDebInfo flags for Release builds when using the build.pl's build rules (use -g -O2 instead of just -O3)
|
|
# The debug info is then stripped out at the end of the build and put into libiomp5.dbg for Linux
|
|
if(${RELEASE_BUILD} AND NOT ${MAC})
|
|
set(CMAKE_C_FLAGS_RELEASE ${CMAKE_C_FLAGS_RELWITHDEBINFO} )
|
|
set(CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELWITHDEBINFO})
|
|
set(CMAKE_ASM_FLAGS_RELEASE ${CMAKE_ASM_FLAGS_RELWITHDEBINFO})
|
|
endif()
|
|
|