-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1167 from LLNL/feature/whitlock/conduit_tiled_exa…
…mple Create tiled mesh example function.
- Loading branch information
Showing
25 changed files
with
3,565 additions
and
576 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright (c) Lawrence Livermore National Security, LLC and other Conduit | ||
# Project developers. See top-level LICENSE AND COPYRIGHT files for dates and | ||
# other details. No copyright assignment is required to contribute to Conduit. | ||
|
||
if(ENABLE_UTILS) | ||
blt_add_executable( | ||
NAME conduit_generate_data | ||
SOURCES conduit_generate_data.cpp | ||
OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR} | ||
DEPENDS_ON conduit conduit_blueprint conduit_relay | ||
FOLDER utils | ||
) | ||
|
||
# add install target | ||
install(TARGETS conduit_generate_data | ||
RUNTIME DESTINATION bin) | ||
|
||
################################################################ | ||
# If we have mpi, add a parallel version. | ||
################################################################ | ||
|
||
if(MPI_FOUND) | ||
blt_add_executable( | ||
NAME conduit_generate_data_mpi | ||
SOURCES conduit_generate_data.cpp | ||
OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR} | ||
DEFINES CONDUIT_PARALLEL | ||
DEPENDS_ON conduit conduit_blueprint conduit_relay conduit_relay_mpi_io ${conduit_blt_mpi_deps} | ||
FOLDER utils | ||
) | ||
|
||
# add install target | ||
install(TARGETS conduit_generate_data_mpi | ||
RUNTIME DESTINATION bin) | ||
endif() | ||
endif() |
Oops, something went wrong.