├── .clang-format ├── .codecov.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab-ci ├── config │ ├── mirrors.yaml │ └── upstreams.yaml ├── index.yaml └── scripts │ ├── .before-script.yml │ ├── .global-variables.yml │ ├── .templates.yml │ ├── build-n-test-jobs.yml │ ├── env-jobs.yml │ ├── schedules │ └── build-n-test-jobs.yml │ └── trigger-jobs.yml ├── .gitlab └── merge_request_templates │ └── general.md ├── .gitmodules ├── .travis.yml ├── CMakeLists.txt ├── CODEOWNERS ├── CONTRIBUTING.md ├── CONTROL_REPLICATION_REFACTOR.md ├── LICENSE ├── README.md ├── RELEASE.md ├── SCALING.md ├── VERSION ├── WORKING ├── arch ├── developer-clang ├── developer-flecsi ├── developer-gnu ├── developer-intel ├── full-clang ├── full-gnu ├── generic-clang ├── generic-gnu ├── legion-gnu └── strict-gnu ├── auxiliary ├── clang │ └── README.md ├── patterns │ ├── 01-meyers_singleton │ │ ├── main.cc │ │ └── meyers_singleton.h │ ├── 02-object_factory │ │ └── factory.h │ ├── 03-type_erasure │ │ └── type_erasure.md │ ├── 04-CRTP │ │ └── CRTP.md │ └── 05-tuple_walker │ │ └── tuple_walker.md └── vim │ ├── README.md │ ├── ftdetect_fcc.vim │ ├── install │ └── syntax_fcc.vim ├── bin └── scaling │ ├── cell.cc │ ├── connectivities.cc │ ├── create_entity.cc │ ├── edge.cc │ ├── entity_types.cc │ ├── init.cc │ ├── main.cc │ ├── main.cpp │ ├── traversal.cc │ └── vertex.cc ├── config ├── .clang-format ├── FleCSIConfig.cmake.in ├── brand.py ├── flecsi-config.h.in └── project.cmake ├── developer ├── BACKEND.md ├── CI.md ├── CXX_STANDARD.md ├── DOCUMENTATION.md ├── GIT.md ├── LARistraDependency.md ├── README.md ├── REFACTOR_NOTES.md ├── debug_build.sh ├── laristrachile.png ├── ristraDependencyGraph.png ├── template.cc ├── template.h ├── template.txt ├── travis-workflow.png └── travisCIgraph.png ├── doc ├── data_model │ ├── DataRequirements.pdf │ ├── DataRequirements.tex │ ├── FieldRequirements.tex │ ├── Introduction.tex │ ├── ParticleRequirements.tex │ ├── PhysicalModelData.tex │ ├── Requirements.tex │ ├── ResearchNote_pdf.cls │ ├── SimConstData.tex │ ├── SimMutableData.tex │ ├── algorithm.sty │ ├── algorithm2e.sty │ ├── algorithmic.sty │ ├── figures │ │ ├── Boxologies.pptx │ │ └── SimpleHierarchy.pdf │ ├── logo.eps │ ├── logo.jpg │ ├── tmadd.sty │ └── tmath.sty ├── doxygen-header.html ├── doxygen-mainpage.md ├── doxygen-setup.h ├── doxygen.conf.in ├── doxygen │ └── images │ │ ├── element_ordering │ │ ├── hexahedron-edges.png │ │ ├── hexahedron-edges.svg │ │ ├── hexahedron-faces.png │ │ ├── hexahedron-faces.svg │ │ ├── quadrilateral.png │ │ ├── quadrilateral.svg │ │ ├── tetrahedron-edges.png │ │ ├── tetrahedron-edges.svg │ │ ├── tetrahedron-faces.png │ │ ├── tetrahedron-faces.svg │ │ ├── triangle.png │ │ └── triangle.svg │ │ ├── hierarchy.png │ │ ├── scale-hierarchy.png │ │ └── tutorial-00-cfg.png ├── flecsi-documentation-figures.pptx ├── flecsi-favicon.ico ├── flecsi-square.png ├── flecsi.png ├── flecsi_dg.py ├── flecsi_dg_header.tex.in ├── flecsi_dg_title.tex ├── flecsi_ug.py ├── flecsi_ug_header.tex.in ├── flecsi_ug_title.tex ├── medium-flecsi.png ├── sagittarius.svg └── small-flecsi.png ├── docker └── Dockerfile ├── flecsi-tutorial ├── 00-driver │ ├── Makefile │ └── driver.cc ├── 01-tasks │ ├── Makefile │ └── tasks.cc ├── 02-data-clients │ ├── Makefile │ ├── README.md │ └── data-clients.cc ├── 03-index-spaces │ ├── Makefile │ └── index-spaces.cc ├── 04-fields │ ├── Makefile │ └── fields.cc ├── 05-dense-data │ ├── Makefile │ ├── dense-data.cc │ └── types.h ├── 06-sparse-data │ ├── Makefile │ └── sparse-data.cc ├── 07-ragged-data │ ├── Makefile │ └── ragged-data.cc ├── 08-mpi-interoperability │ ├── Makefile │ └── mpi-interoperability.cc ├── 09-forall │ ├── Makefile │ └── forall.fcc ├── 10-global-objects │ ├── GLOBAL-OBJECTS.md │ ├── Makefile │ └── global-objects.cc ├── XX-functions │ └── functions.cc ├── XX-futures │ └── futures.cc ├── clean ├── docker │ ├── README.md │ ├── configfiles │ │ ├── .bash │ │ │ ├── colors │ │ │ └── functions │ │ ├── .bashrc │ │ ├── .dircolors │ │ ├── .modulefiles │ │ │ └── aliases │ │ └── .vimrc │ ├── legion │ └── mpi └── specialization │ ├── README.md │ ├── control │ ├── CMakeLists.txt │ ├── control.cc │ ├── control.h │ ├── node_type.h │ └── policy.h │ ├── inputs │ └── simple2d-16x16.msh │ ├── io │ ├── CMakeLists.txt │ └── vtk │ │ ├── rectilinearGrid.h │ │ ├── structuredGrid.h │ │ ├── unstructuredGrid.h │ │ └── vtkMPI.h │ └── mesh │ ├── CMakeLists.txt │ ├── coloring.cc │ ├── coloring.h │ ├── control_points.cc │ ├── entity_types.h │ ├── inputs.h │ ├── mesh.h │ ├── policy.h │ └── tasks.h ├── flecsi ├── canonical-mesh.pdf ├── charter.md ├── code-structure.pdf ├── colored-mesh.pdf ├── coloring │ ├── CMakeLists.txt │ ├── adjacency_types.h │ ├── box_colorer.h │ ├── box_types.h │ ├── colorer.h │ ├── coloring_types.h │ ├── communicator.h │ ├── concept.h │ ├── crs.h │ ├── dcrs_utils.h │ ├── index_coloring.h │ ├── metis_colorer.h │ ├── mpi_communicator.h │ ├── naive_colorer.h │ ├── parmetis_colorer.h │ ├── parmetis_geom_colorer.h │ ├── parmetis_geomkway_colorer.h │ ├── parmetis_repart_colorer.h │ ├── simple_box_colorer.h │ └── test │ │ ├── coloring.cc │ │ ├── dcrs.cc │ │ ├── devel-dcrs.cc │ │ ├── exodus2d-mixed.exo │ │ ├── exodus3d-hex.exo │ │ ├── index_coloring.blessed │ │ ├── index_coloring.cc │ │ ├── simple2d-16x16.msh │ │ ├── simple2d-32x32.msh │ │ ├── simple2d-48x48.msh │ │ ├── simple2d-8x8.msh │ │ ├── test_simple_box_colorer_2d.cc │ │ └── test_simple_box_colorer_3d.cc ├── concurrency │ ├── CMakeLists.txt │ ├── thread_pool.h │ └── virtual_semaphore.h ├── control │ ├── CMakeLists.txt │ ├── control.h │ ├── macro.h │ ├── phase_walker.h │ ├── runtime.h │ ├── runtime_main.cc │ └── test │ │ ├── control.cc │ │ ├── node_type.h │ │ ├── policy.h │ │ ├── runtime_model.cc │ │ └── runtimes.h ├── data │ ├── CMakeLists.txt │ ├── accessor.h │ ├── client.h │ ├── common │ │ ├── data_hash.h │ │ ├── data_reference.h │ │ ├── data_types.h │ │ ├── privilege.h │ │ ├── registration_wrapper.h │ │ ├── row_vector.h │ │ └── serdez.h │ ├── data.h │ ├── data.md │ ├── data_client.h │ ├── data_client_handle.h │ ├── data_constants.h │ ├── dense_accessor.h │ ├── dense_data_handle.h │ ├── field.h │ ├── global_accessor.h │ ├── global_data_handle.h │ ├── hpx │ │ ├── data_client_handle_policy.h │ │ ├── data_handle_policy.h │ │ ├── data_policy.h │ │ ├── dense.h │ │ ├── global.h │ │ ├── meta_data.h │ │ ├── registration_wrapper.h │ │ ├── scoped.h │ │ ├── sparse.h │ │ ├── sparse_data_handle_policy.h │ │ ├── storage_policy.h │ │ └── tuple.h │ ├── internal_client.cc │ ├── internal_client.h │ ├── legion │ │ ├── color.h │ │ ├── data_client_handle_policy.h │ │ ├── data_policy.h │ │ ├── dense.h │ │ ├── dense_data_handle_policy.h │ │ ├── global.h │ │ ├── global_data_handle_policy.h │ │ ├── legion_data.h │ │ ├── scoped.h │ │ ├── sparse.h │ │ ├── sparse_data_handle_policy.h │ │ ├── storage_policy.h │ │ └── tuple.h │ ├── mpi │ │ ├── color.h │ │ ├── data_client_handle_policy.h │ │ ├── data_handle_policy.h │ │ ├── data_policy.h │ │ ├── dense.h │ │ ├── global.h │ │ ├── sparse.h │ │ ├── sparse_data_handle_policy.h │ │ └── storage_policy.h │ ├── mutator.h │ ├── ragged_accessor.h │ ├── ragged_mutator.h │ ├── set_topology_handle.h │ ├── sparse_accessor.h │ ├── sparse_data_handle.h │ ├── sparse_mutator.h │ ├── storage.h │ ├── storage_class.h │ └── test │ │ ├── client_registration.cc │ │ ├── data-handle-serial.h │ │ ├── data-handle.h │ │ ├── storage_class.cc │ │ └── storage_class.h ├── developer-guide.md ├── execution │ ├── CMakeLists.txt │ ├── common │ │ ├── execution_state.h │ │ ├── function_handle.h │ │ ├── launch.h │ │ └── processor.h │ ├── context.h │ ├── default_driver.h │ ├── driver_initialization.cc │ ├── execution-structure.pdf │ ├── execution.h │ ├── execution.md │ ├── function.h │ ├── global_object_wrapper.h │ ├── hpx │ │ ├── context_policy.cc │ │ ├── context_policy.h │ │ ├── execution_policy.h │ │ ├── future.h │ │ ├── internal_task.h │ │ ├── processor_policy.h │ │ ├── runtime_driver.cc │ │ ├── runtime_driver.h │ │ ├── runtime_main.cc │ │ └── task_wrapper.h │ ├── internal_index_space.h │ ├── kernel.h │ ├── legion │ │ ├── context_policy.cc │ │ ├── context_policy.h │ │ ├── execution_policy.h │ │ ├── finalize_handles.h │ │ ├── future.h │ │ ├── helper.h │ │ ├── init_args.h │ │ ├── init_handles.h │ │ ├── internal_field.h │ │ ├── internal_task.h │ │ ├── legion_tasks.cc │ │ ├── legion_tasks.h │ │ ├── mapper.h │ │ ├── reduction_wrapper.h │ │ ├── registration_wrapper.h │ │ ├── runtime_driver.cc │ │ ├── runtime_driver.h │ │ ├── runtime_main.cc │ │ ├── runtime_state.h │ │ ├── task_epilog.h │ │ ├── task_prolog.h │ │ └── task_wrapper.h │ ├── mpi │ │ ├── context_policy.cc │ │ ├── context_policy.h │ │ ├── execution_policy.h │ │ ├── finalize_handles.h │ │ ├── future.h │ │ ├── future.h_tmp │ │ ├── reduction_wrapper.h │ │ ├── runtime_driver.cc │ │ ├── runtime_driver.h │ │ ├── runtime_main.cc │ │ ├── task_epilog.h │ │ └── task_prolog.h │ ├── reduction.h │ ├── remap_shared.h │ ├── task.h │ └── test │ │ ├── concept_coloring.cc │ │ ├── data_client_handle.blessed │ │ ├── data_client_handle.cc │ │ ├── data_handle_task.cc │ │ ├── dense_data.blessed │ │ ├── dense_data.cc │ │ ├── devel_handle.cc │ │ ├── execution_structure.cc │ │ ├── finite_difference_dense.cc │ │ ├── finite_difference_sparse.cc │ │ ├── forall.fcc │ │ ├── future_handle.cc │ │ ├── ghost_access_drivers.cc │ │ ├── gid_to_lid_map.cc │ │ ├── global_data.blessed │ │ ├── global_data.cc │ │ ├── gpu_task.cc │ │ ├── handle_accessor.cc │ │ ├── handle_list.cc │ │ ├── handle_tuple.cc │ │ ├── harness.cc │ │ ├── harness.h │ │ ├── index_subspaces.cc │ │ ├── kokkos.cc │ │ ├── launch.cc │ │ ├── legion │ │ ├── internal_task_driver.cc │ │ ├── mapper_compaction.cc │ │ ├── read_waits_on_write.cc │ │ └── serdez.cc │ │ ├── particles.cc │ │ ├── ragged_data.blessed │ │ ├── ragged_data.cc │ │ ├── reduction_interface.cc │ │ ├── restart.cc │ │ ├── set_topology.cc │ │ ├── simple2d-16x16.msh │ │ ├── simple2d-64x64.msh │ │ ├── simple2d-8x8.msh │ │ ├── simple_function.cc │ │ ├── simple_task.cc │ │ ├── sparse_data.blessed │ │ ├── sparse_data.cc │ │ ├── task_privileges_dense.blessed │ │ ├── task_privileges_dense.cc │ │ ├── task_privileges_sparse.blessed │ │ ├── task_privileges_sparse.cc │ │ ├── test_mpi_wo_permissions.cc │ │ └── unordered_ispaces.cc ├── geometry │ ├── CMakeLists.txt │ ├── point.h │ ├── space_vector.h │ └── test │ │ ├── point.cc │ │ └── space_vector.cc ├── index_spaces.md ├── io │ ├── CMakeLists.txt │ ├── backend.h │ ├── io.h │ ├── io.md │ ├── io_base.h │ ├── io_exodus.h │ ├── io_hdf5.h │ ├── io_interface.h │ ├── legion │ │ ├── policy.cc │ │ └── policy.h │ ├── mpi │ │ └── policy.h │ ├── simple_definition.h │ └── test │ │ ├── hdf5_restart.cc │ │ ├── io.cc │ │ ├── legion │ │ └── io_hdf5.cc │ │ ├── simple2d-16x16.msh │ │ ├── simple2d-4x4.msh │ │ ├── simple2d-8x8.msh │ │ └── simple_definition.cc ├── runtime │ ├── CMakeLists.txt │ ├── flecsi_runtime_context_policy.h │ ├── flecsi_runtime_data_client_handle_policy.h │ ├── flecsi_runtime_data_handle_policy.h │ ├── flecsi_runtime_data_policy.h │ ├── flecsi_runtime_entity_storage_policy.h │ ├── flecsi_runtime_execution_policy.h │ ├── flecsi_runtime_set_topology_policy.h │ ├── flecsi_runtime_storage_policy.h │ ├── flecsi_runtime_topology_policy.h │ └── types.h ├── supplemental │ ├── coloring │ │ ├── add_colorings.cc │ │ ├── add_colorings.h │ │ ├── coloring_functions.h │ │ ├── concept_coloring.cc │ │ ├── concept_coloring.h │ │ └── tikz.h │ └── mesh │ │ ├── empty_mesh_2d.h │ │ └── test_mesh_2d.h ├── topology │ ├── CMakeLists.txt │ ├── closure_utils.h │ ├── color_topology.h │ ├── common │ │ ├── array_buffer.h │ │ └── entity_storage.h │ ├── connectivity.h │ ├── entity_storage.h │ ├── global_topology.h │ ├── hpx │ │ ├── set_storage_policy.h │ │ └── storage_policy.h │ ├── index_space.h │ ├── legion │ │ ├── set_storage_policy.h │ │ └── storage_policy.h │ ├── mesh.h │ ├── mesh_definition.h │ ├── mesh_storage.h │ ├── mesh_topology.h │ ├── mesh_types.h │ ├── mesh_utils.h │ ├── mpi │ │ ├── set_storage_policy.h │ │ └── storage_policy.h │ ├── parallel_mesh_definition.h │ ├── partition.h │ ├── set_storage.h │ ├── set_topology.h │ ├── set_types.h │ ├── set_utils.h │ ├── structured_mesh_topology.h │ ├── test │ │ ├── bindings.blessed │ │ ├── bindings.cc │ │ ├── closure.cc │ │ ├── devel-closure.cc │ │ ├── dual.blessed │ │ ├── dual.cc │ │ ├── gravity-state.cc │ │ ├── gravity.cc │ │ ├── index-space.cc │ │ ├── pseudo_random.h │ │ ├── structured.cc │ │ ├── test_definition.h │ │ ├── traversal.blessed │ │ ├── traversal.cc │ │ ├── tree.blessed │ │ ├── tree.cc │ │ ├── tree1d.cc │ │ └── tree3d.cc │ ├── topology.md │ ├── tree_topology.h │ └── types.h ├── user-guide.md └── utils │ ├── CMakeLists.txt │ ├── annotation.h │ ├── array_ref.h │ ├── bit_buffer.h │ ├── checksum.h │ ├── common.h │ ├── const_string.h │ ├── dag.h │ ├── debruijn.cc │ ├── debruijn.h │ ├── demangle.cc │ ├── demangle.h │ ├── dimensioned_array.h │ ├── export_definitions.h │ ├── factory.h │ ├── fixed_vector.h │ ├── function_traits.h │ ├── graphviz.h │ ├── hash.h │ ├── humble.h │ ├── id.h │ ├── logging.h │ ├── macros.h │ ├── mpi_type_traits.h │ ├── offset.h │ ├── reorder.h │ ├── serialize.h │ ├── set_intersection.h │ ├── set_utils.h │ ├── simple_id.h │ ├── static_verify.h │ ├── target.h │ ├── test │ ├── array_ref.blessed │ ├── array_ref.blessed.gnug │ ├── array_ref.blessed.msvc │ ├── array_ref.cc │ ├── checksum.cc │ ├── clog.cc │ ├── common.blessed │ ├── common.blessed.gnug │ ├── common.blessed.msvc │ ├── common.blessed.ppc │ ├── common.cc │ ├── const_string.cc │ ├── dag.cc │ ├── debruijn.cc │ ├── demangle.cc │ ├── factory.blessed │ ├── factory.blessed.gnug │ ├── factory.blessed.msvc │ ├── factory.cc │ ├── fixed_vector.cc │ ├── function_traits.cc │ ├── hash.cc │ ├── humble.cc │ ├── id.blessed │ ├── id.blessed.gnug │ ├── id.blessed.msvc │ ├── id.cc │ ├── logging.cc │ ├── print_type.h │ ├── reflection.cc │ ├── reorder.cc │ ├── serialize.cc │ ├── set_intersection.cc │ ├── set_utils.blessed │ ├── set_utils.cc │ ├── simple_id.cc │ ├── static_verify.cc │ ├── tuple_type_converter.blessed.gnug │ ├── tuple_type_converter.blessed.msvc │ ├── tuple_type_converter.cc │ ├── tuple_walker.blessed │ ├── tuple_walker.cc │ ├── tuple_wrapper.cc │ ├── utility.blessed.gnug │ └── utility.cc │ ├── tuple_type_converter.h │ ├── tuple_visit.h │ ├── tuple_walker.h │ ├── tuple_wrapper.h │ ├── type_traits.h │ ├── typeify.h │ └── utility.h ├── io-poc ├── CMakeLists.txt ├── analysis.h ├── control │ ├── control.h │ ├── node_type.h │ └── policy.h ├── currents.h ├── fields.h ├── io-poc.cc ├── io.h ├── mesh.h ├── particles.h ├── runtime │ └── runtime_driver.h ├── special.h └── species.h ├── spack-repo ├── packages │ ├── flecsi │ │ └── package.py │ └── legion │ │ └── package.py └── repo.yaml ├── sphinx ├── _static │ ├── flecsi.py │ └── images │ │ ├── anvil.jpg │ │ ├── ecp.png │ │ ├── favicon.ico │ │ ├── flecsi.png │ │ ├── lanl.png │ │ └── nnsa.png ├── _templates │ └── layout.html ├── conf.py.in ├── index.rst └── src │ ├── build.rst │ ├── build │ └── options.rst │ ├── developer-guide.rst │ ├── developer-guide │ ├── patterns.rst │ ├── patterns │ │ ├── CRTP.rst │ │ ├── factory.rst │ │ ├── meyers_singleton.rst │ │ ├── policies.rst │ │ └── type_erasure.rst │ ├── style-guide.rst │ └── versioning.rst │ ├── doxygen.rst │ ├── doxygen │ ├── function.rst │ └── index.rst │ ├── team.rst │ ├── team │ ├── ben.jpg │ ├── ben.rst │ ├── christoph.jpg │ ├── christoph.rst │ ├── david.jpg │ ├── david.rst │ ├── irina.jpg │ ├── irina.rst │ ├── jonas.jpg │ ├── jonas.rst │ ├── jonathan.jpg │ ├── jonathan.rst │ ├── karen.jpg │ ├── karen.rst │ ├── nick.jpg │ ├── nick.rst │ ├── oleg.jpg │ ├── oleg.rst │ ├── ollie.jpg │ └── ollie.rst │ ├── tutorial.rst │ ├── tutorial │ ├── dense.rst │ ├── driver.rst │ ├── fields.rst │ ├── flecsit.rst │ ├── index-spaces.rst │ ├── mpi-interoperability.rst │ ├── ragged.rst │ ├── sparse.rst │ ├── specialization.rst │ ├── tasks.rst │ ├── topologies.rst │ └── topologies │ │ ├── octree.rst │ │ ├── set.rst │ │ ├── structured.rst │ │ └── unstructured.rst │ ├── user-guide.rst │ └── user-guide │ ├── control.rst │ ├── data.rst │ └── execution.rst └── tools ├── CMakeLists.txt ├── bin ├── flecsi-tutorial.csh.in ├── flecsi-tutorial.in ├── flecsi-tutorial.sh.in ├── flecsi.csh.in ├── flecsi.in └── flecsi.sh.in ├── find_guard ├── find_sources ├── flecsit ├── README.rst ├── bin │ ├── flecsit-completion.bash │ └── flecsit.in ├── flecsit.md ├── flecsit │ ├── __init__.py │ ├── base.py │ ├── driver.py │ ├── factory.py │ ├── services │ │ ├── __init__.py │ │ ├── analysis.py │ │ ├── analysis_driver │ │ │ ├── __init__.py │ │ │ ├── cmakelist.py │ │ │ └── execute.py │ │ ├── compile.py │ │ ├── compile_driver │ │ │ ├── __init__.py │ │ │ ├── cmakelists.py │ │ │ └── execute.py │ │ └── service_utils.py │ └── utils.py └── setup.py ├── flecstan ├── CMakeLists.txt ├── README.rst ├── compile.sh ├── example-field │ ├── incorrect-data-model.cc │ ├── incorrect-data-model.color │ ├── incorrect-data-model.full │ ├── incorrect-data-model.json │ ├── incorrect-data-model.plain │ ├── incorrect-type.cc │ ├── incorrect-type.color │ ├── incorrect-type.full │ ├── incorrect-type.json │ ├── incorrect-type.plain │ ├── mismatching-name.cc │ ├── mismatching-name.color │ ├── mismatching-name.full │ ├── mismatching-name.json │ ├── mismatching-name.plain │ ├── mismatching-namespace.cc │ ├── mismatching-namespace.color │ ├── mismatching-namespace.full │ ├── mismatching-namespace.json │ ├── mismatching-namespace.plain │ ├── readme.rst │ ├── type-data-range.cc │ ├── type-data-range.color │ ├── type-data-range.full │ ├── type-data-range.json │ ├── type-data-range.plain │ ├── version-out-of-range.cc │ ├── version-out-of-range.color │ ├── version-out-of-range.full │ ├── version-out-of-range.json │ └── version-out-of-range.plain ├── example │ ├── 01-task-good-register-execute-inside.cc │ ├── 01-task-good-register-execute-inside.color │ ├── 01-task-good-register-execute-inside.json │ ├── 01-task-good-register-execute-inside.plain │ ├── 02-task-good-register-execute-outside.cc │ ├── 02-task-good-register-execute-outside.color │ ├── 02-task-good-register-execute-outside.json │ ├── 02-task-good-register-execute-outside.plain │ ├── 03-task-good-register-execute-global.cc │ ├── 03-task-good-register-execute-global.color │ ├── 03-task-good-register-execute-global.json │ ├── 03-task-good-register-execute-global.plain │ ├── 04-task-good-register-not-ambiguous.cc │ ├── 04-task-good-register-not-ambiguous.color │ ├── 04-task-good-register-not-ambiguous.json │ ├── 04-task-good-register-not-ambiguous.plain │ ├── 05-task-warning-register-no-execute.cc │ ├── 05-task-warning-register-no-execute.color │ ├── 05-task-warning-register-no-execute.json │ ├── 05-task-warning-register-no-execute.plain │ ├── 06-task-warning-register-execute-warn.cc │ ├── 06-task-warning-register-execute-warn.color │ ├── 06-task-warning-register-execute-warn.json │ ├── 06-task-warning-register-execute-warn.plain │ ├── 07-task-warning-execute-wrong-function.cc │ ├── 07-task-warning-execute-wrong-function.color │ ├── 07-task-warning-execute-wrong-function.json │ ├── 07-task-warning-execute-wrong-function.plain │ ├── 08-task-ugly-register-execute-odd.cc │ ├── 08-task-ugly-register-execute-odd.color │ ├── 08-task-ugly-register-execute-odd.json │ ├── 08-task-ugly-register-execute-odd.plain │ ├── 09-task-compile-register-not-scope.cc │ ├── 09-task-compile-register-not-scope.color │ ├── 09-task-compile-register-not-scope.json │ ├── 09-task-compile-register-not-scope.plain │ ├── 10-task-compile-execute-not-scope.cc │ ├── 10-task-compile-execute-not-scope.color │ ├── 10-task-compile-execute-not-scope.json │ ├── 10-task-compile-execute-not-scope.plain │ ├── 11-task-compile-register-not-token.cc │ ├── 11-task-compile-register-not-token.color │ ├── 11-task-compile-register-not-token.json │ ├── 11-task-compile-register-not-token.plain │ ├── 12-task-compile-register-ambiguous.cc │ ├── 12-task-compile-register-ambiguous.color │ ├── 12-task-compile-register-ambiguous.json │ ├── 12-task-compile-register-ambiguous.plain │ ├── 13-task-compile-register-duplicate.cc │ ├── 13-task-compile-register-duplicate.color │ ├── 13-task-compile-register-duplicate.json │ ├── 13-task-compile-register-duplicate.plain │ ├── 14-task-run-flecsi-register-duplicate-hash.cc │ ├── 14-task-run-flecsi-register-duplicate-hash.color │ ├── 14-task-run-flecsi-register-duplicate-hash.json │ ├── 14-task-run-flecsi-register-duplicate-hash.plain │ ├── 15-task-run-segfault-register-forgot.cc │ ├── 15-task-run-segfault-register-forgot.color │ ├── 15-task-run-segfault-register-forgot.json │ ├── 15-task-run-segfault-register-forgot.plain │ ├── 16-task-run-segfault-execute-odd.cc │ ├── 16-task-run-segfault-execute-odd.color │ ├── 16-task-run-segfault-execute-odd.json │ ├── 16-task-run-segfault-execute-odd.plain │ ├── 17-task-run-segfault-register-typo.cc │ ├── 17-task-run-segfault-register-typo.color │ ├── 17-task-run-segfault-register-typo.json │ ├── 17-task-run-segfault-register-typo.plain │ ├── 18-task-run-segfault-register-odd.cc │ ├── 18-task-run-segfault-register-odd.color │ ├── 18-task-run-segfault-register-odd.json │ ├── 18-task-run-segfault-register-odd.plain │ ├── 19-task-good-task-return-value.cc │ ├── 19-task-good-task-return-value.color │ ├── 19-task-good-task-return-value.json │ ├── 19-task-good-task-return-value.plain │ ├── 20-task-compile-argument-missing.cc │ ├── 20-task-compile-argument-missing.color │ ├── 20-task-compile-argument-missing.json │ ├── 20-task-compile-argument-missing.plain │ ├── 21-task-compile-argument-too-few.cc │ ├── 21-task-compile-argument-too-few.color │ ├── 21-task-compile-argument-too-few.json │ ├── 21-task-compile-argument-too-few.plain │ ├── 22-task-compile-argument-too-many.cc │ ├── 22-task-compile-argument-too-many.color │ ├── 22-task-compile-argument-too-many.json │ ├── 22-task-compile-argument-too-many.plain │ ├── 23-task-good-argument-int2double.cc │ ├── 23-task-good-argument-int2double.color │ ├── 23-task-good-argument-int2double.json │ ├── 23-task-good-argument-int2double.plain │ ├── 24-task-good-argument-double2int.cc │ ├── 24-task-good-argument-double2int.color │ ├── 24-task-good-argument-double2int.json │ ├── 24-task-good-argument-double2int.plain │ ├── 25-task-compile-register-duplicate-but.cc │ ├── 25-task-compile-register-duplicate-but.color │ ├── 25-task-compile-register-duplicate-but.json │ ├── 25-task-compile-register-duplicate-but.plain │ └── README.rst ├── src │ ├── flecstan-analysis.cc │ ├── flecstan-analysis.h │ ├── flecstan-arg.cc │ ├── flecstan-arg.h │ ├── flecstan-config.h │ ├── flecstan-config.h.in │ ├── flecstan-diagnostic.cc │ ├── flecstan-diagnostic.h │ ├── flecstan-macro.h │ ├── flecstan-main.cc │ ├── flecstan-misc.cc │ ├── flecstan-misc.h │ ├── flecstan-prep.cc │ ├── flecstan-prep.h │ ├── flecstan-utility.cc │ ├── flecstan-utility.h │ ├── flecstan-visitor.cc │ ├── flecstan-visitor.h │ ├── flecstan-yaml.cc │ └── flecstan-yaml.h └── talks │ ├── 2018-aug-13.pdf │ ├── 2018-oct-23.pdf │ ├── 2019-jul-02.pdf │ └── 2019-mar-12.pdf ├── format ├── mesh-gen └── main.cc ├── replace_double_underscore.sh ├── simple-ast ├── 2018-oct-23.pdf ├── one.hh ├── runme ├── two.cc └── visit.cc └── texit /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.clang-format -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab-ci/config/mirrors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/config/mirrors.yaml -------------------------------------------------------------------------------- /.gitlab-ci/config/upstreams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/config/upstreams.yaml -------------------------------------------------------------------------------- /.gitlab-ci/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/index.yaml -------------------------------------------------------------------------------- /.gitlab-ci/scripts/.before-script.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/scripts/.before-script.yml -------------------------------------------------------------------------------- /.gitlab-ci/scripts/.global-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/scripts/.global-variables.yml -------------------------------------------------------------------------------- /.gitlab-ci/scripts/.templates.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/scripts/.templates.yml -------------------------------------------------------------------------------- /.gitlab-ci/scripts/build-n-test-jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/scripts/build-n-test-jobs.yml -------------------------------------------------------------------------------- /.gitlab-ci/scripts/env-jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/scripts/env-jobs.yml -------------------------------------------------------------------------------- /.gitlab-ci/scripts/schedules/build-n-test-jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/scripts/schedules/build-n-test-jobs.yml -------------------------------------------------------------------------------- /.gitlab-ci/scripts/trigger-jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab-ci/scripts/trigger-jobs.yml -------------------------------------------------------------------------------- /.gitlab/merge_request_templates/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitlab/merge_request_templates/general.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTROL_REPLICATION_REFACTOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/CONTROL_REPLICATION_REFACTOR.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SCALING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/SCALING.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | 3 | echo "1.4" 4 | -------------------------------------------------------------------------------- /WORKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/WORKING -------------------------------------------------------------------------------- /arch/developer-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/developer-clang -------------------------------------------------------------------------------- /arch/developer-flecsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/developer-flecsi -------------------------------------------------------------------------------- /arch/developer-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/developer-gnu -------------------------------------------------------------------------------- /arch/developer-intel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/developer-intel -------------------------------------------------------------------------------- /arch/full-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/full-clang -------------------------------------------------------------------------------- /arch/full-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/full-gnu -------------------------------------------------------------------------------- /arch/generic-clang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/generic-clang -------------------------------------------------------------------------------- /arch/generic-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/generic-gnu -------------------------------------------------------------------------------- /arch/legion-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/legion-gnu -------------------------------------------------------------------------------- /arch/strict-gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/arch/strict-gnu -------------------------------------------------------------------------------- /auxiliary/clang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/clang/README.md -------------------------------------------------------------------------------- /auxiliary/patterns/01-meyers_singleton/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/patterns/01-meyers_singleton/main.cc -------------------------------------------------------------------------------- /auxiliary/patterns/01-meyers_singleton/meyers_singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/patterns/01-meyers_singleton/meyers_singleton.h -------------------------------------------------------------------------------- /auxiliary/patterns/02-object_factory/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/patterns/02-object_factory/factory.h -------------------------------------------------------------------------------- /auxiliary/patterns/03-type_erasure/type_erasure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/patterns/03-type_erasure/type_erasure.md -------------------------------------------------------------------------------- /auxiliary/patterns/04-CRTP/CRTP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/patterns/04-CRTP/CRTP.md -------------------------------------------------------------------------------- /auxiliary/patterns/05-tuple_walker/tuple_walker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/patterns/05-tuple_walker/tuple_walker.md -------------------------------------------------------------------------------- /auxiliary/vim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/vim/README.md -------------------------------------------------------------------------------- /auxiliary/vim/ftdetect_fcc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/vim/ftdetect_fcc.vim -------------------------------------------------------------------------------- /auxiliary/vim/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/vim/install -------------------------------------------------------------------------------- /auxiliary/vim/syntax_fcc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/auxiliary/vim/syntax_fcc.vim -------------------------------------------------------------------------------- /bin/scaling/cell.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/cell.cc -------------------------------------------------------------------------------- /bin/scaling/connectivities.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/connectivities.cc -------------------------------------------------------------------------------- /bin/scaling/create_entity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/create_entity.cc -------------------------------------------------------------------------------- /bin/scaling/edge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/edge.cc -------------------------------------------------------------------------------- /bin/scaling/entity_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/entity_types.cc -------------------------------------------------------------------------------- /bin/scaling/init.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/init.cc -------------------------------------------------------------------------------- /bin/scaling/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/main.cc -------------------------------------------------------------------------------- /bin/scaling/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/main.cpp -------------------------------------------------------------------------------- /bin/scaling/traversal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/traversal.cc -------------------------------------------------------------------------------- /bin/scaling/vertex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/bin/scaling/vertex.cc -------------------------------------------------------------------------------- /config/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/config/.clang-format -------------------------------------------------------------------------------- /config/FleCSIConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/config/FleCSIConfig.cmake.in -------------------------------------------------------------------------------- /config/brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/config/brand.py -------------------------------------------------------------------------------- /config/flecsi-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/config/flecsi-config.h.in -------------------------------------------------------------------------------- /config/project.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/config/project.cmake -------------------------------------------------------------------------------- /developer/BACKEND.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/BACKEND.md -------------------------------------------------------------------------------- /developer/CI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/CI.md -------------------------------------------------------------------------------- /developer/CXX_STANDARD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/CXX_STANDARD.md -------------------------------------------------------------------------------- /developer/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/DOCUMENTATION.md -------------------------------------------------------------------------------- /developer/GIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/GIT.md -------------------------------------------------------------------------------- /developer/LARistraDependency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/LARistraDependency.md -------------------------------------------------------------------------------- /developer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/README.md -------------------------------------------------------------------------------- /developer/REFACTOR_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/REFACTOR_NOTES.md -------------------------------------------------------------------------------- /developer/debug_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/debug_build.sh -------------------------------------------------------------------------------- /developer/laristrachile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/laristrachile.png -------------------------------------------------------------------------------- /developer/ristraDependencyGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/ristraDependencyGraph.png -------------------------------------------------------------------------------- /developer/template.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/template.cc -------------------------------------------------------------------------------- /developer/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/template.h -------------------------------------------------------------------------------- /developer/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/template.txt -------------------------------------------------------------------------------- /developer/travis-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/travis-workflow.png -------------------------------------------------------------------------------- /developer/travisCIgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/developer/travisCIgraph.png -------------------------------------------------------------------------------- /doc/data_model/DataRequirements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/DataRequirements.pdf -------------------------------------------------------------------------------- /doc/data_model/DataRequirements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/DataRequirements.tex -------------------------------------------------------------------------------- /doc/data_model/FieldRequirements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/FieldRequirements.tex -------------------------------------------------------------------------------- /doc/data_model/Introduction.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/Introduction.tex -------------------------------------------------------------------------------- /doc/data_model/ParticleRequirements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/ParticleRequirements.tex -------------------------------------------------------------------------------- /doc/data_model/PhysicalModelData.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/PhysicalModelData.tex -------------------------------------------------------------------------------- /doc/data_model/Requirements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/Requirements.tex -------------------------------------------------------------------------------- /doc/data_model/ResearchNote_pdf.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/ResearchNote_pdf.cls -------------------------------------------------------------------------------- /doc/data_model/SimConstData.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/SimConstData.tex -------------------------------------------------------------------------------- /doc/data_model/SimMutableData.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/SimMutableData.tex -------------------------------------------------------------------------------- /doc/data_model/algorithm.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/algorithm.sty -------------------------------------------------------------------------------- /doc/data_model/algorithm2e.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/algorithm2e.sty -------------------------------------------------------------------------------- /doc/data_model/algorithmic.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/algorithmic.sty -------------------------------------------------------------------------------- /doc/data_model/figures/Boxologies.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/figures/Boxologies.pptx -------------------------------------------------------------------------------- /doc/data_model/figures/SimpleHierarchy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/figures/SimpleHierarchy.pdf -------------------------------------------------------------------------------- /doc/data_model/logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/logo.eps -------------------------------------------------------------------------------- /doc/data_model/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/logo.jpg -------------------------------------------------------------------------------- /doc/data_model/tmadd.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/tmadd.sty -------------------------------------------------------------------------------- /doc/data_model/tmath.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/data_model/tmath.sty -------------------------------------------------------------------------------- /doc/doxygen-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen-header.html -------------------------------------------------------------------------------- /doc/doxygen-mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen-mainpage.md -------------------------------------------------------------------------------- /doc/doxygen-setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen-setup.h -------------------------------------------------------------------------------- /doc/doxygen.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen.conf.in -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/hexahedron-edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/hexahedron-edges.png -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/hexahedron-edges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/hexahedron-edges.svg -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/hexahedron-faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/hexahedron-faces.png -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/hexahedron-faces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/hexahedron-faces.svg -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/quadrilateral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/quadrilateral.png -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/quadrilateral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/quadrilateral.svg -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/tetrahedron-edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/tetrahedron-edges.png -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/tetrahedron-edges.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/tetrahedron-edges.svg -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/tetrahedron-faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/tetrahedron-faces.png -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/tetrahedron-faces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/tetrahedron-faces.svg -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/triangle.png -------------------------------------------------------------------------------- /doc/doxygen/images/element_ordering/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/element_ordering/triangle.svg -------------------------------------------------------------------------------- /doc/doxygen/images/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/hierarchy.png -------------------------------------------------------------------------------- /doc/doxygen/images/scale-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/scale-hierarchy.png -------------------------------------------------------------------------------- /doc/doxygen/images/tutorial-00-cfg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/doxygen/images/tutorial-00-cfg.png -------------------------------------------------------------------------------- /doc/flecsi-documentation-figures.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi-documentation-figures.pptx -------------------------------------------------------------------------------- /doc/flecsi-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi-favicon.ico -------------------------------------------------------------------------------- /doc/flecsi-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi-square.png -------------------------------------------------------------------------------- /doc/flecsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi.png -------------------------------------------------------------------------------- /doc/flecsi_dg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi_dg.py -------------------------------------------------------------------------------- /doc/flecsi_dg_header.tex.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi_dg_header.tex.in -------------------------------------------------------------------------------- /doc/flecsi_dg_title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi_dg_title.tex -------------------------------------------------------------------------------- /doc/flecsi_ug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi_ug.py -------------------------------------------------------------------------------- /doc/flecsi_ug_header.tex.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi_ug_header.tex.in -------------------------------------------------------------------------------- /doc/flecsi_ug_title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/flecsi_ug_title.tex -------------------------------------------------------------------------------- /doc/medium-flecsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/medium-flecsi.png -------------------------------------------------------------------------------- /doc/sagittarius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/sagittarius.svg -------------------------------------------------------------------------------- /doc/small-flecsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/doc/small-flecsi.png -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /flecsi-tutorial/00-driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/00-driver/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/00-driver/driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/00-driver/driver.cc -------------------------------------------------------------------------------- /flecsi-tutorial/01-tasks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/01-tasks/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/01-tasks/tasks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/01-tasks/tasks.cc -------------------------------------------------------------------------------- /flecsi-tutorial/02-data-clients/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/02-data-clients/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/02-data-clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/02-data-clients/README.md -------------------------------------------------------------------------------- /flecsi-tutorial/02-data-clients/data-clients.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/02-data-clients/data-clients.cc -------------------------------------------------------------------------------- /flecsi-tutorial/03-index-spaces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/03-index-spaces/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/03-index-spaces/index-spaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/03-index-spaces/index-spaces.cc -------------------------------------------------------------------------------- /flecsi-tutorial/04-fields/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/04-fields/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/04-fields/fields.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/04-fields/fields.cc -------------------------------------------------------------------------------- /flecsi-tutorial/05-dense-data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/05-dense-data/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/05-dense-data/dense-data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/05-dense-data/dense-data.cc -------------------------------------------------------------------------------- /flecsi-tutorial/05-dense-data/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/05-dense-data/types.h -------------------------------------------------------------------------------- /flecsi-tutorial/06-sparse-data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/06-sparse-data/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/06-sparse-data/sparse-data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/06-sparse-data/sparse-data.cc -------------------------------------------------------------------------------- /flecsi-tutorial/07-ragged-data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/07-ragged-data/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/07-ragged-data/ragged-data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/07-ragged-data/ragged-data.cc -------------------------------------------------------------------------------- /flecsi-tutorial/08-mpi-interoperability/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/08-mpi-interoperability/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/08-mpi-interoperability/mpi-interoperability.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/08-mpi-interoperability/mpi-interoperability.cc -------------------------------------------------------------------------------- /flecsi-tutorial/09-forall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/09-forall/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/09-forall/forall.fcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/09-forall/forall.fcc -------------------------------------------------------------------------------- /flecsi-tutorial/10-global-objects/GLOBAL-OBJECTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/10-global-objects/GLOBAL-OBJECTS.md -------------------------------------------------------------------------------- /flecsi-tutorial/10-global-objects/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/10-global-objects/Makefile -------------------------------------------------------------------------------- /flecsi-tutorial/10-global-objects/global-objects.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/10-global-objects/global-objects.cc -------------------------------------------------------------------------------- /flecsi-tutorial/XX-functions/functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/XX-functions/functions.cc -------------------------------------------------------------------------------- /flecsi-tutorial/XX-futures/futures.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/XX-futures/futures.cc -------------------------------------------------------------------------------- /flecsi-tutorial/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/clean -------------------------------------------------------------------------------- /flecsi-tutorial/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/README.md -------------------------------------------------------------------------------- /flecsi-tutorial/docker/configfiles/.bash/colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/configfiles/.bash/colors -------------------------------------------------------------------------------- /flecsi-tutorial/docker/configfiles/.bash/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/configfiles/.bash/functions -------------------------------------------------------------------------------- /flecsi-tutorial/docker/configfiles/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/configfiles/.bashrc -------------------------------------------------------------------------------- /flecsi-tutorial/docker/configfiles/.dircolors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/configfiles/.dircolors -------------------------------------------------------------------------------- /flecsi-tutorial/docker/configfiles/.modulefiles/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/configfiles/.modulefiles/aliases -------------------------------------------------------------------------------- /flecsi-tutorial/docker/configfiles/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/configfiles/.vimrc -------------------------------------------------------------------------------- /flecsi-tutorial/docker/legion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/legion -------------------------------------------------------------------------------- /flecsi-tutorial/docker/mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/docker/mpi -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/README.md -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/control/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/control/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/control/control.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/control/control.cc -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/control/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/control/control.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/control/node_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/control/node_type.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/control/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/control/policy.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/inputs/simple2d-16x16.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/inputs/simple2d-16x16.msh -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/io/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/io/vtk/rectilinearGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/io/vtk/rectilinearGrid.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/io/vtk/structuredGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/io/vtk/structuredGrid.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/io/vtk/unstructuredGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/io/vtk/unstructuredGrid.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/io/vtk/vtkMPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/io/vtk/vtkMPI.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/coloring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/coloring.cc -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/coloring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/coloring.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/control_points.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/control_points.cc -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/entity_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/entity_types.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/inputs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/inputs.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/mesh.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/policy.h -------------------------------------------------------------------------------- /flecsi-tutorial/specialization/mesh/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi-tutorial/specialization/mesh/tasks.h -------------------------------------------------------------------------------- /flecsi/canonical-mesh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/canonical-mesh.pdf -------------------------------------------------------------------------------- /flecsi/charter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/charter.md -------------------------------------------------------------------------------- /flecsi/code-structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/code-structure.pdf -------------------------------------------------------------------------------- /flecsi/colored-mesh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/colored-mesh.pdf -------------------------------------------------------------------------------- /flecsi/coloring/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/coloring/adjacency_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/adjacency_types.h -------------------------------------------------------------------------------- /flecsi/coloring/box_colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/box_colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/box_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/box_types.h -------------------------------------------------------------------------------- /flecsi/coloring/colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/coloring_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/coloring_types.h -------------------------------------------------------------------------------- /flecsi/coloring/communicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/communicator.h -------------------------------------------------------------------------------- /flecsi/coloring/concept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/concept.h -------------------------------------------------------------------------------- /flecsi/coloring/crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/crs.h -------------------------------------------------------------------------------- /flecsi/coloring/dcrs_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/dcrs_utils.h -------------------------------------------------------------------------------- /flecsi/coloring/index_coloring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/index_coloring.h -------------------------------------------------------------------------------- /flecsi/coloring/metis_colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/metis_colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/mpi_communicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/mpi_communicator.h -------------------------------------------------------------------------------- /flecsi/coloring/naive_colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/naive_colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/parmetis_colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/parmetis_colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/parmetis_geom_colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/parmetis_geom_colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/parmetis_geomkway_colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/parmetis_geomkway_colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/parmetis_repart_colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/parmetis_repart_colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/simple_box_colorer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/simple_box_colorer.h -------------------------------------------------------------------------------- /flecsi/coloring/test/coloring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/coloring.cc -------------------------------------------------------------------------------- /flecsi/coloring/test/dcrs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/dcrs.cc -------------------------------------------------------------------------------- /flecsi/coloring/test/devel-dcrs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/devel-dcrs.cc -------------------------------------------------------------------------------- /flecsi/coloring/test/exodus2d-mixed.exo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/exodus2d-mixed.exo -------------------------------------------------------------------------------- /flecsi/coloring/test/exodus3d-hex.exo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/exodus3d-hex.exo -------------------------------------------------------------------------------- /flecsi/coloring/test/index_coloring.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/index_coloring.blessed -------------------------------------------------------------------------------- /flecsi/coloring/test/index_coloring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/index_coloring.cc -------------------------------------------------------------------------------- /flecsi/coloring/test/simple2d-16x16.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/simple2d-16x16.msh -------------------------------------------------------------------------------- /flecsi/coloring/test/simple2d-32x32.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/simple2d-32x32.msh -------------------------------------------------------------------------------- /flecsi/coloring/test/simple2d-48x48.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/simple2d-48x48.msh -------------------------------------------------------------------------------- /flecsi/coloring/test/simple2d-8x8.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/simple2d-8x8.msh -------------------------------------------------------------------------------- /flecsi/coloring/test/test_simple_box_colorer_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/test_simple_box_colorer_2d.cc -------------------------------------------------------------------------------- /flecsi/coloring/test/test_simple_box_colorer_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/coloring/test/test_simple_box_colorer_3d.cc -------------------------------------------------------------------------------- /flecsi/concurrency/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/concurrency/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/concurrency/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/concurrency/thread_pool.h -------------------------------------------------------------------------------- /flecsi/concurrency/virtual_semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/concurrency/virtual_semaphore.h -------------------------------------------------------------------------------- /flecsi/control/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/control/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/control.h -------------------------------------------------------------------------------- /flecsi/control/macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/macro.h -------------------------------------------------------------------------------- /flecsi/control/phase_walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/phase_walker.h -------------------------------------------------------------------------------- /flecsi/control/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/runtime.h -------------------------------------------------------------------------------- /flecsi/control/runtime_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/runtime_main.cc -------------------------------------------------------------------------------- /flecsi/control/test/control.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/test/control.cc -------------------------------------------------------------------------------- /flecsi/control/test/node_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/test/node_type.h -------------------------------------------------------------------------------- /flecsi/control/test/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/test/policy.h -------------------------------------------------------------------------------- /flecsi/control/test/runtime_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/test/runtime_model.cc -------------------------------------------------------------------------------- /flecsi/control/test/runtimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/control/test/runtimes.h -------------------------------------------------------------------------------- /flecsi/data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/data/accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/accessor.h -------------------------------------------------------------------------------- /flecsi/data/client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/client.h -------------------------------------------------------------------------------- /flecsi/data/common/data_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/common/data_hash.h -------------------------------------------------------------------------------- /flecsi/data/common/data_reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/common/data_reference.h -------------------------------------------------------------------------------- /flecsi/data/common/data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/common/data_types.h -------------------------------------------------------------------------------- /flecsi/data/common/privilege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/common/privilege.h -------------------------------------------------------------------------------- /flecsi/data/common/registration_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/common/registration_wrapper.h -------------------------------------------------------------------------------- /flecsi/data/common/row_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/common/row_vector.h -------------------------------------------------------------------------------- /flecsi/data/common/serdez.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/common/serdez.h -------------------------------------------------------------------------------- /flecsi/data/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/data.h -------------------------------------------------------------------------------- /flecsi/data/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/data.md -------------------------------------------------------------------------------- /flecsi/data/data_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/data_client.h -------------------------------------------------------------------------------- /flecsi/data/data_client_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/data_client_handle.h -------------------------------------------------------------------------------- /flecsi/data/data_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/data_constants.h -------------------------------------------------------------------------------- /flecsi/data/dense_accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/dense_accessor.h -------------------------------------------------------------------------------- /flecsi/data/dense_data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/dense_data_handle.h -------------------------------------------------------------------------------- /flecsi/data/field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/field.h -------------------------------------------------------------------------------- /flecsi/data/global_accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/global_accessor.h -------------------------------------------------------------------------------- /flecsi/data/global_data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/global_data_handle.h -------------------------------------------------------------------------------- /flecsi/data/hpx/data_client_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/data_client_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/hpx/data_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/data_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/hpx/data_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/data_policy.h -------------------------------------------------------------------------------- /flecsi/data/hpx/dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/dense.h -------------------------------------------------------------------------------- /flecsi/data/hpx/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/global.h -------------------------------------------------------------------------------- /flecsi/data/hpx/meta_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/meta_data.h -------------------------------------------------------------------------------- /flecsi/data/hpx/registration_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/registration_wrapper.h -------------------------------------------------------------------------------- /flecsi/data/hpx/scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/scoped.h -------------------------------------------------------------------------------- /flecsi/data/hpx/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/sparse.h -------------------------------------------------------------------------------- /flecsi/data/hpx/sparse_data_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/sparse_data_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/hpx/storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/storage_policy.h -------------------------------------------------------------------------------- /flecsi/data/hpx/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/hpx/tuple.h -------------------------------------------------------------------------------- /flecsi/data/internal_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/internal_client.cc -------------------------------------------------------------------------------- /flecsi/data/internal_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/internal_client.h -------------------------------------------------------------------------------- /flecsi/data/legion/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/color.h -------------------------------------------------------------------------------- /flecsi/data/legion/data_client_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/data_client_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/legion/data_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/data_policy.h -------------------------------------------------------------------------------- /flecsi/data/legion/dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/dense.h -------------------------------------------------------------------------------- /flecsi/data/legion/dense_data_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/dense_data_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/legion/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/global.h -------------------------------------------------------------------------------- /flecsi/data/legion/global_data_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/global_data_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/legion/legion_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/legion_data.h -------------------------------------------------------------------------------- /flecsi/data/legion/scoped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/scoped.h -------------------------------------------------------------------------------- /flecsi/data/legion/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/sparse.h -------------------------------------------------------------------------------- /flecsi/data/legion/sparse_data_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/sparse_data_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/legion/storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/storage_policy.h -------------------------------------------------------------------------------- /flecsi/data/legion/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/legion/tuple.h -------------------------------------------------------------------------------- /flecsi/data/mpi/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/color.h -------------------------------------------------------------------------------- /flecsi/data/mpi/data_client_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/data_client_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/mpi/data_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/data_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/mpi/data_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/data_policy.h -------------------------------------------------------------------------------- /flecsi/data/mpi/dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/dense.h -------------------------------------------------------------------------------- /flecsi/data/mpi/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/global.h -------------------------------------------------------------------------------- /flecsi/data/mpi/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/sparse.h -------------------------------------------------------------------------------- /flecsi/data/mpi/sparse_data_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/sparse_data_handle_policy.h -------------------------------------------------------------------------------- /flecsi/data/mpi/storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mpi/storage_policy.h -------------------------------------------------------------------------------- /flecsi/data/mutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/mutator.h -------------------------------------------------------------------------------- /flecsi/data/ragged_accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/ragged_accessor.h -------------------------------------------------------------------------------- /flecsi/data/ragged_mutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/ragged_mutator.h -------------------------------------------------------------------------------- /flecsi/data/set_topology_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/set_topology_handle.h -------------------------------------------------------------------------------- /flecsi/data/sparse_accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/sparse_accessor.h -------------------------------------------------------------------------------- /flecsi/data/sparse_data_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/sparse_data_handle.h -------------------------------------------------------------------------------- /flecsi/data/sparse_mutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/sparse_mutator.h -------------------------------------------------------------------------------- /flecsi/data/storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/storage.h -------------------------------------------------------------------------------- /flecsi/data/storage_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/storage_class.h -------------------------------------------------------------------------------- /flecsi/data/test/client_registration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/test/client_registration.cc -------------------------------------------------------------------------------- /flecsi/data/test/data-handle-serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/test/data-handle-serial.h -------------------------------------------------------------------------------- /flecsi/data/test/data-handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/test/data-handle.h -------------------------------------------------------------------------------- /flecsi/data/test/storage_class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/test/storage_class.cc -------------------------------------------------------------------------------- /flecsi/data/test/storage_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/data/test/storage_class.h -------------------------------------------------------------------------------- /flecsi/developer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/developer-guide.md -------------------------------------------------------------------------------- /flecsi/execution/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/execution/common/execution_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/common/execution_state.h -------------------------------------------------------------------------------- /flecsi/execution/common/function_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/common/function_handle.h -------------------------------------------------------------------------------- /flecsi/execution/common/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/common/launch.h -------------------------------------------------------------------------------- /flecsi/execution/common/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/common/processor.h -------------------------------------------------------------------------------- /flecsi/execution/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/context.h -------------------------------------------------------------------------------- /flecsi/execution/default_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/default_driver.h -------------------------------------------------------------------------------- /flecsi/execution/driver_initialization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/driver_initialization.cc -------------------------------------------------------------------------------- /flecsi/execution/execution-structure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/execution-structure.pdf -------------------------------------------------------------------------------- /flecsi/execution/execution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/execution.h -------------------------------------------------------------------------------- /flecsi/execution/execution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/execution.md -------------------------------------------------------------------------------- /flecsi/execution/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/function.h -------------------------------------------------------------------------------- /flecsi/execution/global_object_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/global_object_wrapper.h -------------------------------------------------------------------------------- /flecsi/execution/hpx/context_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/context_policy.cc -------------------------------------------------------------------------------- /flecsi/execution/hpx/context_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/context_policy.h -------------------------------------------------------------------------------- /flecsi/execution/hpx/execution_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/execution_policy.h -------------------------------------------------------------------------------- /flecsi/execution/hpx/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/future.h -------------------------------------------------------------------------------- /flecsi/execution/hpx/internal_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/internal_task.h -------------------------------------------------------------------------------- /flecsi/execution/hpx/processor_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/processor_policy.h -------------------------------------------------------------------------------- /flecsi/execution/hpx/runtime_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/runtime_driver.cc -------------------------------------------------------------------------------- /flecsi/execution/hpx/runtime_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/runtime_driver.h -------------------------------------------------------------------------------- /flecsi/execution/hpx/runtime_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/runtime_main.cc -------------------------------------------------------------------------------- /flecsi/execution/hpx/task_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/hpx/task_wrapper.h -------------------------------------------------------------------------------- /flecsi/execution/internal_index_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/internal_index_space.h -------------------------------------------------------------------------------- /flecsi/execution/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/kernel.h -------------------------------------------------------------------------------- /flecsi/execution/legion/context_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/context_policy.cc -------------------------------------------------------------------------------- /flecsi/execution/legion/context_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/context_policy.h -------------------------------------------------------------------------------- /flecsi/execution/legion/execution_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/execution_policy.h -------------------------------------------------------------------------------- /flecsi/execution/legion/finalize_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/finalize_handles.h -------------------------------------------------------------------------------- /flecsi/execution/legion/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/future.h -------------------------------------------------------------------------------- /flecsi/execution/legion/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/helper.h -------------------------------------------------------------------------------- /flecsi/execution/legion/init_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/init_args.h -------------------------------------------------------------------------------- /flecsi/execution/legion/init_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/init_handles.h -------------------------------------------------------------------------------- /flecsi/execution/legion/internal_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/internal_field.h -------------------------------------------------------------------------------- /flecsi/execution/legion/internal_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/internal_task.h -------------------------------------------------------------------------------- /flecsi/execution/legion/legion_tasks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/legion_tasks.cc -------------------------------------------------------------------------------- /flecsi/execution/legion/legion_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/legion_tasks.h -------------------------------------------------------------------------------- /flecsi/execution/legion/mapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/mapper.h -------------------------------------------------------------------------------- /flecsi/execution/legion/reduction_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/reduction_wrapper.h -------------------------------------------------------------------------------- /flecsi/execution/legion/registration_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/registration_wrapper.h -------------------------------------------------------------------------------- /flecsi/execution/legion/runtime_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/runtime_driver.cc -------------------------------------------------------------------------------- /flecsi/execution/legion/runtime_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/runtime_driver.h -------------------------------------------------------------------------------- /flecsi/execution/legion/runtime_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/runtime_main.cc -------------------------------------------------------------------------------- /flecsi/execution/legion/runtime_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/runtime_state.h -------------------------------------------------------------------------------- /flecsi/execution/legion/task_epilog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/task_epilog.h -------------------------------------------------------------------------------- /flecsi/execution/legion/task_prolog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/task_prolog.h -------------------------------------------------------------------------------- /flecsi/execution/legion/task_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/legion/task_wrapper.h -------------------------------------------------------------------------------- /flecsi/execution/mpi/context_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/context_policy.cc -------------------------------------------------------------------------------- /flecsi/execution/mpi/context_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/context_policy.h -------------------------------------------------------------------------------- /flecsi/execution/mpi/execution_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/execution_policy.h -------------------------------------------------------------------------------- /flecsi/execution/mpi/finalize_handles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/finalize_handles.h -------------------------------------------------------------------------------- /flecsi/execution/mpi/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/future.h -------------------------------------------------------------------------------- /flecsi/execution/mpi/future.h_tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/future.h_tmp -------------------------------------------------------------------------------- /flecsi/execution/mpi/reduction_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/reduction_wrapper.h -------------------------------------------------------------------------------- /flecsi/execution/mpi/runtime_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/runtime_driver.cc -------------------------------------------------------------------------------- /flecsi/execution/mpi/runtime_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/runtime_driver.h -------------------------------------------------------------------------------- /flecsi/execution/mpi/runtime_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/runtime_main.cc -------------------------------------------------------------------------------- /flecsi/execution/mpi/task_epilog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/task_epilog.h -------------------------------------------------------------------------------- /flecsi/execution/mpi/task_prolog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/mpi/task_prolog.h -------------------------------------------------------------------------------- /flecsi/execution/reduction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/reduction.h -------------------------------------------------------------------------------- /flecsi/execution/remap_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/remap_shared.h -------------------------------------------------------------------------------- /flecsi/execution/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/task.h -------------------------------------------------------------------------------- /flecsi/execution/test/concept_coloring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/concept_coloring.cc -------------------------------------------------------------------------------- /flecsi/execution/test/data_client_handle.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/data_client_handle.blessed -------------------------------------------------------------------------------- /flecsi/execution/test/data_client_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/data_client_handle.cc -------------------------------------------------------------------------------- /flecsi/execution/test/data_handle_task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/data_handle_task.cc -------------------------------------------------------------------------------- /flecsi/execution/test/dense_data.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/dense_data.blessed -------------------------------------------------------------------------------- /flecsi/execution/test/dense_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/dense_data.cc -------------------------------------------------------------------------------- /flecsi/execution/test/devel_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/devel_handle.cc -------------------------------------------------------------------------------- /flecsi/execution/test/execution_structure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/execution_structure.cc -------------------------------------------------------------------------------- /flecsi/execution/test/finite_difference_dense.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/finite_difference_dense.cc -------------------------------------------------------------------------------- /flecsi/execution/test/finite_difference_sparse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/finite_difference_sparse.cc -------------------------------------------------------------------------------- /flecsi/execution/test/forall.fcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/forall.fcc -------------------------------------------------------------------------------- /flecsi/execution/test/future_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/future_handle.cc -------------------------------------------------------------------------------- /flecsi/execution/test/ghost_access_drivers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/ghost_access_drivers.cc -------------------------------------------------------------------------------- /flecsi/execution/test/gid_to_lid_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/gid_to_lid_map.cc -------------------------------------------------------------------------------- /flecsi/execution/test/global_data.blessed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flecsi/execution/test/global_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/global_data.cc -------------------------------------------------------------------------------- /flecsi/execution/test/gpu_task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/gpu_task.cc -------------------------------------------------------------------------------- /flecsi/execution/test/handle_accessor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/handle_accessor.cc -------------------------------------------------------------------------------- /flecsi/execution/test/handle_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/handle_list.cc -------------------------------------------------------------------------------- /flecsi/execution/test/handle_tuple.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/handle_tuple.cc -------------------------------------------------------------------------------- /flecsi/execution/test/harness.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/harness.cc -------------------------------------------------------------------------------- /flecsi/execution/test/harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/harness.h -------------------------------------------------------------------------------- /flecsi/execution/test/index_subspaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/index_subspaces.cc -------------------------------------------------------------------------------- /flecsi/execution/test/kokkos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/kokkos.cc -------------------------------------------------------------------------------- /flecsi/execution/test/launch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/launch.cc -------------------------------------------------------------------------------- /flecsi/execution/test/legion/internal_task_driver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/legion/internal_task_driver.cc -------------------------------------------------------------------------------- /flecsi/execution/test/legion/mapper_compaction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/legion/mapper_compaction.cc -------------------------------------------------------------------------------- /flecsi/execution/test/legion/read_waits_on_write.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/legion/read_waits_on_write.cc -------------------------------------------------------------------------------- /flecsi/execution/test/legion/serdez.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/legion/serdez.cc -------------------------------------------------------------------------------- /flecsi/execution/test/particles.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/particles.cc -------------------------------------------------------------------------------- /flecsi/execution/test/ragged_data.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/ragged_data.blessed -------------------------------------------------------------------------------- /flecsi/execution/test/ragged_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/ragged_data.cc -------------------------------------------------------------------------------- /flecsi/execution/test/reduction_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/reduction_interface.cc -------------------------------------------------------------------------------- /flecsi/execution/test/restart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/restart.cc -------------------------------------------------------------------------------- /flecsi/execution/test/set_topology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/set_topology.cc -------------------------------------------------------------------------------- /flecsi/execution/test/simple2d-16x16.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/simple2d-16x16.msh -------------------------------------------------------------------------------- /flecsi/execution/test/simple2d-64x64.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/simple2d-64x64.msh -------------------------------------------------------------------------------- /flecsi/execution/test/simple2d-8x8.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/simple2d-8x8.msh -------------------------------------------------------------------------------- /flecsi/execution/test/simple_function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/simple_function.cc -------------------------------------------------------------------------------- /flecsi/execution/test/simple_task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/simple_task.cc -------------------------------------------------------------------------------- /flecsi/execution/test/sparse_data.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/sparse_data.blessed -------------------------------------------------------------------------------- /flecsi/execution/test/sparse_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/sparse_data.cc -------------------------------------------------------------------------------- /flecsi/execution/test/task_privileges_dense.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/task_privileges_dense.blessed -------------------------------------------------------------------------------- /flecsi/execution/test/task_privileges_dense.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/task_privileges_dense.cc -------------------------------------------------------------------------------- /flecsi/execution/test/task_privileges_sparse.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/task_privileges_sparse.blessed -------------------------------------------------------------------------------- /flecsi/execution/test/task_privileges_sparse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/task_privileges_sparse.cc -------------------------------------------------------------------------------- /flecsi/execution/test/test_mpi_wo_permissions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/test_mpi_wo_permissions.cc -------------------------------------------------------------------------------- /flecsi/execution/test/unordered_ispaces.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/execution/test/unordered_ispaces.cc -------------------------------------------------------------------------------- /flecsi/geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/geometry/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/geometry/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/geometry/point.h -------------------------------------------------------------------------------- /flecsi/geometry/space_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/geometry/space_vector.h -------------------------------------------------------------------------------- /flecsi/geometry/test/point.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/geometry/test/point.cc -------------------------------------------------------------------------------- /flecsi/geometry/test/space_vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/geometry/test/space_vector.cc -------------------------------------------------------------------------------- /flecsi/index_spaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/index_spaces.md -------------------------------------------------------------------------------- /flecsi/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/io/backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/backend.h -------------------------------------------------------------------------------- /flecsi/io/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/io.h -------------------------------------------------------------------------------- /flecsi/io/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/io.md -------------------------------------------------------------------------------- /flecsi/io/io_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/io_base.h -------------------------------------------------------------------------------- /flecsi/io/io_exodus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/io_exodus.h -------------------------------------------------------------------------------- /flecsi/io/io_hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/io_hdf5.h -------------------------------------------------------------------------------- /flecsi/io/io_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/io_interface.h -------------------------------------------------------------------------------- /flecsi/io/legion/policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/legion/policy.cc -------------------------------------------------------------------------------- /flecsi/io/legion/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/legion/policy.h -------------------------------------------------------------------------------- /flecsi/io/mpi/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/mpi/policy.h -------------------------------------------------------------------------------- /flecsi/io/simple_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/simple_definition.h -------------------------------------------------------------------------------- /flecsi/io/test/hdf5_restart.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/test/hdf5_restart.cc -------------------------------------------------------------------------------- /flecsi/io/test/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/test/io.cc -------------------------------------------------------------------------------- /flecsi/io/test/legion/io_hdf5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/test/legion/io_hdf5.cc -------------------------------------------------------------------------------- /flecsi/io/test/simple2d-16x16.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/test/simple2d-16x16.msh -------------------------------------------------------------------------------- /flecsi/io/test/simple2d-4x4.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/test/simple2d-4x4.msh -------------------------------------------------------------------------------- /flecsi/io/test/simple2d-8x8.msh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/test/simple2d-8x8.msh -------------------------------------------------------------------------------- /flecsi/io/test/simple_definition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/io/test/simple_definition.cc -------------------------------------------------------------------------------- /flecsi/runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_context_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_context_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_data_client_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_data_client_handle_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_data_handle_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_data_handle_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_data_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_data_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_entity_storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_entity_storage_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_execution_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_execution_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_set_topology_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_set_topology_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_storage_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/flecsi_runtime_topology_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/flecsi_runtime_topology_policy.h -------------------------------------------------------------------------------- /flecsi/runtime/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/runtime/types.h -------------------------------------------------------------------------------- /flecsi/supplemental/coloring/add_colorings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/supplemental/coloring/add_colorings.cc -------------------------------------------------------------------------------- /flecsi/supplemental/coloring/add_colorings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/supplemental/coloring/add_colorings.h -------------------------------------------------------------------------------- /flecsi/supplemental/coloring/coloring_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/supplemental/coloring/coloring_functions.h -------------------------------------------------------------------------------- /flecsi/supplemental/coloring/concept_coloring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/supplemental/coloring/concept_coloring.cc -------------------------------------------------------------------------------- /flecsi/supplemental/coloring/concept_coloring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/supplemental/coloring/concept_coloring.h -------------------------------------------------------------------------------- /flecsi/supplemental/coloring/tikz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/supplemental/coloring/tikz.h -------------------------------------------------------------------------------- /flecsi/supplemental/mesh/empty_mesh_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/supplemental/mesh/empty_mesh_2d.h -------------------------------------------------------------------------------- /flecsi/supplemental/mesh/test_mesh_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/supplemental/mesh/test_mesh_2d.h -------------------------------------------------------------------------------- /flecsi/topology/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/topology/closure_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/closure_utils.h -------------------------------------------------------------------------------- /flecsi/topology/color_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/color_topology.h -------------------------------------------------------------------------------- /flecsi/topology/common/array_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/common/array_buffer.h -------------------------------------------------------------------------------- /flecsi/topology/common/entity_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/common/entity_storage.h -------------------------------------------------------------------------------- /flecsi/topology/connectivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/connectivity.h -------------------------------------------------------------------------------- /flecsi/topology/entity_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/entity_storage.h -------------------------------------------------------------------------------- /flecsi/topology/global_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/global_topology.h -------------------------------------------------------------------------------- /flecsi/topology/hpx/set_storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/hpx/set_storage_policy.h -------------------------------------------------------------------------------- /flecsi/topology/hpx/storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/hpx/storage_policy.h -------------------------------------------------------------------------------- /flecsi/topology/index_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/index_space.h -------------------------------------------------------------------------------- /flecsi/topology/legion/set_storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/legion/set_storage_policy.h -------------------------------------------------------------------------------- /flecsi/topology/legion/storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/legion/storage_policy.h -------------------------------------------------------------------------------- /flecsi/topology/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/mesh.h -------------------------------------------------------------------------------- /flecsi/topology/mesh_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/mesh_definition.h -------------------------------------------------------------------------------- /flecsi/topology/mesh_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/mesh_storage.h -------------------------------------------------------------------------------- /flecsi/topology/mesh_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/mesh_topology.h -------------------------------------------------------------------------------- /flecsi/topology/mesh_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/mesh_types.h -------------------------------------------------------------------------------- /flecsi/topology/mesh_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/mesh_utils.h -------------------------------------------------------------------------------- /flecsi/topology/mpi/set_storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/mpi/set_storage_policy.h -------------------------------------------------------------------------------- /flecsi/topology/mpi/storage_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/mpi/storage_policy.h -------------------------------------------------------------------------------- /flecsi/topology/parallel_mesh_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/parallel_mesh_definition.h -------------------------------------------------------------------------------- /flecsi/topology/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/partition.h -------------------------------------------------------------------------------- /flecsi/topology/set_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/set_storage.h -------------------------------------------------------------------------------- /flecsi/topology/set_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/set_topology.h -------------------------------------------------------------------------------- /flecsi/topology/set_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/set_types.h -------------------------------------------------------------------------------- /flecsi/topology/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/set_utils.h -------------------------------------------------------------------------------- /flecsi/topology/structured_mesh_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/structured_mesh_topology.h -------------------------------------------------------------------------------- /flecsi/topology/test/bindings.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/bindings.blessed -------------------------------------------------------------------------------- /flecsi/topology/test/bindings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/bindings.cc -------------------------------------------------------------------------------- /flecsi/topology/test/closure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/closure.cc -------------------------------------------------------------------------------- /flecsi/topology/test/devel-closure.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/devel-closure.cc -------------------------------------------------------------------------------- /flecsi/topology/test/dual.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/dual.blessed -------------------------------------------------------------------------------- /flecsi/topology/test/dual.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/dual.cc -------------------------------------------------------------------------------- /flecsi/topology/test/gravity-state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/gravity-state.cc -------------------------------------------------------------------------------- /flecsi/topology/test/gravity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/gravity.cc -------------------------------------------------------------------------------- /flecsi/topology/test/index-space.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/index-space.cc -------------------------------------------------------------------------------- /flecsi/topology/test/pseudo_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/pseudo_random.h -------------------------------------------------------------------------------- /flecsi/topology/test/structured.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/structured.cc -------------------------------------------------------------------------------- /flecsi/topology/test/test_definition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/test_definition.h -------------------------------------------------------------------------------- /flecsi/topology/test/traversal.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/traversal.blessed -------------------------------------------------------------------------------- /flecsi/topology/test/traversal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/traversal.cc -------------------------------------------------------------------------------- /flecsi/topology/test/tree.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/tree.blessed -------------------------------------------------------------------------------- /flecsi/topology/test/tree.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/tree.cc -------------------------------------------------------------------------------- /flecsi/topology/test/tree1d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/tree1d.cc -------------------------------------------------------------------------------- /flecsi/topology/test/tree3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/test/tree3d.cc -------------------------------------------------------------------------------- /flecsi/topology/topology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/topology.md -------------------------------------------------------------------------------- /flecsi/topology/tree_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/tree_topology.h -------------------------------------------------------------------------------- /flecsi/topology/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/topology/types.h -------------------------------------------------------------------------------- /flecsi/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/user-guide.md -------------------------------------------------------------------------------- /flecsi/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/CMakeLists.txt -------------------------------------------------------------------------------- /flecsi/utils/annotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/annotation.h -------------------------------------------------------------------------------- /flecsi/utils/array_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/array_ref.h -------------------------------------------------------------------------------- /flecsi/utils/bit_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/bit_buffer.h -------------------------------------------------------------------------------- /flecsi/utils/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/checksum.h -------------------------------------------------------------------------------- /flecsi/utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/common.h -------------------------------------------------------------------------------- /flecsi/utils/const_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/const_string.h -------------------------------------------------------------------------------- /flecsi/utils/dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/dag.h -------------------------------------------------------------------------------- /flecsi/utils/debruijn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/debruijn.cc -------------------------------------------------------------------------------- /flecsi/utils/debruijn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/debruijn.h -------------------------------------------------------------------------------- /flecsi/utils/demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/demangle.cc -------------------------------------------------------------------------------- /flecsi/utils/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/demangle.h -------------------------------------------------------------------------------- /flecsi/utils/dimensioned_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/dimensioned_array.h -------------------------------------------------------------------------------- /flecsi/utils/export_definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/export_definitions.h -------------------------------------------------------------------------------- /flecsi/utils/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/factory.h -------------------------------------------------------------------------------- /flecsi/utils/fixed_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/fixed_vector.h -------------------------------------------------------------------------------- /flecsi/utils/function_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/function_traits.h -------------------------------------------------------------------------------- /flecsi/utils/graphviz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/graphviz.h -------------------------------------------------------------------------------- /flecsi/utils/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/hash.h -------------------------------------------------------------------------------- /flecsi/utils/humble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/humble.h -------------------------------------------------------------------------------- /flecsi/utils/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/id.h -------------------------------------------------------------------------------- /flecsi/utils/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/logging.h -------------------------------------------------------------------------------- /flecsi/utils/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/macros.h -------------------------------------------------------------------------------- /flecsi/utils/mpi_type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/mpi_type_traits.h -------------------------------------------------------------------------------- /flecsi/utils/offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/offset.h -------------------------------------------------------------------------------- /flecsi/utils/reorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/reorder.h -------------------------------------------------------------------------------- /flecsi/utils/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/serialize.h -------------------------------------------------------------------------------- /flecsi/utils/set_intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/set_intersection.h -------------------------------------------------------------------------------- /flecsi/utils/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/set_utils.h -------------------------------------------------------------------------------- /flecsi/utils/simple_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/simple_id.h -------------------------------------------------------------------------------- /flecsi/utils/static_verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/static_verify.h -------------------------------------------------------------------------------- /flecsi/utils/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/target.h -------------------------------------------------------------------------------- /flecsi/utils/test/array_ref.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/array_ref.blessed -------------------------------------------------------------------------------- /flecsi/utils/test/array_ref.blessed.gnug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/array_ref.blessed.gnug -------------------------------------------------------------------------------- /flecsi/utils/test/array_ref.blessed.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/array_ref.blessed.msvc -------------------------------------------------------------------------------- /flecsi/utils/test/array_ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/array_ref.cc -------------------------------------------------------------------------------- /flecsi/utils/test/checksum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/checksum.cc -------------------------------------------------------------------------------- /flecsi/utils/test/clog.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/clog.cc -------------------------------------------------------------------------------- /flecsi/utils/test/common.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/common.blessed -------------------------------------------------------------------------------- /flecsi/utils/test/common.blessed.gnug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/common.blessed.gnug -------------------------------------------------------------------------------- /flecsi/utils/test/common.blessed.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/common.blessed.msvc -------------------------------------------------------------------------------- /flecsi/utils/test/common.blessed.ppc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/common.blessed.ppc -------------------------------------------------------------------------------- /flecsi/utils/test/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/common.cc -------------------------------------------------------------------------------- /flecsi/utils/test/const_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/const_string.cc -------------------------------------------------------------------------------- /flecsi/utils/test/dag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/dag.cc -------------------------------------------------------------------------------- /flecsi/utils/test/debruijn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/debruijn.cc -------------------------------------------------------------------------------- /flecsi/utils/test/demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/demangle.cc -------------------------------------------------------------------------------- /flecsi/utils/test/factory.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/factory.blessed -------------------------------------------------------------------------------- /flecsi/utils/test/factory.blessed.gnug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/factory.blessed.gnug -------------------------------------------------------------------------------- /flecsi/utils/test/factory.blessed.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/factory.blessed.msvc -------------------------------------------------------------------------------- /flecsi/utils/test/factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/factory.cc -------------------------------------------------------------------------------- /flecsi/utils/test/fixed_vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/fixed_vector.cc -------------------------------------------------------------------------------- /flecsi/utils/test/function_traits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/function_traits.cc -------------------------------------------------------------------------------- /flecsi/utils/test/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/hash.cc -------------------------------------------------------------------------------- /flecsi/utils/test/humble.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/humble.cc -------------------------------------------------------------------------------- /flecsi/utils/test/id.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/id.blessed -------------------------------------------------------------------------------- /flecsi/utils/test/id.blessed.gnug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/id.blessed.gnug -------------------------------------------------------------------------------- /flecsi/utils/test/id.blessed.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/id.blessed.msvc -------------------------------------------------------------------------------- /flecsi/utils/test/id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/id.cc -------------------------------------------------------------------------------- /flecsi/utils/test/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/logging.cc -------------------------------------------------------------------------------- /flecsi/utils/test/print_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/print_type.h -------------------------------------------------------------------------------- /flecsi/utils/test/reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/reflection.cc -------------------------------------------------------------------------------- /flecsi/utils/test/reorder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/reorder.cc -------------------------------------------------------------------------------- /flecsi/utils/test/serialize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/serialize.cc -------------------------------------------------------------------------------- /flecsi/utils/test/set_intersection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/set_intersection.cc -------------------------------------------------------------------------------- /flecsi/utils/test/set_utils.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/set_utils.blessed -------------------------------------------------------------------------------- /flecsi/utils/test/set_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/set_utils.cc -------------------------------------------------------------------------------- /flecsi/utils/test/simple_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/simple_id.cc -------------------------------------------------------------------------------- /flecsi/utils/test/static_verify.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/static_verify.cc -------------------------------------------------------------------------------- /flecsi/utils/test/tuple_type_converter.blessed.gnug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/tuple_type_converter.blessed.gnug -------------------------------------------------------------------------------- /flecsi/utils/test/tuple_type_converter.blessed.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/tuple_type_converter.blessed.msvc -------------------------------------------------------------------------------- /flecsi/utils/test/tuple_type_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/tuple_type_converter.cc -------------------------------------------------------------------------------- /flecsi/utils/test/tuple_walker.blessed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/tuple_walker.blessed -------------------------------------------------------------------------------- /flecsi/utils/test/tuple_walker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/tuple_walker.cc -------------------------------------------------------------------------------- /flecsi/utils/test/tuple_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/tuple_wrapper.cc -------------------------------------------------------------------------------- /flecsi/utils/test/utility.blessed.gnug: -------------------------------------------------------------------------------- 1 | char 2 | int 3 | double 4 | -------------------------------------------------------------------------------- /flecsi/utils/test/utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/test/utility.cc -------------------------------------------------------------------------------- /flecsi/utils/tuple_type_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/tuple_type_converter.h -------------------------------------------------------------------------------- /flecsi/utils/tuple_visit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/tuple_visit.h -------------------------------------------------------------------------------- /flecsi/utils/tuple_walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/tuple_walker.h -------------------------------------------------------------------------------- /flecsi/utils/tuple_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/tuple_wrapper.h -------------------------------------------------------------------------------- /flecsi/utils/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/type_traits.h -------------------------------------------------------------------------------- /flecsi/utils/typeify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/typeify.h -------------------------------------------------------------------------------- /flecsi/utils/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/flecsi/utils/utility.h -------------------------------------------------------------------------------- /io-poc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/CMakeLists.txt -------------------------------------------------------------------------------- /io-poc/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/analysis.h -------------------------------------------------------------------------------- /io-poc/control/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/control/control.h -------------------------------------------------------------------------------- /io-poc/control/node_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/control/node_type.h -------------------------------------------------------------------------------- /io-poc/control/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/control/policy.h -------------------------------------------------------------------------------- /io-poc/currents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/currents.h -------------------------------------------------------------------------------- /io-poc/fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/fields.h -------------------------------------------------------------------------------- /io-poc/io-poc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/io-poc.cc -------------------------------------------------------------------------------- /io-poc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/io.h -------------------------------------------------------------------------------- /io-poc/mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/mesh.h -------------------------------------------------------------------------------- /io-poc/particles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/particles.h -------------------------------------------------------------------------------- /io-poc/runtime/runtime_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/runtime/runtime_driver.h -------------------------------------------------------------------------------- /io-poc/special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/special.h -------------------------------------------------------------------------------- /io-poc/species.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/io-poc/species.h -------------------------------------------------------------------------------- /spack-repo/packages/flecsi/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/spack-repo/packages/flecsi/package.py -------------------------------------------------------------------------------- /spack-repo/packages/legion/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/spack-repo/packages/legion/package.py -------------------------------------------------------------------------------- /spack-repo/repo.yaml: -------------------------------------------------------------------------------- 1 | repo: 2 | namespace: lanl_ristra_flecsi 3 | -------------------------------------------------------------------------------- /sphinx/_static/flecsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/_static/flecsi.py -------------------------------------------------------------------------------- /sphinx/_static/images/anvil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/_static/images/anvil.jpg -------------------------------------------------------------------------------- /sphinx/_static/images/ecp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/_static/images/ecp.png -------------------------------------------------------------------------------- /sphinx/_static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/_static/images/favicon.ico -------------------------------------------------------------------------------- /sphinx/_static/images/flecsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/_static/images/flecsi.png -------------------------------------------------------------------------------- /sphinx/_static/images/lanl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/_static/images/lanl.png -------------------------------------------------------------------------------- /sphinx/_static/images/nnsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/_static/images/nnsa.png -------------------------------------------------------------------------------- /sphinx/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/_templates/layout.html -------------------------------------------------------------------------------- /sphinx/conf.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/conf.py.in -------------------------------------------------------------------------------- /sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/index.rst -------------------------------------------------------------------------------- /sphinx/src/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/build.rst -------------------------------------------------------------------------------- /sphinx/src/build/options.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/build/options.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide/patterns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide/patterns.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide/patterns/CRTP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide/patterns/CRTP.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide/patterns/factory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide/patterns/factory.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide/patterns/meyers_singleton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide/patterns/meyers_singleton.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide/patterns/policies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide/patterns/policies.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide/patterns/type_erasure.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide/patterns/type_erasure.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide/style-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide/style-guide.rst -------------------------------------------------------------------------------- /sphinx/src/developer-guide/versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/developer-guide/versioning.rst -------------------------------------------------------------------------------- /sphinx/src/doxygen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/doxygen.rst -------------------------------------------------------------------------------- /sphinx/src/doxygen/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/doxygen/function.rst -------------------------------------------------------------------------------- /sphinx/src/doxygen/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/doxygen/index.rst -------------------------------------------------------------------------------- /sphinx/src/team.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team.rst -------------------------------------------------------------------------------- /sphinx/src/team/ben.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/ben.jpg -------------------------------------------------------------------------------- /sphinx/src/team/ben.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/ben.rst -------------------------------------------------------------------------------- /sphinx/src/team/christoph.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/christoph.jpg -------------------------------------------------------------------------------- /sphinx/src/team/christoph.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/christoph.rst -------------------------------------------------------------------------------- /sphinx/src/team/david.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/david.jpg -------------------------------------------------------------------------------- /sphinx/src/team/david.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/david.rst -------------------------------------------------------------------------------- /sphinx/src/team/irina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/irina.jpg -------------------------------------------------------------------------------- /sphinx/src/team/irina.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/irina.rst -------------------------------------------------------------------------------- /sphinx/src/team/jonas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/jonas.jpg -------------------------------------------------------------------------------- /sphinx/src/team/jonas.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/jonas.rst -------------------------------------------------------------------------------- /sphinx/src/team/jonathan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/jonathan.jpg -------------------------------------------------------------------------------- /sphinx/src/team/jonathan.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/jonathan.rst -------------------------------------------------------------------------------- /sphinx/src/team/karen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/karen.jpg -------------------------------------------------------------------------------- /sphinx/src/team/karen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/karen.rst -------------------------------------------------------------------------------- /sphinx/src/team/nick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/nick.jpg -------------------------------------------------------------------------------- /sphinx/src/team/nick.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/nick.rst -------------------------------------------------------------------------------- /sphinx/src/team/oleg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/oleg.jpg -------------------------------------------------------------------------------- /sphinx/src/team/oleg.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/oleg.rst -------------------------------------------------------------------------------- /sphinx/src/team/ollie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/ollie.jpg -------------------------------------------------------------------------------- /sphinx/src/team/ollie.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/team/ollie.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/dense.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/dense.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/driver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/driver.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/fields.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/fields.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/flecsit.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/flecsit.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/index-spaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/index-spaces.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/mpi-interoperability.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/mpi-interoperability.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/ragged.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/ragged.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/sparse.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/sparse.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/specialization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/specialization.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/tasks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/tasks.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/topologies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/topologies.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/topologies/octree.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/topologies/octree.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/topologies/set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/topologies/set.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/topologies/structured.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/topologies/structured.rst -------------------------------------------------------------------------------- /sphinx/src/tutorial/topologies/unstructured.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/tutorial/topologies/unstructured.rst -------------------------------------------------------------------------------- /sphinx/src/user-guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/user-guide.rst -------------------------------------------------------------------------------- /sphinx/src/user-guide/control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/user-guide/control.rst -------------------------------------------------------------------------------- /sphinx/src/user-guide/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/user-guide/data.rst -------------------------------------------------------------------------------- /sphinx/src/user-guide/execution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/sphinx/src/user-guide/execution.rst -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/bin/flecsi-tutorial.csh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/bin/flecsi-tutorial.csh.in -------------------------------------------------------------------------------- /tools/bin/flecsi-tutorial.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/bin/flecsi-tutorial.in -------------------------------------------------------------------------------- /tools/bin/flecsi-tutorial.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/bin/flecsi-tutorial.sh.in -------------------------------------------------------------------------------- /tools/bin/flecsi.csh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/bin/flecsi.csh.in -------------------------------------------------------------------------------- /tools/bin/flecsi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/bin/flecsi.in -------------------------------------------------------------------------------- /tools/bin/flecsi.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/bin/flecsi.sh.in -------------------------------------------------------------------------------- /tools/find_guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/find_guard -------------------------------------------------------------------------------- /tools/find_sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/find_sources -------------------------------------------------------------------------------- /tools/flecsit/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/flecsit/bin/flecsit-completion.bash: -------------------------------------------------------------------------------- 1 | complete -W "compile analyze" flecsit 2 | -------------------------------------------------------------------------------- /tools/flecsit/bin/flecsit.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/bin/flecsit.in -------------------------------------------------------------------------------- /tools/flecsit/flecsit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit.md -------------------------------------------------------------------------------- /tools/flecsit/flecsit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/__init__.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/base.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/driver.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/factory.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/__init__.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/analysis.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/analysis_driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/analysis_driver/__init__.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/analysis_driver/cmakelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/analysis_driver/cmakelist.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/analysis_driver/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/analysis_driver/execute.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/compile.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/compile_driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/compile_driver/__init__.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/compile_driver/cmakelists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/compile_driver/cmakelists.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/compile_driver/execute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/compile_driver/execute.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/services/service_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/services/service_utils.py -------------------------------------------------------------------------------- /tools/flecsit/flecsit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/flecsit/utils.py -------------------------------------------------------------------------------- /tools/flecsit/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecsit/setup.py -------------------------------------------------------------------------------- /tools/flecstan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/CMakeLists.txt -------------------------------------------------------------------------------- /tools/flecstan/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/README.rst -------------------------------------------------------------------------------- /tools/flecstan/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/compile.sh -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-data-model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-data-model.cc -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-data-model.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-data-model.color -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-data-model.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-data-model.full -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-data-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-data-model.json -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-data-model.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-data-model.plain -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-type.cc -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-type.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-type.color -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-type.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-type.full -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-type.json -------------------------------------------------------------------------------- /tools/flecstan/example-field/incorrect-type.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/incorrect-type.plain -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-name.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-name.cc -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-name.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-name.color -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-name.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-name.full -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-name.json -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-name.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-name.plain -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-namespace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-namespace.cc -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-namespace.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-namespace.color -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-namespace.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-namespace.full -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-namespace.json -------------------------------------------------------------------------------- /tools/flecstan/example-field/mismatching-namespace.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/mismatching-namespace.plain -------------------------------------------------------------------------------- /tools/flecstan/example-field/readme.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/readme.rst -------------------------------------------------------------------------------- /tools/flecstan/example-field/type-data-range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/type-data-range.cc -------------------------------------------------------------------------------- /tools/flecstan/example-field/type-data-range.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/type-data-range.color -------------------------------------------------------------------------------- /tools/flecstan/example-field/type-data-range.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/type-data-range.full -------------------------------------------------------------------------------- /tools/flecstan/example-field/type-data-range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/type-data-range.json -------------------------------------------------------------------------------- /tools/flecstan/example-field/type-data-range.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/type-data-range.plain -------------------------------------------------------------------------------- /tools/flecstan/example-field/version-out-of-range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/version-out-of-range.cc -------------------------------------------------------------------------------- /tools/flecstan/example-field/version-out-of-range.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/version-out-of-range.color -------------------------------------------------------------------------------- /tools/flecstan/example-field/version-out-of-range.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/version-out-of-range.full -------------------------------------------------------------------------------- /tools/flecstan/example-field/version-out-of-range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/version-out-of-range.json -------------------------------------------------------------------------------- /tools/flecstan/example-field/version-out-of-range.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example-field/version-out-of-range.plain -------------------------------------------------------------------------------- /tools/flecstan/example/01-task-good-register-execute-inside.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/01-task-good-register-execute-inside.cc -------------------------------------------------------------------------------- /tools/flecstan/example/02-task-good-register-execute-outside.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/02-task-good-register-execute-outside.cc -------------------------------------------------------------------------------- /tools/flecstan/example/03-task-good-register-execute-global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/03-task-good-register-execute-global.cc -------------------------------------------------------------------------------- /tools/flecstan/example/04-task-good-register-not-ambiguous.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/04-task-good-register-not-ambiguous.cc -------------------------------------------------------------------------------- /tools/flecstan/example/04-task-good-register-not-ambiguous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/04-task-good-register-not-ambiguous.json -------------------------------------------------------------------------------- /tools/flecstan/example/05-task-warning-register-no-execute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/05-task-warning-register-no-execute.cc -------------------------------------------------------------------------------- /tools/flecstan/example/05-task-warning-register-no-execute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/05-task-warning-register-no-execute.json -------------------------------------------------------------------------------- /tools/flecstan/example/06-task-warning-register-execute-warn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/06-task-warning-register-execute-warn.cc -------------------------------------------------------------------------------- /tools/flecstan/example/08-task-ugly-register-execute-odd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/08-task-ugly-register-execute-odd.cc -------------------------------------------------------------------------------- /tools/flecstan/example/08-task-ugly-register-execute-odd.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/08-task-ugly-register-execute-odd.color -------------------------------------------------------------------------------- /tools/flecstan/example/08-task-ugly-register-execute-odd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/08-task-ugly-register-execute-odd.json -------------------------------------------------------------------------------- /tools/flecstan/example/08-task-ugly-register-execute-odd.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/08-task-ugly-register-execute-odd.plain -------------------------------------------------------------------------------- /tools/flecstan/example/09-task-compile-register-not-scope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/09-task-compile-register-not-scope.cc -------------------------------------------------------------------------------- /tools/flecstan/example/09-task-compile-register-not-scope.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/09-task-compile-register-not-scope.color -------------------------------------------------------------------------------- /tools/flecstan/example/09-task-compile-register-not-scope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/09-task-compile-register-not-scope.json -------------------------------------------------------------------------------- /tools/flecstan/example/09-task-compile-register-not-scope.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/09-task-compile-register-not-scope.plain -------------------------------------------------------------------------------- /tools/flecstan/example/10-task-compile-execute-not-scope.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/10-task-compile-execute-not-scope.cc -------------------------------------------------------------------------------- /tools/flecstan/example/10-task-compile-execute-not-scope.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/10-task-compile-execute-not-scope.color -------------------------------------------------------------------------------- /tools/flecstan/example/10-task-compile-execute-not-scope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/10-task-compile-execute-not-scope.json -------------------------------------------------------------------------------- /tools/flecstan/example/10-task-compile-execute-not-scope.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/10-task-compile-execute-not-scope.plain -------------------------------------------------------------------------------- /tools/flecstan/example/11-task-compile-register-not-token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/11-task-compile-register-not-token.cc -------------------------------------------------------------------------------- /tools/flecstan/example/11-task-compile-register-not-token.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/11-task-compile-register-not-token.color -------------------------------------------------------------------------------- /tools/flecstan/example/11-task-compile-register-not-token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/11-task-compile-register-not-token.json -------------------------------------------------------------------------------- /tools/flecstan/example/11-task-compile-register-not-token.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/11-task-compile-register-not-token.plain -------------------------------------------------------------------------------- /tools/flecstan/example/12-task-compile-register-ambiguous.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/12-task-compile-register-ambiguous.cc -------------------------------------------------------------------------------- /tools/flecstan/example/12-task-compile-register-ambiguous.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/12-task-compile-register-ambiguous.color -------------------------------------------------------------------------------- /tools/flecstan/example/12-task-compile-register-ambiguous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/12-task-compile-register-ambiguous.json -------------------------------------------------------------------------------- /tools/flecstan/example/12-task-compile-register-ambiguous.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/12-task-compile-register-ambiguous.plain -------------------------------------------------------------------------------- /tools/flecstan/example/13-task-compile-register-duplicate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/13-task-compile-register-duplicate.cc -------------------------------------------------------------------------------- /tools/flecstan/example/13-task-compile-register-duplicate.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/13-task-compile-register-duplicate.color -------------------------------------------------------------------------------- /tools/flecstan/example/13-task-compile-register-duplicate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/13-task-compile-register-duplicate.json -------------------------------------------------------------------------------- /tools/flecstan/example/13-task-compile-register-duplicate.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/13-task-compile-register-duplicate.plain -------------------------------------------------------------------------------- /tools/flecstan/example/15-task-run-segfault-register-forgot.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/15-task-run-segfault-register-forgot.cc -------------------------------------------------------------------------------- /tools/flecstan/example/16-task-run-segfault-execute-odd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/16-task-run-segfault-execute-odd.cc -------------------------------------------------------------------------------- /tools/flecstan/example/16-task-run-segfault-execute-odd.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/16-task-run-segfault-execute-odd.color -------------------------------------------------------------------------------- /tools/flecstan/example/16-task-run-segfault-execute-odd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/16-task-run-segfault-execute-odd.json -------------------------------------------------------------------------------- /tools/flecstan/example/16-task-run-segfault-execute-odd.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/16-task-run-segfault-execute-odd.plain -------------------------------------------------------------------------------- /tools/flecstan/example/17-task-run-segfault-register-typo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/17-task-run-segfault-register-typo.cc -------------------------------------------------------------------------------- /tools/flecstan/example/17-task-run-segfault-register-typo.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/17-task-run-segfault-register-typo.color -------------------------------------------------------------------------------- /tools/flecstan/example/17-task-run-segfault-register-typo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/17-task-run-segfault-register-typo.json -------------------------------------------------------------------------------- /tools/flecstan/example/17-task-run-segfault-register-typo.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/17-task-run-segfault-register-typo.plain -------------------------------------------------------------------------------- /tools/flecstan/example/18-task-run-segfault-register-odd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/18-task-run-segfault-register-odd.cc -------------------------------------------------------------------------------- /tools/flecstan/example/18-task-run-segfault-register-odd.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/18-task-run-segfault-register-odd.color -------------------------------------------------------------------------------- /tools/flecstan/example/18-task-run-segfault-register-odd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/18-task-run-segfault-register-odd.json -------------------------------------------------------------------------------- /tools/flecstan/example/18-task-run-segfault-register-odd.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/18-task-run-segfault-register-odd.plain -------------------------------------------------------------------------------- /tools/flecstan/example/19-task-good-task-return-value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/19-task-good-task-return-value.cc -------------------------------------------------------------------------------- /tools/flecstan/example/19-task-good-task-return-value.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/19-task-good-task-return-value.color -------------------------------------------------------------------------------- /tools/flecstan/example/19-task-good-task-return-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/19-task-good-task-return-value.json -------------------------------------------------------------------------------- /tools/flecstan/example/19-task-good-task-return-value.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/19-task-good-task-return-value.plain -------------------------------------------------------------------------------- /tools/flecstan/example/20-task-compile-argument-missing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/20-task-compile-argument-missing.cc -------------------------------------------------------------------------------- /tools/flecstan/example/20-task-compile-argument-missing.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/20-task-compile-argument-missing.color -------------------------------------------------------------------------------- /tools/flecstan/example/20-task-compile-argument-missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/20-task-compile-argument-missing.json -------------------------------------------------------------------------------- /tools/flecstan/example/20-task-compile-argument-missing.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/20-task-compile-argument-missing.plain -------------------------------------------------------------------------------- /tools/flecstan/example/21-task-compile-argument-too-few.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/21-task-compile-argument-too-few.cc -------------------------------------------------------------------------------- /tools/flecstan/example/21-task-compile-argument-too-few.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/21-task-compile-argument-too-few.color -------------------------------------------------------------------------------- /tools/flecstan/example/21-task-compile-argument-too-few.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/21-task-compile-argument-too-few.json -------------------------------------------------------------------------------- /tools/flecstan/example/21-task-compile-argument-too-few.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/21-task-compile-argument-too-few.plain -------------------------------------------------------------------------------- /tools/flecstan/example/22-task-compile-argument-too-many.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/22-task-compile-argument-too-many.cc -------------------------------------------------------------------------------- /tools/flecstan/example/22-task-compile-argument-too-many.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/22-task-compile-argument-too-many.color -------------------------------------------------------------------------------- /tools/flecstan/example/22-task-compile-argument-too-many.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/22-task-compile-argument-too-many.json -------------------------------------------------------------------------------- /tools/flecstan/example/22-task-compile-argument-too-many.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/22-task-compile-argument-too-many.plain -------------------------------------------------------------------------------- /tools/flecstan/example/23-task-good-argument-int2double.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/23-task-good-argument-int2double.cc -------------------------------------------------------------------------------- /tools/flecstan/example/23-task-good-argument-int2double.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/23-task-good-argument-int2double.color -------------------------------------------------------------------------------- /tools/flecstan/example/23-task-good-argument-int2double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/23-task-good-argument-int2double.json -------------------------------------------------------------------------------- /tools/flecstan/example/23-task-good-argument-int2double.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/23-task-good-argument-int2double.plain -------------------------------------------------------------------------------- /tools/flecstan/example/24-task-good-argument-double2int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/24-task-good-argument-double2int.cc -------------------------------------------------------------------------------- /tools/flecstan/example/24-task-good-argument-double2int.color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/24-task-good-argument-double2int.color -------------------------------------------------------------------------------- /tools/flecstan/example/24-task-good-argument-double2int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/24-task-good-argument-double2int.json -------------------------------------------------------------------------------- /tools/flecstan/example/24-task-good-argument-double2int.plain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/24-task-good-argument-double2int.plain -------------------------------------------------------------------------------- /tools/flecstan/example/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/example/README.rst -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-analysis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-analysis.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-analysis.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-arg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-arg.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-arg.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-config.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-config.h.in -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-diagnostic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-diagnostic.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-diagnostic.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-macro.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-main.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-misc.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-misc.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-prep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-prep.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-prep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-prep.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-utility.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-utility.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-visitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-visitor.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-visitor.h -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-yaml.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-yaml.cc -------------------------------------------------------------------------------- /tools/flecstan/src/flecstan-yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/src/flecstan-yaml.h -------------------------------------------------------------------------------- /tools/flecstan/talks/2018-aug-13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/talks/2018-aug-13.pdf -------------------------------------------------------------------------------- /tools/flecstan/talks/2018-oct-23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/talks/2018-oct-23.pdf -------------------------------------------------------------------------------- /tools/flecstan/talks/2019-jul-02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/talks/2019-jul-02.pdf -------------------------------------------------------------------------------- /tools/flecstan/talks/2019-mar-12.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/flecstan/talks/2019-mar-12.pdf -------------------------------------------------------------------------------- /tools/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/format -------------------------------------------------------------------------------- /tools/mesh-gen/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/mesh-gen/main.cc -------------------------------------------------------------------------------- /tools/replace_double_underscore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/replace_double_underscore.sh -------------------------------------------------------------------------------- /tools/simple-ast/2018-oct-23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/simple-ast/2018-oct-23.pdf -------------------------------------------------------------------------------- /tools/simple-ast/one.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/simple-ast/one.hh -------------------------------------------------------------------------------- /tools/simple-ast/runme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/simple-ast/runme -------------------------------------------------------------------------------- /tools/simple-ast/two.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/simple-ast/two.cc -------------------------------------------------------------------------------- /tools/simple-ast/visit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/simple-ast/visit.cc -------------------------------------------------------------------------------- /tools/texit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laristra/flecsi/HEAD/tools/texit --------------------------------------------------------------------------------