forked from flux-framework/dyad
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changes to support cpp-logger and dlio profiler
1. switch to c++ 17 2. added dlio_profiler events to functions. 3. fixed header for flux log ucx
- Loading branch information
1 parent
4cb7eee
commit e43f65e
Showing
52 changed files
with
1,479 additions
and
1,355 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -214,6 +214,7 @@ jobs: | |
fi | ||
spack external find | ||
spack spec flux-core@${FLUX_VERSION} | ||
spack spec cpp-logger@dev | ||
if [[ $DYAD_DTL_MODE == 'UCX' ]]; then | ||
spack spec [email protected] | ||
fi | ||
|
@@ -227,8 +228,9 @@ jobs: | |
if [[ $DYAD_PROFILER_MODE == 'CALIPER' ]]; then | ||
spack install -j4 caliper | ||
fi | ||
spack install cpp-logger@dev | ||
mkdir -p ${DYAD_INSTALL_PREFIX} | ||
spack view --verbose symlink ${DYAD_INSTALL_PREFIX} flux-core@${FLUX_VERSION} | ||
spack view --verbose symlink ${DYAD_INSTALL_PREFIX} flux-core@${FLUX_VERSION} cpp-logger@dev | ||
if [[ $DYAD_DTL_MODE == 'UCX' ]]; then | ||
spack view --verbose symlink ${DYAD_INSTALL_PREFIX} [email protected] | ||
fi | ||
|
@@ -250,7 +252,7 @@ jobs: | |
if [[ $DYAD_DTL_MODE == 'UCX' ]]; then | ||
CONFIGURE_FLAGS="-DDYAD_ENABLE_UCX_DATA=ON -DDYAD_PROFILER=NONE" | ||
fi | ||
TEST_CONF="-DDYAD_LIBDIR_AS_LIB:BOOL=ON -DCMAKE_BUILD_TYPE=Debug" | ||
TEST_CONF="-DDYAD_LIBDIR_AS_LIB:BOOL=ON -DCMAKE_BUILD_TYPE=Debug -DDYAD_LOGGER=CPP_LOGGER -DDYAD_LOGGER_LEVEL=DEBUG" | ||
cmake --version | ||
cmake -DCMAKE_INSTALL_PREFIX=${DYAD_INSTALL_PREFIX} ${CONFIGURE_FLAGS} ${TEST_CONF} .. | ||
make VERBOSE=1 install -j | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ classifier = | |
[options] | ||
python_requires = >=3.7 | ||
install_requires = | ||
numpy | ||
numpy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
include_directories(${CMAKE_SOURCE_DIR}/src) # usual source code of the current project | ||
|
||
include_directories(${CMAKE_BINARY_DIR}/include) | ||
add_subdirectory(utils) | ||
add_subdirectory(dtl) | ||
add_subdirectory(core) | ||
add_subdirectory(modules) | ||
add_subdirectory(wrapper) | ||
add_subdirectory(stream) | ||
add_subdirectory(perf) | ||
|
Oops, something went wrong.