Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,15 +160,15 @@ jobs:
- name: Test ExaCA
working-directory: examples
run: |
$HOME/exaca/bin/ExaCA-Kokkos Inp_SmallDirSolidification.json
$HOME/exaca/bin/ExaCA-Kokkos Inp_SmallSpotMelt.json
mpirun -n 2 --oversubscribe $HOME/exaca/bin/ExaCA-Kokkos Inp_SmallDirSolidification.json
mpirun -n 2 --oversubscribe $HOME/exaca/bin/ExaCA-Kokkos Inp_SmallSpotMelt.json
$HOME/exaca/bin/ExaCA Inp_SmallDirSolidification.json
$HOME/exaca/bin/ExaCA Inp_SmallSpotMelt.json
mpirun -n 2 --oversubscribe $HOME/exaca/bin/ExaCA Inp_SmallDirSolidification.json
mpirun -n 2 --oversubscribe $HOME/exaca/bin/ExaCA Inp_SmallSpotMelt.json
- name: Test GA
working-directory: analysis/examples
run: |
$HOME/exaca/bin/ExaCA-Kokkos ../../examples/Inp_SmallDirSolidification.json
$HOME/exaca/bin/grain_analysis AnalyzeSmallDirS.json TestProblemSmallDirS
$HOME/exaca/bin/ExaCA ../../examples/Inp_SmallDirSolidification.json
$HOME/exaca/bin/ExaCA-GrainAnalysis AnalyzeSmallDirS.json TestProblemSmallDirS
- name: Test Finch-ExaCA
if: ${{ matrix.heat_transfer == 'Finch' }}
working-directory: utilities/Finch
Expand Down
6 changes: 0 additions & 6 deletions analysis/bin/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
add_executable(ExaCA-GrainAnalysis runGA.cpp)
target_link_libraries(ExaCA-GrainAnalysis ExaCA-Analysis)
install(TARGETS ExaCA-GrainAnalysis DESTINATION ${CMAKE_INSTALL_BINDIR})

# Symlink for backwards compatibility
add_custom_target(grain_analysis ALL COMMAND ${CMAKE_COMMAND} -E create_symlink
ExaCA-GrainAnalysis grain_analysis)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/grain_analysis
DESTINATION ${CMAKE_INSTALL_BINDIR})
6 changes: 0 additions & 6 deletions bin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@ add_executable(ExaCA run.cpp)
target_link_libraries(ExaCA ExaCA-Core)
install(TARGETS ExaCA DESTINATION ${CMAKE_INSTALL_BINDIR})

# Symlink for backwards compatibility
add_custom_target(ExaCA-Kokkos ALL COMMAND ${CMAKE_COMMAND} -E create_symlink
ExaCA ExaCA-Kokkos)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/ExaCA-Kokkos
DESTINATION ${CMAKE_INSTALL_BINDIR})

if(ExaCA_ENABLE_FINCH)
add_executable(Finch-ExaCA runCoupled.cpp)
target_link_libraries(Finch-ExaCA ExaCA-Core)
Expand Down