File tree Expand file tree Collapse file tree 10 files changed +16
-16
lines changed Expand file tree Collapse file tree 10 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ set_target_properties(AdvForParallelFor PROPERTIES COMPILE_FLAGS "${MPI_Fortran_
24
24
set_target_properties (AdvForParallelFor PROPERTIES LINK_FLAGS "${MPI_Fortran_LINK_FLAGS} " )
25
25
26
26
target_link_libraries (AdvForParallelFor Cabana::cabanacore ${MPI_Fortran_LIBRARIES} kokkos_fortran_wrappers)
27
- add_test (NAME Fortran_advanced_example_01 COMMAND AdvForParallelFor)
27
+ add_test (NAME Fortran_AdvEx_01_ParFor COMMAND AdvForParallelFor)
28
28
set_property (TARGET AdvForParallelFor PROPERTY LINKER_LANGUAGE Fortran)
Original file line number Diff line number Diff line change @@ -25,5 +25,5 @@ set_target_properties(AdvForPush PROPERTIES COMPILE_FLAGS "${MPI_Fortran_COMPILE
25
25
set_target_properties (AdvForPush PROPERTIES LINK_FLAGS "${MPI_Fortran_LINK_FLAGS} " )
26
26
27
27
target_link_libraries (AdvForPush Cabana::cabanacore ${MPI_Fortran_LIBRARIES} kokkos_fortran_wrappers)
28
- add_test (NAME Fortran_advanced_example_02 COMMAND AdvForPush)
28
+ add_test (NAME Fortran_AdvEx_02_Push COMMAND AdvForPush)
29
29
set_property (TARGET AdvForPush PROPERTY LINKER_LANGUAGE Fortran)
Original file line number Diff line number Diff line change @@ -25,5 +25,5 @@ set_target_properties(AdvForScatter PROPERTIES COMPILE_FLAGS "${MPI_Fortran_COMP
25
25
set_target_properties (AdvForScatter PROPERTIES LINK_FLAGS "${MPI_Fortran_LINK_FLAGS} " )
26
26
27
27
target_link_libraries (AdvForScatter Cabana::cabanacore ${MPI_Fortran_LIBRARIES} kokkos_fortran_wrappers)
28
- add_test (NAME Fortran_advanced_example_03 COMMAND AdvForScatter)
28
+ add_test (NAME Fortran_AdvEx_03_Scatter COMMAND AdvForScatter)
29
29
set_property (TARGET AdvForScatter PROPERTY LINKER_LANGUAGE Fortran)
Original file line number Diff line number Diff line change 30
30
endif ()
31
31
32
32
target_link_libraries (ForParallelForUnmanaged Cabana::cabanacore ${MPI_Fortran_LIBRARIES} )
33
- add_test (NAME Fortran_advance_example_04 COMMAND ForParallelForUnmanaged)
33
+ add_test (NAME Fortran_AdvEx_04_Unmanaged COMMAND ForParallelForUnmanaged)
34
34
set_property (TARGET ForParallelForUnmanaged PROPERTY LINKER_LANGUAGE Fortran)
35
35
add_definitions (${MPI_Fortran_COMPILE_FLAGS} )
36
36
include_directories (${MPI_Fortran_INCLUDE_PATH} ${CMAKE_CURRENT_BINARY_DIR} /../Fortran_features)
Original file line number Diff line number Diff line change 1
1
add_executable (ForHelloWorld main.cpp hello_world.f90)
2
2
target_link_libraries (ForHelloWorld Cabana::cabanacore)
3
- add_test (NAME Fortran_tutorial_01 COMMAND ForHelloWorld)
3
+ add_test (NAME Fortran_Tutorial_01_HelloWorld COMMAND ForHelloWorld)
Original file line number Diff line number Diff line change 1
- add_executable (ForTuple main.cpp tuple_example.f90)
2
- target_link_libraries (ForTuple Cabana::cabanacore)
3
- add_test (NAME Fortran_tutorial_02 COMMAND ForTuple)
1
+ add_executable (ForTuple main.cpp tuple_example.f90)
2
+ target_link_libraries (ForTuple Cabana::cabanacore)
3
+ add_test (NAME Fortran_Tutorial_02_Tuple COMMAND ForTuple)
Original file line number Diff line number Diff line change 1
- add_executable (ForStructOfArrays main.cpp soa_example.F90)
2
- target_link_libraries (ForStructOfArrays Cabana::cabanacore)
3
- add_test (NAME Fortran_tutorial_03 COMMAND ForStructOfArrays)
1
+ add_executable (ForStructOfArrays main.cpp soa_example.F90)
2
+ target_link_libraries (ForStructOfArrays Cabana::cabanacore)
3
+ add_test (NAME Fortran_Tutorial_03_SoA COMMAND ForStructOfArrays)
Original file line number Diff line number Diff line change 1
- add_executable (ForArrayOfStructsOfArrays main.cpp aosoa_example.F90)
2
- target_link_libraries (ForArrayOfStructsOfArrays Cabana::cabanacore)
3
- add_test (NAME Fortran_tutorial_04 COMMAND ForArrayOfStructsOfArrays)
1
+ add_executable (ForArrayOfStructsOfArrays main.cpp aosoa_example.F90)
2
+ target_link_libraries (ForArrayOfStructsOfArrays Cabana::cabanacore)
3
+ add_test (NAME Fortran_Tutorial_04_AoSoA COMMAND ForArrayOfStructsOfArrays)
Original file line number Diff line number Diff line change 1
1
add_executable (ForParallelFor Fortran_main.f90 Fortran_kernels.F90 parallel_for_example.cpp)
2
2
target_link_libraries (ForParallelFor Cabana::cabanacore)
3
- add_test (NAME Fortran_tutorial_05 COMMAND ForParallelFor)
3
+ add_test (NAME Fortran_Tutorial_05_ParFor COMMAND ForParallelFor)
4
4
set_property (TARGET ForParallelFor PROPERTY LINKER_LANGUAGE CXX)
5
5
6
6
if (("${CMAKE_Fortran_COMPILER_ID} " STREQUAL "PGI" ) AND ("${CMAKE_CXX_COMPILER_ID} " STREQUAL "PGI" ))
Original file line number Diff line number Diff line change 1
1
add_executable (ForKKParallelFor Fortran_main.f90 Fortran_kernel.F90 hello_world.cpp)
2
2
target_link_libraries (ForKKParallelFor Cabana::cabanacore)
3
- add_test (NAME Fortran_tutorial_06 COMMAND ForKKParallelFor)
3
+ add_test (NAME Fortran_Tutorial_06_KParFor COMMAND ForKKParallelFor)
4
4
set_property (TARGET ForKKParallelFor PROPERTY LINKER_LANGUAGE CXX)
5
5
6
6
if (CMAKE_Fortran_COMPILER_ID STREQUAL "PGI" )
You can’t perform that action at this time.
0 commit comments