├── .github ├── docker-compose.yml ├── scripts │ └── build-gh-pages.sh ├── spack.yaml └── workflows │ ├── build-env │ └── action.yml │ ├── ci_checks.yaml │ └── docs.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── fenixConfig.cmake.in └── systemMPIOverride.cmake ├── doc ├── CMakeLists.txt ├── DoxygenLayout.xml ├── fake_init.h ├── fenix_spec.pdf ├── html │ ├── CMakeLists.txt │ ├── DoxygenStyle.css │ ├── header.html │ ├── index.html.in │ ├── version_select_handler.js │ └── version_selector.html.in ├── images │ └── fenix_process_flow.png └── markdown │ ├── DataRecovery.md │ ├── IMR.md │ ├── Introduction.md │ └── ProcessRecovery.md ├── examples ├── 01_hello_world │ ├── fenix │ │ ├── CMakeLists.txt │ │ └── fenix_hello_world.c │ └── mpi │ │ ├── CMakeLists.txt │ │ └── mpi_hello_world.c ├── 02_send_recv │ ├── fenix │ │ ├── CMakeLists.txt │ │ └── fenix_ring.c │ └── mpi │ │ ├── CMakeLists.txt │ │ └── mpi_ring.c ├── 03_reduce │ ├── fenix │ │ ├── CMakeLists.txt │ │ └── fenix_reduce.c │ └── mpi │ │ ├── CMakeLists.txt │ │ └── mpi_reduce.c ├── 04_Isend_Irecv │ ├── fenix │ │ ├── CMakeLists.txt │ │ ├── fenix_stencil_1D.c │ │ └── run.batch │ └── mpi │ │ ├── CMakeLists.txt │ │ ├── mpi_stencil_1D.c │ │ └── run.batch ├── 05_subset_create │ ├── CMakeLists.txt │ └── subset_create.c ├── 06_subset_createv │ ├── CMakeLists.txt │ ├── run.batch │ └── subset_createv.c └── CMakeLists.txt ├── include ├── fenix-config.h.in ├── fenix.h ├── fenix_comm_list.h ├── fenix_data_group.h ├── fenix_data_member.h ├── fenix_data_packet.h ├── fenix_data_policy.h ├── fenix_data_policy_in_memory_raid.h ├── fenix_data_recovery.h ├── fenix_data_subset.h ├── fenix_ext.h ├── fenix_f.h ├── fenix_opt.h ├── fenix_process_recovery.h ├── fenix_process_recovery_global.h └── fenix_util.h ├── src ├── CMakeLists.txt ├── fenix.c ├── fenix_callbacks.c ├── fenix_comm_list.c ├── fenix_data_group.c ├── fenix_data_member.c ├── fenix_data_policy.c ├── fenix_data_policy_in_memory_raid.c ├── fenix_data_recovery.c ├── fenix_data_subset.c ├── fenix_dynamic_array.h ├── fenix_mpi_override.c ├── fenix_opt.c ├── fenix_process_recovery.c ├── fenix_stack.h ├── fenix_util.c └── globals.c └── test ├── CMakeLists.txt ├── failed_spares ├── CMakeLists.txt └── fenix_failed_spares.c ├── issend ├── CMakeLists.txt └── fenix_issend_test.c ├── no_jump ├── CMakeLists.txt └── fenix_no_jump_test.c ├── request_cancelled ├── CMakeLists.txt └── fenix_req_cancelled_test.c ├── request_tracking ├── CMakeLists.txt └── fenix_request_tracking_test.c ├── subset_internal ├── CMakeLists.txt └── fenix_subset_internal_test.c └── subset_merging ├── CMakeLists.txt └── fenix_subset_merging_test.c /.github/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/.github/docker-compose.yml -------------------------------------------------------------------------------- /.github/scripts/build-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/.github/scripts/build-gh-pages.sh -------------------------------------------------------------------------------- /.github/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/.github/spack.yaml -------------------------------------------------------------------------------- /.github/workflows/build-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/.github/workflows/build-env/action.yml -------------------------------------------------------------------------------- /.github/workflows/ci_checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/.github/workflows/ci_checks.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/README.md -------------------------------------------------------------------------------- /cmake/fenixConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/cmake/fenixConfig.cmake.in -------------------------------------------------------------------------------- /cmake/systemMPIOverride.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/cmake/systemMPIOverride.cmake -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/DoxygenLayout.xml -------------------------------------------------------------------------------- /doc/fake_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/fake_init.h -------------------------------------------------------------------------------- /doc/fenix_spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/fenix_spec.pdf -------------------------------------------------------------------------------- /doc/html/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/html/CMakeLists.txt -------------------------------------------------------------------------------- /doc/html/DoxygenStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/html/DoxygenStyle.css -------------------------------------------------------------------------------- /doc/html/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/html/header.html -------------------------------------------------------------------------------- /doc/html/index.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/html/index.html.in -------------------------------------------------------------------------------- /doc/html/version_select_handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/html/version_select_handler.js -------------------------------------------------------------------------------- /doc/html/version_selector.html.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/html/version_selector.html.in -------------------------------------------------------------------------------- /doc/images/fenix_process_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/images/fenix_process_flow.png -------------------------------------------------------------------------------- /doc/markdown/DataRecovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/markdown/DataRecovery.md -------------------------------------------------------------------------------- /doc/markdown/IMR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/markdown/IMR.md -------------------------------------------------------------------------------- /doc/markdown/Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/markdown/Introduction.md -------------------------------------------------------------------------------- /doc/markdown/ProcessRecovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/doc/markdown/ProcessRecovery.md -------------------------------------------------------------------------------- /examples/01_hello_world/fenix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/01_hello_world/fenix/CMakeLists.txt -------------------------------------------------------------------------------- /examples/01_hello_world/fenix/fenix_hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/01_hello_world/fenix/fenix_hello_world.c -------------------------------------------------------------------------------- /examples/01_hello_world/mpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/01_hello_world/mpi/CMakeLists.txt -------------------------------------------------------------------------------- /examples/01_hello_world/mpi/mpi_hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/01_hello_world/mpi/mpi_hello_world.c -------------------------------------------------------------------------------- /examples/02_send_recv/fenix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/02_send_recv/fenix/CMakeLists.txt -------------------------------------------------------------------------------- /examples/02_send_recv/fenix/fenix_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/02_send_recv/fenix/fenix_ring.c -------------------------------------------------------------------------------- /examples/02_send_recv/mpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/02_send_recv/mpi/CMakeLists.txt -------------------------------------------------------------------------------- /examples/02_send_recv/mpi/mpi_ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/02_send_recv/mpi/mpi_ring.c -------------------------------------------------------------------------------- /examples/03_reduce/fenix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/03_reduce/fenix/CMakeLists.txt -------------------------------------------------------------------------------- /examples/03_reduce/fenix/fenix_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/03_reduce/fenix/fenix_reduce.c -------------------------------------------------------------------------------- /examples/03_reduce/mpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/03_reduce/mpi/CMakeLists.txt -------------------------------------------------------------------------------- /examples/03_reduce/mpi/mpi_reduce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/03_reduce/mpi/mpi_reduce.c -------------------------------------------------------------------------------- /examples/04_Isend_Irecv/fenix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/04_Isend_Irecv/fenix/CMakeLists.txt -------------------------------------------------------------------------------- /examples/04_Isend_Irecv/fenix/fenix_stencil_1D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/04_Isend_Irecv/fenix/fenix_stencil_1D.c -------------------------------------------------------------------------------- /examples/04_Isend_Irecv/fenix/run.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/04_Isend_Irecv/fenix/run.batch -------------------------------------------------------------------------------- /examples/04_Isend_Irecv/mpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/04_Isend_Irecv/mpi/CMakeLists.txt -------------------------------------------------------------------------------- /examples/04_Isend_Irecv/mpi/mpi_stencil_1D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/04_Isend_Irecv/mpi/mpi_stencil_1D.c -------------------------------------------------------------------------------- /examples/04_Isend_Irecv/mpi/run.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/04_Isend_Irecv/mpi/run.batch -------------------------------------------------------------------------------- /examples/05_subset_create/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/05_subset_create/CMakeLists.txt -------------------------------------------------------------------------------- /examples/05_subset_create/subset_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/05_subset_create/subset_create.c -------------------------------------------------------------------------------- /examples/06_subset_createv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/06_subset_createv/CMakeLists.txt -------------------------------------------------------------------------------- /examples/06_subset_createv/run.batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/06_subset_createv/run.batch -------------------------------------------------------------------------------- /examples/06_subset_createv/subset_createv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/06_subset_createv/subset_createv.c -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /include/fenix-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix-config.h.in -------------------------------------------------------------------------------- /include/fenix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix.h -------------------------------------------------------------------------------- /include/fenix_comm_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_comm_list.h -------------------------------------------------------------------------------- /include/fenix_data_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_data_group.h -------------------------------------------------------------------------------- /include/fenix_data_member.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_data_member.h -------------------------------------------------------------------------------- /include/fenix_data_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_data_packet.h -------------------------------------------------------------------------------- /include/fenix_data_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_data_policy.h -------------------------------------------------------------------------------- /include/fenix_data_policy_in_memory_raid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_data_policy_in_memory_raid.h -------------------------------------------------------------------------------- /include/fenix_data_recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_data_recovery.h -------------------------------------------------------------------------------- /include/fenix_data_subset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_data_subset.h -------------------------------------------------------------------------------- /include/fenix_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_ext.h -------------------------------------------------------------------------------- /include/fenix_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_f.h -------------------------------------------------------------------------------- /include/fenix_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_opt.h -------------------------------------------------------------------------------- /include/fenix_process_recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_process_recovery.h -------------------------------------------------------------------------------- /include/fenix_process_recovery_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_process_recovery_global.h -------------------------------------------------------------------------------- /include/fenix_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/include/fenix_util.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/fenix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix.c -------------------------------------------------------------------------------- /src/fenix_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_callbacks.c -------------------------------------------------------------------------------- /src/fenix_comm_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_comm_list.c -------------------------------------------------------------------------------- /src/fenix_data_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_data_group.c -------------------------------------------------------------------------------- /src/fenix_data_member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_data_member.c -------------------------------------------------------------------------------- /src/fenix_data_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_data_policy.c -------------------------------------------------------------------------------- /src/fenix_data_policy_in_memory_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_data_policy_in_memory_raid.c -------------------------------------------------------------------------------- /src/fenix_data_recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_data_recovery.c -------------------------------------------------------------------------------- /src/fenix_data_subset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_data_subset.c -------------------------------------------------------------------------------- /src/fenix_dynamic_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_dynamic_array.h -------------------------------------------------------------------------------- /src/fenix_mpi_override.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_mpi_override.c -------------------------------------------------------------------------------- /src/fenix_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_opt.c -------------------------------------------------------------------------------- /src/fenix_process_recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_process_recovery.c -------------------------------------------------------------------------------- /src/fenix_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_stack.h -------------------------------------------------------------------------------- /src/fenix_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/fenix_util.c -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/src/globals.c -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/failed_spares/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/failed_spares/CMakeLists.txt -------------------------------------------------------------------------------- /test/failed_spares/fenix_failed_spares.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/failed_spares/fenix_failed_spares.c -------------------------------------------------------------------------------- /test/issend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/issend/CMakeLists.txt -------------------------------------------------------------------------------- /test/issend/fenix_issend_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/issend/fenix_issend_test.c -------------------------------------------------------------------------------- /test/no_jump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/no_jump/CMakeLists.txt -------------------------------------------------------------------------------- /test/no_jump/fenix_no_jump_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/no_jump/fenix_no_jump_test.c -------------------------------------------------------------------------------- /test/request_cancelled/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/request_cancelled/CMakeLists.txt -------------------------------------------------------------------------------- /test/request_cancelled/fenix_req_cancelled_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/request_cancelled/fenix_req_cancelled_test.c -------------------------------------------------------------------------------- /test/request_tracking/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/request_tracking/CMakeLists.txt -------------------------------------------------------------------------------- /test/request_tracking/fenix_request_tracking_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/request_tracking/fenix_request_tracking_test.c -------------------------------------------------------------------------------- /test/subset_internal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/subset_internal/CMakeLists.txt -------------------------------------------------------------------------------- /test/subset_internal/fenix_subset_internal_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/subset_internal/fenix_subset_internal_test.c -------------------------------------------------------------------------------- /test/subset_merging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/subset_merging/CMakeLists.txt -------------------------------------------------------------------------------- /test/subset_merging/fenix_subset_merging_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandialabs/Fenix/HEAD/test/subset_merging/fenix_subset_merging_test.c --------------------------------------------------------------------------------