├── .appveyor.yml ├── .circleci └── config.yml ├── .clang-format ├── .clang-tidy ├── .cmake-format.yaml ├── .github ├── codecov.yml └── workflows │ ├── cancelling.yml │ ├── continuous-integration.yml │ ├── formatting.yml │ └── python-package.yml ├── .gitignore ├── .gitmodules ├── .misc ├── license.cpp └── license.py ├── .readthedocs.yml ├── .requirements ├── build.txt ├── mpi_runtime.txt └── runtime.txt ├── .travis.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── VERSION ├── cmake ├── Modules │ ├── BuildSettings.cmake │ ├── ClangFormat.cmake │ ├── Compilers.cmake │ ├── ConfigCPack.cmake │ ├── ConfigCUDA.cmake │ ├── ConfigCaliper.cmake │ ├── ConfigCpuArch.cmake │ ├── ConfigPython.cmake │ ├── Documentation.cmake │ ├── Extern.cmake │ ├── FindAllineaMAP.cmake │ ├── FindBoost.cmake │ ├── FindCUPTI.cmake │ ├── FindCpuArch.cmake │ ├── FindCrayPAT.cmake │ ├── FindLIKWID.cmake │ ├── FindNCCL.cmake │ ├── FindNVML.cmake │ ├── FindNVTX.cmake │ ├── FindPAPI.cmake │ ├── FindPython │ │ └── Support.cmake │ ├── FindPython3.cmake │ ├── FindPythonLibs.cmake │ ├── FindTAU.cmake │ ├── FindUPCXX.cmake │ ├── Findgperftools.cmake │ ├── Findittnotify.cmake │ ├── Findlibunwind.cmake │ ├── GenerateMakefile.cmake │ ├── LocalFindUtilities.cmake │ ├── MacroUtilities.cmake │ ├── Options.cmake │ ├── PackageConfigure.cmake │ ├── Packages.cmake │ ├── ProjectSetup.cmake │ └── UserPackages.cmake └── Templates │ ├── Doxyfile.in │ ├── compiler-instr.cpp.in │ ├── console-script.py.in │ ├── cuda_compute_capability.cu │ ├── defines.h.in │ ├── exe.cpp.in │ ├── test-python-install-import.cmake.in │ ├── timemory-config-build.cmake.in │ ├── timemory-config-components.cmake.in │ ├── timemory-config.cmake.in │ ├── timemory-target-extract.cmake.in │ └── version.h.in ├── docker ├── build.sh ├── cpu │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── apt.sh │ ├── etc │ │ ├── bash.bashrc │ │ ├── compute-dir-size.py │ │ └── profile.d │ │ │ └── general-funcs.sh │ ├── install.sh │ └── spack.yaml ├── docker-compose.yml └── gpu │ ├── Dockerfile │ ├── Dockerfile.dev │ ├── apt.sh │ ├── etc │ ├── bash.bashrc │ ├── compute-dir-size.py │ └── profile.d │ │ └── general-funcs.sh │ └── spack.yaml ├── docs ├── .gitignore ├── Makefile ├── about.md ├── api.md ├── api │ ├── concepts.md │ ├── library.md │ ├── memory_management.md │ ├── operations.md │ ├── policies.md │ ├── python.md │ ├── templates.md │ ├── templates │ │ ├── auto_bundle.md │ │ ├── auto_list.md │ │ ├── auto_tuple.md │ │ ├── component_bundle.md │ │ ├── component_list.md │ │ ├── component_tuple.md │ │ └── lightweight_tuple.md │ ├── type_traits.md │ └── utilities.md ├── components.md ├── components │ ├── custom_components.md │ ├── gotcha.md │ ├── mpi_macro_dp_roofline.png │ ├── roofline.md │ └── work_macro_sp_roofline.png ├── conf.py ├── doxygen.md ├── environment.yml ├── features.md ├── getting_started.md ├── getting_started │ ├── basics.md │ ├── integrating.md │ ├── integrating.md.in │ ├── roofline.jpg │ └── roofline.md ├── index.md ├── installation.md.in ├── make.bat ├── tools.md ├── tools │ ├── kokkos-connector │ │ └── README.md │ ├── timemory-avail │ │ └── README.md │ ├── timemory-compiler-instrument │ │ └── README.md │ ├── timemory-jump │ │ └── README.md │ ├── timemory-mallocp │ │ └── README.md │ ├── timemory-mpip │ │ └── README.md │ ├── timemory-ncclp │ │ └── README.md │ ├── timemory-nvml │ │ └── README.md │ ├── timemory-ompt │ │ └── README.md │ ├── timemory-run │ │ └── README.md │ ├── timemory-stubs │ │ └── README.md │ └── timemory-timem │ │ └── README.md └── tutorials.md ├── examples ├── CMakeLists.txt ├── README.md ├── ex-array-of-bundles │ ├── CMakeLists.txt │ └── ex_array_of_bundles.cpp ├── ex-c │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_c.c │ └── ex_c_timing.c ├── ex-caliper │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_caliper.cpp │ └── ex_caliper.py ├── ex-compiler-instrument │ ├── CMakeLists.txt │ ├── README.md │ └── ex_compiler_instrument.cpp ├── ex-cpu-roofline │ ├── CMakeLists.txt │ ├── README.md │ └── ex_cpu_roofline.cpp ├── ex-custom-dynamic-instr │ ├── CMakeLists.txt │ ├── README.md │ └── ex_custom_dynamic_instr.cpp ├── ex-cxx-basic │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ └── ex_cxx_basic.cpp ├── ex-cxx-overhead │ ├── CMakeLists.txt │ ├── README.md │ └── ex_cxx_overhead.cpp ├── ex-cxx-tuple │ ├── CMakeLists.txt │ ├── README.md │ └── ex_cxx_tuple.cpp ├── ex-derived │ ├── CMakeLists.txt │ ├── README.md │ └── ex_derived.cpp ├── ex-ert │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_ert.cpp │ └── ex_ert_kokkos.cpp ├── ex-fortran │ ├── CMakeLists.txt │ ├── README.md │ └── ex_fortran.f90 ├── ex-gotcha │ ├── .clang-format │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_gotcha.cpp │ ├── ex_gotcha_lib.cpp │ ├── ex_gotcha_lib.hpp │ └── ex_gotcha_replacement.cpp ├── ex-gpu-roofline │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_gpu_roofline.cpp │ └── ex_gpu_roofline_bare.cpp ├── ex-gpu │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_gpu_event.cu │ ├── ex_kernel_instrument.cu │ ├── ex_kernel_instrument_v2.cu │ └── v3 │ │ ├── CMakeLists.txt │ │ ├── ex_kernel_instrument.cpp │ │ ├── gpu_common.hpp │ │ ├── gpu_device_timer.cpp │ │ ├── gpu_device_timer.hpp │ │ ├── gpu_op_tracker.cpp │ │ └── gpu_op_tracker.hpp ├── ex-likwid │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_likwid.cpp │ └── ex_likwid.py ├── ex-minimal │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_minimal.c │ ├── ex_minimal.cpp │ ├── ex_minimal_library.c │ ├── ex_minimal_library.cpp │ ├── ex_minimal_library_overload.c │ ├── ex_minimal_library_overload.cpp │ └── ex_python_minimal.py ├── ex-optional │ ├── .clang-format │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_optional.cpp │ └── ex_optional.hpp ├── ex-python │ ├── CMakeLists.txt │ ├── README.md │ ├── ex_bindings.py │ ├── ex_builtin.py │ ├── ex_external.py │ ├── ex_general.py │ ├── ex_profiler.py │ ├── ex_sample.py │ ├── ex_tracer.py │ └── libex_bindings.cpp └── ex-statistics │ ├── CMakeLists.txt │ ├── README.md │ └── ex_statistics.cpp ├── external └── CMakeLists.txt ├── pyctest-runner.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── scripts ├── all-pip-build.sh ├── all-pip-update.sh ├── bundle-sdist.sh ├── clang-tidy-full ├── clang-tidy-performance ├── clang-tidy-portability ├── conda-build.sh ├── generate-gitinfo.sh ├── gperf-cpu-profile.sh ├── gperf-heap-profile.sh ├── gprof2dot.py ├── linux-ci.sh ├── macos-ci.sh ├── maeve-ci.sh ├── report-memory.sh └── submit-coverage.sh ├── setup.cfg ├── setup.py ├── source ├── CMakeLists.txt ├── kokkosp.cpp ├── library.cpp ├── pthread.cpp ├── python │ ├── CMakeLists.txt │ ├── README.md │ ├── libpytimemory-api.cpp │ ├── libpytimemory-auto-timer.cpp │ ├── libpytimemory-component-bundle.cpp │ ├── libpytimemory-component-bundle.hpp │ ├── libpytimemory-component-list.cpp │ ├── libpytimemory-components.cpp │ ├── libpytimemory-components.hpp │ ├── libpytimemory-enumeration.cpp │ ├── libpytimemory-hardware-counters.cpp │ ├── libpytimemory-profile.cpp │ ├── libpytimemory-rss-usage.cpp │ ├── libpytimemory-settings.cpp │ ├── libpytimemory-signals.cpp │ ├── libpytimemory-statistics.cpp │ ├── libpytimemory-storage.cpp │ ├── libpytimemory-trace.cpp │ ├── libpytimemory-units.cpp │ ├── libpytimemory.cpp │ ├── libpytimemory.hpp │ └── tools │ │ ├── CMakeLists.txt │ │ └── timem.py ├── tests │ ├── .tests_template.cpp │ ├── CMakeLists.txt │ ├── aligned_allocator_tests.cpp │ ├── api_tests.cpp │ ├── apply_tests.cpp │ ├── archive_storage_tests.cpp │ ├── argparse_tests.cpp │ ├── backtrace_tests.cpp │ ├── cache_tests.cpp │ ├── chained_tests.cpp │ ├── component_bundle_tests.cpp │ ├── cpu_roofline_tests.cpp │ ├── cuda_tests.cpp │ ├── cupti_profiler_tests.cpp │ ├── cupti_tests.cpp │ ├── data_tracker_tests.cpp │ ├── derived_tests.cpp │ ├── ert_tests.cpp │ ├── external │ │ ├── CMakeLists.txt │ │ ├── client.cpp │ │ ├── custom_dynamic_instr.cpp │ │ ├── custom_record_functions.cpp │ │ ├── extern_templates.cpp │ │ ├── gotcha_tests_lib.cpp │ │ ├── gotcha_tests_lib.hpp │ │ └── server.cpp │ ├── flat_tests.cpp │ ├── gotcha_tests.cpp │ ├── gperftools_cpu_tests.cpp │ ├── gperftools_heap_tests.cpp │ ├── hybrid_tests.cpp │ ├── instrumentation_tests.cpp │ ├── io_tests.cpp │ ├── kokkosp_tests.cpp │ ├── library_tests.cpp │ ├── libunwind_tests.cpp │ ├── macro_tests.cpp │ ├── mallocp_tests.cpp │ ├── mangle_tests.cpp │ ├── mpi_tests.cpp │ ├── nccl_tests.cpp │ ├── ompt_handle_tests.cpp │ ├── papi_tests.cpp │ ├── priority_tests.cpp │ ├── ptl_tests.cpp │ ├── ring_buffer_tests.cpp │ ├── rusage_tests.cpp │ ├── scripts │ │ ├── .gitignore │ │ ├── attach-process.sh.in │ │ ├── binary-rewrite-mpip.sh.in │ │ ├── binary-rewrite-regex.sh.in │ │ ├── binary-rewrite-stubs.sh.in │ │ ├── binary-rewrite.sh.in │ │ ├── common.sh.in │ │ ├── custom-components.sh.in │ │ ├── launch-process.sh.in │ │ └── region-sync.sh.in │ ├── settings_tests.cpp │ ├── socket_tests.cpp │ ├── stl_overload_tests.cpp │ ├── test_macros.hpp │ ├── threading_tests.cpp │ ├── throttle_tests.cpp │ ├── timeline_tests.cpp │ ├── timing_tests.cpp │ ├── trace_tests.cpp │ ├── traits_tests.cpp │ ├── tuple_tests.cpp │ ├── type_trait_tests.cpp │ ├── upcxx_tests.cpp │ ├── user_bundle_tests.cpp │ ├── variadic_tests.cpp │ └── warning_tests.cpp ├── timemory │ ├── .gitignore │ ├── CMakeLists.txt │ ├── api.hpp │ ├── api │ │ ├── CMakeLists.txt │ │ ├── extern.cpp │ │ ├── kokkosp.hpp │ │ └── macros.hpp │ ├── backends.hpp │ ├── backends │ │ ├── CMakeLists.txt │ │ ├── callback.hpp │ │ ├── cpu.hpp │ │ ├── cuda.hpp │ │ ├── cupti.hpp │ │ ├── device.hpp │ │ ├── dmp.hpp │ │ ├── extern.hpp │ │ ├── gotcha.hpp │ │ ├── gperftools.hpp │ │ ├── gpu.hpp │ │ ├── hardware_counters.hpp │ │ ├── hip.hpp │ │ ├── ittnotify.hpp │ │ ├── memory.hpp │ │ ├── mpi.hpp │ │ ├── nvtx.hpp │ │ ├── papi.hpp │ │ ├── process.hpp │ │ ├── roctx.hpp │ │ ├── signals.hpp │ │ ├── threading.hpp │ │ ├── types.hpp │ │ ├── types │ │ │ ├── cupti.hpp │ │ │ ├── mpi │ │ │ │ ├── extern.cpp │ │ │ │ └── extern.hpp │ │ │ └── papi.hpp │ │ └── upcxx.hpp │ ├── compat │ │ ├── CMakeLists.txt │ │ ├── extern.cpp │ │ ├── library.h │ │ ├── macros.h │ │ ├── timemory_c.h │ │ └── timemory_f.h │ ├── components.hpp │ ├── components │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── allinea │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── base.hpp │ │ ├── base │ │ │ ├── CMakeLists.txt │ │ │ ├── data.hpp │ │ │ ├── declaration.hpp │ │ │ ├── definition.hpp │ │ │ ├── templates.hpp │ │ │ └── types.hpp │ │ ├── caliper │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ ├── timemory.hpp │ │ │ └── types.hpp │ │ ├── craypat │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── cuda │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── cupti │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.cpp │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── cupti_activity.hpp │ │ │ ├── cupti_counters.hpp │ │ │ ├── cupti_pcsampling.cpp │ │ │ ├── cupti_pcsampling.hpp │ │ │ ├── cupti_profiler.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── data_tracker │ │ │ ├── CMakeLists.txt │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── definition.hpp │ │ ├── extern.hpp │ │ ├── extern │ │ │ └── common.hpp │ │ ├── gotcha │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ ├── memory_allocations.hpp │ │ │ ├── mpip.hpp │ │ │ ├── ncclp.hpp │ │ │ ├── suppression.hpp │ │ │ └── types.hpp │ │ ├── gperftools │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── hip │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── io │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.hpp │ │ │ ├── extern │ │ │ │ ├── read_bytes.cpp │ │ │ │ ├── read_bytes.hpp │ │ │ │ ├── read_char.cpp │ │ │ │ ├── read_char.hpp │ │ │ │ ├── written_bytes.cpp │ │ │ │ ├── written_bytes.hpp │ │ │ │ ├── written_char.cpp │ │ │ │ └── written_char.hpp │ │ │ └── types.hpp │ │ ├── likwid │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── macros.hpp │ │ ├── metadata.hpp │ │ ├── network │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── ompt.hpp │ │ ├── ompt │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ ├── tool.hpp │ │ │ └── types.hpp │ │ ├── opaque │ │ │ ├── declaration.hpp │ │ │ ├── definition.hpp │ │ │ └── types.hpp │ │ ├── papi │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ ├── papi_array.hpp │ │ │ ├── papi_common.hpp │ │ │ ├── papi_rate_tuple.hpp │ │ │ ├── papi_tuple.hpp │ │ │ ├── papi_vector.hpp │ │ │ └── types.hpp │ │ ├── perfetto │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ ├── macros.hpp │ │ │ ├── perfetto.cpp │ │ │ ├── perfetto.hpp │ │ │ └── types.hpp │ │ ├── placeholder.hpp │ │ ├── printer │ │ │ ├── CMakeLists.txt │ │ │ ├── printer.cpp │ │ │ ├── printer.hpp │ │ │ └── types.hpp │ │ ├── properties.hpp │ │ ├── roofline │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── cpu_roofline.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.cu │ │ │ ├── extern.hpp │ │ │ ├── gpu_roofline.hpp │ │ │ └── types.hpp │ │ ├── rusage │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.hpp │ │ │ ├── extern │ │ │ │ ├── current_peak_rss.cpp │ │ │ │ ├── current_peak_rss.hpp │ │ │ │ ├── kernel_mode_time.cpp │ │ │ │ ├── kernel_mode_time.hpp │ │ │ │ ├── num_io_in.cpp │ │ │ │ ├── num_io_in.hpp │ │ │ │ ├── num_io_out.cpp │ │ │ │ ├── num_io_out.hpp │ │ │ │ ├── num_major_page_faults.cpp │ │ │ │ ├── num_major_page_faults.hpp │ │ │ │ ├── num_minor_page_faults.cpp │ │ │ │ ├── num_minor_page_faults.hpp │ │ │ │ ├── page_rss.cpp │ │ │ │ ├── page_rss.hpp │ │ │ │ ├── peak_rss.cpp │ │ │ │ ├── peak_rss.hpp │ │ │ │ ├── priority_context_switch.cpp │ │ │ │ ├── priority_context_switch.hpp │ │ │ │ ├── user_mode_time.cpp │ │ │ │ ├── user_mode_time.hpp │ │ │ │ ├── virtual_memory.cpp │ │ │ │ ├── virtual_memory.hpp │ │ │ │ ├── voluntary_context_switch.cpp │ │ │ │ └── voluntary_context_switch.hpp │ │ │ └── types.hpp │ │ ├── skeletons.hpp │ │ ├── tau_marker │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── timestamp │ │ │ ├── CMakeLists.txt │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ ├── timestamp.cpp │ │ │ ├── timestamp.hpp │ │ │ └── types.hpp │ │ ├── timing │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── child.hpp │ │ │ ├── components.hpp │ │ │ ├── ert_timer.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ ├── types.hpp │ │ │ └── wall_clock.hpp │ │ ├── trip_count │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ │ ├── types.hpp │ │ ├── user_bundle.hpp │ │ ├── user_bundle │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.cpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ ├── overloads.hpp │ │ │ └── types.hpp │ │ └── vtune │ │ │ ├── CMakeLists.txt │ │ │ ├── backends.hpp │ │ │ ├── components.hpp │ │ │ ├── extern.cpp │ │ │ ├── extern.hpp │ │ │ └── types.hpp │ ├── config.hpp │ ├── config │ │ ├── CMakeLists.txt │ │ ├── config.cpp │ │ ├── config.hpp │ │ ├── extern.hpp │ │ ├── macros.hpp │ │ └── types.hpp │ ├── containers.hpp │ ├── containers │ │ ├── CMakeLists.txt │ │ ├── auto_timer.hpp │ │ ├── auto_user_bundle.hpp │ │ ├── declaration.hpp │ │ ├── definition.hpp │ │ ├── extern.cpp │ │ ├── extern.hpp │ │ ├── macros.hpp │ │ ├── types.hpp │ │ └── types │ │ │ ├── complete_list.cpp │ │ │ ├── complete_list.hpp │ │ │ ├── full_auto_timer.cpp │ │ │ ├── full_auto_timer.hpp │ │ │ ├── minimal_auto_timer.cpp │ │ │ └── minimal_auto_timer.hpp │ ├── data.hpp │ ├── data │ │ ├── CMakeLists.txt │ │ ├── extern.cpp │ │ ├── functional.hpp │ │ ├── handler.hpp │ │ ├── ring_buffer_allocator.hpp │ │ ├── shared_stateful_allocator.hpp │ │ ├── statistics.hpp │ │ ├── stream.hpp │ │ └── types.hpp │ ├── definition.hpp │ ├── deprecated │ │ └── CMakeLists.txt │ ├── dll.hpp │ ├── enum.h │ ├── environment.hpp │ ├── environment │ │ ├── CMakeLists.txt │ │ ├── declaration.hpp │ │ ├── definition.hpp │ │ ├── environment.cpp │ │ ├── extern.hpp │ │ ├── macros.hpp │ │ └── types.hpp │ ├── ert.hpp │ ├── ert │ │ ├── CMakeLists.txt │ │ ├── aligned_allocator.hpp │ │ ├── barrier.hpp │ │ ├── cache_size.hpp │ │ ├── configuration.hpp │ │ ├── counter.hpp │ │ ├── data.hpp │ │ ├── definition.hpp │ │ ├── extern.cpp │ │ ├── extern.cu │ │ ├── extern.hip │ │ ├── extern.hpp │ │ ├── kernels.hpp │ │ ├── macros.hpp │ │ └── types.hpp │ ├── extern.hpp │ ├── general.hpp │ ├── general │ │ ├── CMakeLists.txt │ │ ├── extern.cpp │ │ ├── serialization.hpp │ │ ├── source_location.hpp │ │ └── types.hpp │ ├── hash.hpp │ ├── hash │ │ ├── CMakeLists.txt │ │ ├── declaration.hpp │ │ ├── definition.hpp │ │ ├── extern.hpp │ │ ├── hash.cpp │ │ ├── macros.hpp │ │ ├── static_string.cpp │ │ ├── static_string.hpp │ │ └── types.hpp │ ├── library.h │ ├── macros.hpp │ ├── macros │ │ ├── attributes.hpp │ │ ├── compiler.hpp │ │ ├── language.hpp │ │ └── os.hpp │ ├── manager.hpp │ ├── manager │ │ ├── CMakeLists.txt │ │ ├── declaration.hpp │ │ ├── definition.hpp │ │ ├── extern.hpp │ │ ├── macros.hpp │ │ ├── manager.cpp │ │ ├── manager.hpp │ │ └── types.hpp │ ├── math.hpp │ ├── math │ │ ├── abs.hpp │ │ ├── assign.hpp │ │ ├── compute.hpp │ │ ├── divide.hpp │ │ ├── fwd.hpp │ │ ├── max.hpp │ │ ├── min.hpp │ │ ├── minus.hpp │ │ ├── multiply.hpp │ │ ├── percent_diff.hpp │ │ ├── plus.hpp │ │ ├── pow.hpp │ │ ├── sqr.hpp │ │ ├── sqrt.hpp │ │ └── stl.hpp │ ├── mpl.hpp │ ├── mpl │ │ ├── CMakeLists.txt │ │ ├── apply.hpp │ │ ├── available.hpp │ │ ├── concepts.hpp │ │ ├── extern.cpp │ │ ├── filters.hpp │ │ ├── function_traits.hpp │ │ ├── math.hpp │ │ ├── policy.hpp │ │ ├── quirks.hpp │ │ ├── stl.hpp │ │ ├── type_traits.hpp │ │ └── types.hpp │ ├── operations.hpp │ ├── operations │ │ ├── CMakeLists.txt │ │ ├── declaration.hpp │ │ ├── definition.hpp │ │ ├── extern.hpp │ │ ├── macros.hpp │ │ ├── operations.cpp │ │ ├── types.hpp │ │ └── types │ │ │ ├── add_secondary.hpp │ │ │ ├── add_statistics.hpp │ │ │ ├── assemble.hpp │ │ │ ├── async.hpp │ │ │ ├── audit.hpp │ │ │ ├── base_printer.hpp │ │ │ ├── cache.hpp │ │ │ ├── cleanup.hpp │ │ │ ├── compose.hpp │ │ │ ├── construct.hpp │ │ │ ├── copy.hpp │ │ │ ├── decode.hpp │ │ │ ├── derive.hpp │ │ │ ├── echo_measurement.hpp │ │ │ ├── finalize │ │ │ ├── ctest_notes.hpp │ │ │ ├── dmp_get.hpp │ │ │ ├── flamegraph.hpp │ │ │ ├── get.hpp │ │ │ ├── merge.hpp │ │ │ ├── mpi_get.hpp │ │ │ ├── print.hpp │ │ │ └── upc_get.hpp │ │ │ ├── fini.hpp │ │ │ ├── fini_storage.hpp │ │ │ ├── generic.hpp │ │ │ ├── get.hpp │ │ │ ├── init.hpp │ │ │ ├── init_storage.hpp │ │ │ ├── mark.hpp │ │ │ ├── math.hpp │ │ │ ├── measure.hpp │ │ │ ├── node.hpp │ │ │ ├── print.hpp │ │ │ ├── print_header.hpp │ │ │ ├── print_statistics.hpp │ │ │ ├── print_storage.hpp │ │ │ ├── python_class_name.hpp │ │ │ ├── record.hpp │ │ │ ├── reset.hpp │ │ │ ├── sample.hpp │ │ │ ├── serialization.cpp │ │ │ ├── serialization.hpp │ │ │ ├── set.hpp │ │ │ ├── start.hpp │ │ │ ├── stop.hpp │ │ │ ├── storage_initializer.hpp │ │ │ └── store.hpp │ ├── plotting.hpp │ ├── plotting │ │ ├── CMakeLists.txt │ │ ├── declaration.hpp │ │ ├── definition.hpp │ │ ├── extern.hpp │ │ ├── macros.hpp │ │ ├── plotting.cpp │ │ └── types.hpp │ ├── runtime.hpp │ ├── runtime │ │ ├── CMakeLists.txt │ │ ├── callbacks.hpp │ │ ├── configure.hpp │ │ ├── enumerate.hpp │ │ ├── extern.cpp │ │ ├── extern.hpp │ │ ├── initialize.hpp │ │ ├── insert.hpp │ │ ├── invoker.hpp │ │ ├── macros.hpp │ │ ├── properties.hpp │ │ └── types.hpp │ ├── sampling.hpp │ ├── sampling │ │ └── sampler.hpp │ ├── settings.hpp │ ├── settings │ │ ├── CMakeLists.txt │ │ ├── declaration.hpp │ │ ├── definition.hpp │ │ ├── extern.hpp │ │ ├── macros.hpp │ │ ├── settings.cpp │ │ ├── settings.hpp │ │ ├── tsettings.hpp │ │ ├── types.hpp │ │ ├── vsettings.cpp │ │ └── vsettings.hpp │ ├── storage.hpp │ ├── storage │ │ ├── CMakeLists.txt │ │ ├── basic_tree.hpp │ │ ├── declaration.hpp │ │ ├── definition.hpp │ │ ├── extern.cpp │ │ ├── extern.hpp │ │ ├── graph.hpp │ │ ├── graph_data.hpp │ │ ├── macros.hpp │ │ ├── node.hpp │ │ ├── ring_buffer.cpp │ │ ├── ring_buffer.hpp │ │ └── types.hpp │ ├── timemory.h │ ├── timemory.hpp │ ├── tools │ │ ├── CMakeLists.txt │ │ ├── timemory-mallocp.h │ │ ├── timemory-mpip.h │ │ ├── timemory-ncclp.h │ │ └── timemory-ompt.h │ ├── tpls.hpp │ ├── tpls │ │ ├── CMakeLists.txt │ │ ├── cereal │ │ │ ├── archives.hpp │ │ │ ├── cereal.hpp │ │ │ ├── cereal │ │ │ │ ├── access.hpp │ │ │ │ ├── archives │ │ │ │ │ ├── adapters.hpp │ │ │ │ │ ├── binary.hpp │ │ │ │ │ ├── json.hpp │ │ │ │ │ ├── portable_binary.hpp │ │ │ │ │ └── xml.hpp │ │ │ │ ├── cereal.hpp │ │ │ │ ├── details │ │ │ │ │ ├── helpers.hpp │ │ │ │ │ ├── polymorphic_impl.hpp │ │ │ │ │ ├── polymorphic_impl_fwd.hpp │ │ │ │ │ ├── static_object.hpp │ │ │ │ │ ├── traits.hpp │ │ │ │ │ └── util.hpp │ │ │ │ ├── external │ │ │ │ │ ├── base64.hpp │ │ │ │ │ ├── rapidjson │ │ │ │ │ │ ├── allocators.h │ │ │ │ │ │ ├── cursorstreamwrapper.h │ │ │ │ │ │ ├── document.h │ │ │ │ │ │ ├── encodedstream.h │ │ │ │ │ │ ├── encodings.h │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ ├── en.h │ │ │ │ │ │ │ └── error.h │ │ │ │ │ │ ├── filereadstream.h │ │ │ │ │ │ ├── filewritestream.h │ │ │ │ │ │ ├── fwd.h │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── biginteger.h │ │ │ │ │ │ │ ├── diyfp.h │ │ │ │ │ │ │ ├── dtoa.h │ │ │ │ │ │ │ ├── ieee754.h │ │ │ │ │ │ │ ├── itoa.h │ │ │ │ │ │ │ ├── meta.h │ │ │ │ │ │ │ ├── pow10.h │ │ │ │ │ │ │ ├── regex.h │ │ │ │ │ │ │ ├── stack.h │ │ │ │ │ │ │ ├── strfunc.h │ │ │ │ │ │ │ ├── strtod.h │ │ │ │ │ │ │ └── swap.h │ │ │ │ │ │ ├── istreamwrapper.h │ │ │ │ │ │ ├── memorybuffer.h │ │ │ │ │ │ ├── memorystream.h │ │ │ │ │ │ ├── msinttypes │ │ │ │ │ │ │ ├── inttypes.h │ │ │ │ │ │ │ └── stdint.h │ │ │ │ │ │ ├── ostreamwrapper.h │ │ │ │ │ │ ├── pointer.h │ │ │ │ │ │ ├── prettywriter.h │ │ │ │ │ │ ├── rapidjson.h │ │ │ │ │ │ ├── reader.h │ │ │ │ │ │ ├── schema.h │ │ │ │ │ │ ├── stream.h │ │ │ │ │ │ ├── stringbuffer.h │ │ │ │ │ │ └── writer.h │ │ │ │ │ └── rapidxml │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── manual.html │ │ │ │ │ │ ├── rapidxml.hpp │ │ │ │ │ │ ├── rapidxml_iterators.hpp │ │ │ │ │ │ ├── rapidxml_print.hpp │ │ │ │ │ │ └── rapidxml_utils.hpp │ │ │ │ ├── macros.hpp │ │ │ │ ├── specialize.hpp │ │ │ │ ├── types │ │ │ │ │ ├── array.hpp │ │ │ │ │ ├── atomic.hpp │ │ │ │ │ ├── base_class.hpp │ │ │ │ │ ├── bitset.hpp │ │ │ │ │ ├── boost_variant.hpp │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── complex.hpp │ │ │ │ │ ├── concepts │ │ │ │ │ │ └── pair_associative_container.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── forward_list.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ ├── optional.hpp │ │ │ │ │ ├── polymorphic.hpp │ │ │ │ │ ├── queue.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── stack.hpp │ │ │ │ │ ├── string.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── unordered_map.hpp │ │ │ │ │ ├── unordered_set.hpp │ │ │ │ │ ├── utility.hpp │ │ │ │ │ ├── valarray.hpp │ │ │ │ │ ├── variant.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ └── version.hpp │ │ │ └── types.hpp │ │ └── extern.cpp │ ├── trace.hpp │ ├── types.hpp │ ├── units.hpp │ ├── utility.hpp │ ├── utility │ │ ├── CMakeLists.txt │ │ ├── argparse.cpp │ │ ├── argparse.hpp │ │ ├── backtrace.hpp │ │ ├── bit_flags.hpp │ │ ├── bits │ │ │ ├── macros.hpp │ │ │ └── signals.hpp │ │ ├── conditional.hpp │ │ ├── declaration.hpp │ │ ├── delimit.hpp │ │ ├── demangle.cpp │ │ ├── demangle.hpp │ │ ├── filepath.hpp │ │ ├── launch_process.cpp │ │ ├── launch_process.hpp │ │ ├── locking.hpp │ │ ├── macros.hpp │ │ ├── mangler.hpp │ │ ├── md5.cpp │ │ ├── md5.hpp │ │ ├── popen.cpp │ │ ├── popen.hpp │ │ ├── serializer.hpp │ │ ├── signals.hpp │ │ ├── singleton.hpp │ │ ├── socket.hpp │ │ ├── testing.hpp │ │ ├── transient_function.hpp │ │ ├── type_id.hpp │ │ ├── types.hpp │ │ ├── utility.cpp │ │ └── utility.hpp │ ├── variadic.hpp │ └── variadic │ │ ├── CMakeLists.txt │ │ ├── auto_base_bundle.cpp │ │ ├── auto_base_bundle.hpp │ │ ├── auto_bundle.hpp │ │ ├── auto_hybrid.hpp │ │ ├── auto_list.hpp │ │ ├── auto_tuple.hpp │ │ ├── base_bundle.hpp │ │ ├── bundle.cpp │ │ ├── bundle.hpp │ │ ├── bundle_execute.hpp │ │ ├── component_bundle.hpp │ │ ├── component_hybrid.hpp │ │ ├── component_list.hpp │ │ ├── component_tuple.hpp │ │ ├── definition.hpp │ │ ├── functional.cpp │ │ ├── functional.hpp │ │ ├── impl.hpp │ │ ├── lightweight_tuple.cpp │ │ ├── lightweight_tuple.hpp │ │ ├── macros.hpp │ │ └── types.hpp ├── timemory_c.c ├── timemory_c.cpp ├── timemory_f.f90 ├── tools │ ├── CMakeLists.txt │ ├── kokkos-connector │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── kp_timemory.cpp │ │ ├── kp_timemory.cpp.in │ │ ├── kp_timemory.hpp │ │ ├── kp_timemory_common.cpp │ │ ├── kp_timemory_filter.cpp │ │ └── sample │ │ │ └── sample.cpp │ ├── timemory-avail │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── timemory-avail.cpp │ │ └── timemory-avail.hpp │ ├── timemory-compiler-instrument │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── compiler-instrument-base.cpp │ │ └── compiler-instrument.cpp │ ├── timemory-ert │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── timemory-ert-cpu-fp32.cpp │ │ ├── timemory-ert-cpu-fp64.cpp │ │ ├── timemory-ert-gpu-fp16.cpp │ │ ├── timemory-ert-gpu-fp32.cpp │ │ ├── timemory-ert-gpu-fp64.cpp │ │ ├── timemory-ert.cpp │ │ └── timemory-ert.hpp │ ├── timemory-jump │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── library.cpp │ ├── timemory-mallocp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── timemory-mallocp.cpp │ ├── timemory-mpip │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── create_mpi_gotcha.sh │ │ └── timemory-mpip.cpp │ ├── timemory-ncclp │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── timemory-ncclp.cpp │ ├── timemory-nvml │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── monitor.cpp │ │ ├── nvml.cpp │ │ ├── nvml.hpp │ │ ├── nvml_backends.hpp │ │ ├── nvml_memory_info.cpp │ │ ├── nvml_memory_info.hpp │ │ ├── nvml_processes.cpp │ │ ├── nvml_processes.hpp │ │ ├── nvml_temperature.cpp │ │ ├── nvml_temperature.hpp │ │ ├── nvml_types.hpp │ │ ├── nvml_utilization_rate.cpp │ │ ├── nvml_utilization_rate.hpp │ │ └── parse_args.cpp │ ├── timemory-ompt │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── timemory-ompt.cpp │ ├── timemory-pid │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── timemory-pid.cpp │ ├── timemory-run │ │ ├── CMakeLists.txt │ │ ├── Generate.cmake │ │ ├── README.md │ │ ├── collections │ │ │ ├── adios2 │ │ │ ├── aio │ │ │ ├── ampi │ │ │ ├── armci │ │ │ ├── blacs │ │ │ ├── blas │ │ │ ├── caf │ │ │ ├── chapel │ │ │ ├── charm │ │ │ ├── comex │ │ │ ├── converse │ │ │ ├── craymem │ │ │ ├── cuda │ │ │ ├── curl │ │ │ ├── dl │ │ │ ├── dmapp │ │ │ ├── fabric │ │ │ ├── ffio │ │ │ ├── fftw │ │ │ ├── fftwcl │ │ │ ├── globalarrays │ │ │ ├── gmp │ │ │ ├── gni │ │ │ ├── hbw │ │ │ ├── hdf5 │ │ │ ├── heap │ │ │ ├── hip │ │ │ ├── hsa │ │ │ ├── huge │ │ │ ├── jemalloc │ │ │ ├── lapack │ │ │ ├── lustre │ │ │ ├── math │ │ │ ├── memkind │ │ │ ├── memory │ │ │ ├── mpfr │ │ │ ├── mpi │ │ │ ├── netcdf │ │ │ ├── numa │ │ │ ├── oacc │ │ │ ├── omp │ │ │ ├── opencl │ │ │ ├── pblas │ │ │ ├── petsc │ │ │ ├── pgas │ │ │ ├── pnetcdf │ │ │ ├── points │ │ │ ├── pthread │ │ │ ├── realtime │ │ │ ├── scalapack │ │ │ ├── shmem │ │ │ ├── shmemx │ │ │ ├── signal │ │ │ ├── spawn │ │ │ ├── stdio │ │ │ ├── string │ │ │ ├── sync │ │ │ ├── syscall │ │ │ ├── sysfs │ │ │ ├── sysio │ │ │ ├── upc │ │ │ ├── xpmem │ │ │ └── zmq │ │ ├── generated │ │ │ ├── .gitignore │ │ │ ├── timemory-instr.sh │ │ │ └── timemory-run-regex.cpp.in │ │ ├── timemory-run-details.cpp │ │ ├── timemory-run.cpp │ │ └── timemory-run.hpp │ ├── timemory-stubs │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ └── library.cpp │ └── timemory-timem │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── md5.cpp │ │ ├── md5.hpp │ │ ├── timem.cpp │ │ └── timem.hpp ├── trace.cpp └── weak.cpp ├── spack └── package.py ├── tests └── CMakeLists.txt └── timemory ├── CMakeLists.txt ├── README.md ├── __init__.py.in ├── analyze ├── __init__.py ├── __main__.py └── analyze.py ├── api ├── __init__.py └── gperftools │ ├── __init__.py │ ├── __main__.py │ ├── cpu_profiler.py │ ├── heap_profiler.py │ └── utils.py ├── bin └── flamegraph.pl ├── bundle └── __init__.py ├── common.py ├── component └── __init__.py ├── hardware_counters └── __init__.py ├── libs └── __init__.py ├── mpi └── __init__.py ├── mpi_support ├── __init__.py └── mpi_support.py ├── options.py ├── plotting ├── __init__.py ├── __main__.py ├── plotting.py └── table.py ├── profiler ├── __init__.py ├── __main__.py └── profiler.py ├── region └── __init__.py ├── roofline ├── __init__.py ├── __main__.py └── roofline.py ├── signals.py ├── storage └── __init__.py ├── test ├── __init__.py ├── __main__.py ├── test_flat.py ├── test_general.py ├── test_hatchet.py ├── test_rusage.py ├── test_storage.py ├── test_throttle.py ├── test_timeline.py ├── test_timing.py └── test_tools.py ├── tools └── __init__.py ├── trace ├── __init__.py ├── __main__.py └── tracer.py ├── units.py └── util ├── __init__.py └── util.py /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.cmake-format.yaml -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/cancelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.github/workflows/cancelling.yml -------------------------------------------------------------------------------- /.github/workflows/continuous-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.github/workflows/continuous-integration.yml -------------------------------------------------------------------------------- /.github/workflows/formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.github/workflows/formatting.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.gitmodules -------------------------------------------------------------------------------- /.misc/license.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.misc/license.cpp -------------------------------------------------------------------------------- /.misc/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.misc/license.py -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.requirements/build.txt: -------------------------------------------------------------------------------- 1 | Cython 2 | scikit-build 3 | cmake 4 | -------------------------------------------------------------------------------- /.requirements/mpi_runtime.txt: -------------------------------------------------------------------------------- 1 | mpi4py 2 | -------------------------------------------------------------------------------- /.requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.requirements/runtime.txt -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 3.3.0rc4 2 | -------------------------------------------------------------------------------- /cmake/Modules/BuildSettings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/BuildSettings.cmake -------------------------------------------------------------------------------- /cmake/Modules/ClangFormat.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/ClangFormat.cmake -------------------------------------------------------------------------------- /cmake/Modules/Compilers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/Compilers.cmake -------------------------------------------------------------------------------- /cmake/Modules/ConfigCPack.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/ConfigCPack.cmake -------------------------------------------------------------------------------- /cmake/Modules/ConfigCUDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/ConfigCUDA.cmake -------------------------------------------------------------------------------- /cmake/Modules/ConfigCaliper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/ConfigCaliper.cmake -------------------------------------------------------------------------------- /cmake/Modules/ConfigCpuArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/ConfigCpuArch.cmake -------------------------------------------------------------------------------- /cmake/Modules/ConfigPython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/ConfigPython.cmake -------------------------------------------------------------------------------- /cmake/Modules/Documentation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/Documentation.cmake -------------------------------------------------------------------------------- /cmake/Modules/Extern.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/Extern.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindAllineaMAP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindAllineaMAP.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindBoost.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindBoost.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindCUPTI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindCUPTI.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindCpuArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindCpuArch.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindCrayPAT.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindCrayPAT.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindLIKWID.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindLIKWID.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindNCCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindNCCL.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindNVML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindNVML.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindNVTX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindNVTX.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindPAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindPAPI.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindPython/Support.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindPython/Support.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindPython3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindPython3.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindPythonLibs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindPythonLibs.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindTAU.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindTAU.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindUPCXX.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/FindUPCXX.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findgperftools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/Findgperftools.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findittnotify.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/Findittnotify.cmake -------------------------------------------------------------------------------- /cmake/Modules/Findlibunwind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/Findlibunwind.cmake -------------------------------------------------------------------------------- /cmake/Modules/GenerateMakefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/GenerateMakefile.cmake -------------------------------------------------------------------------------- /cmake/Modules/LocalFindUtilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/LocalFindUtilities.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroUtilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/MacroUtilities.cmake -------------------------------------------------------------------------------- /cmake/Modules/Options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/Options.cmake -------------------------------------------------------------------------------- /cmake/Modules/PackageConfigure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/PackageConfigure.cmake -------------------------------------------------------------------------------- /cmake/Modules/Packages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/Packages.cmake -------------------------------------------------------------------------------- /cmake/Modules/ProjectSetup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/ProjectSetup.cmake -------------------------------------------------------------------------------- /cmake/Modules/UserPackages.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Modules/UserPackages.cmake -------------------------------------------------------------------------------- /cmake/Templates/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Templates/Doxyfile.in -------------------------------------------------------------------------------- /cmake/Templates/compiler-instr.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Templates/compiler-instr.cpp.in -------------------------------------------------------------------------------- /cmake/Templates/console-script.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Templates/console-script.py.in -------------------------------------------------------------------------------- /cmake/Templates/cuda_compute_capability.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Templates/cuda_compute_capability.cu -------------------------------------------------------------------------------- /cmake/Templates/defines.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Templates/defines.h.in -------------------------------------------------------------------------------- /cmake/Templates/exe.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Templates/exe.cpp.in -------------------------------------------------------------------------------- /cmake/Templates/timemory-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Templates/timemory-config.cmake.in -------------------------------------------------------------------------------- /cmake/Templates/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/cmake/Templates/version.h.in -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/build.sh -------------------------------------------------------------------------------- /docker/cpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/cpu/Dockerfile -------------------------------------------------------------------------------- /docker/cpu/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/cpu/Dockerfile.dev -------------------------------------------------------------------------------- /docker/cpu/apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/cpu/apt.sh -------------------------------------------------------------------------------- /docker/cpu/etc/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/cpu/etc/bash.bashrc -------------------------------------------------------------------------------- /docker/cpu/etc/compute-dir-size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/cpu/etc/compute-dir-size.py -------------------------------------------------------------------------------- /docker/cpu/etc/profile.d/general-funcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/cpu/etc/profile.d/general-funcs.sh -------------------------------------------------------------------------------- /docker/cpu/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/cpu/install.sh -------------------------------------------------------------------------------- /docker/cpu/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/cpu/spack.yaml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/gpu/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/gpu/Dockerfile -------------------------------------------------------------------------------- /docker/gpu/Dockerfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/gpu/Dockerfile.dev -------------------------------------------------------------------------------- /docker/gpu/apt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/gpu/apt.sh -------------------------------------------------------------------------------- /docker/gpu/etc/bash.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/gpu/etc/bash.bashrc -------------------------------------------------------------------------------- /docker/gpu/etc/compute-dir-size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/gpu/etc/compute-dir-size.py -------------------------------------------------------------------------------- /docker/gpu/etc/profile.d/general-funcs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/gpu/etc/profile.d/general-funcs.sh -------------------------------------------------------------------------------- /docker/gpu/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docker/gpu/spack.yaml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/api/concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/concepts.md -------------------------------------------------------------------------------- /docs/api/library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/library.md -------------------------------------------------------------------------------- /docs/api/memory_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/memory_management.md -------------------------------------------------------------------------------- /docs/api/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/operations.md -------------------------------------------------------------------------------- /docs/api/policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/policies.md -------------------------------------------------------------------------------- /docs/api/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/python.md -------------------------------------------------------------------------------- /docs/api/templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/templates.md -------------------------------------------------------------------------------- /docs/api/templates/auto_bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/templates/auto_bundle.md -------------------------------------------------------------------------------- /docs/api/templates/auto_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/templates/auto_list.md -------------------------------------------------------------------------------- /docs/api/templates/auto_tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/templates/auto_tuple.md -------------------------------------------------------------------------------- /docs/api/templates/component_bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/templates/component_bundle.md -------------------------------------------------------------------------------- /docs/api/templates/component_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/templates/component_list.md -------------------------------------------------------------------------------- /docs/api/templates/component_tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/templates/component_tuple.md -------------------------------------------------------------------------------- /docs/api/templates/lightweight_tuple.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/templates/lightweight_tuple.md -------------------------------------------------------------------------------- /docs/api/type_traits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/type_traits.md -------------------------------------------------------------------------------- /docs/api/utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/api/utilities.md -------------------------------------------------------------------------------- /docs/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/components.md -------------------------------------------------------------------------------- /docs/components/custom_components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/components/custom_components.md -------------------------------------------------------------------------------- /docs/components/gotcha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/components/gotcha.md -------------------------------------------------------------------------------- /docs/components/mpi_macro_dp_roofline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/components/mpi_macro_dp_roofline.png -------------------------------------------------------------------------------- /docs/components/roofline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/components/roofline.md -------------------------------------------------------------------------------- /docs/components/work_macro_sp_roofline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/components/work_macro_sp_roofline.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/doxygen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/doxygen.md -------------------------------------------------------------------------------- /docs/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/environment.yml -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/getting_started/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/getting_started/basics.md -------------------------------------------------------------------------------- /docs/getting_started/integrating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/getting_started/integrating.md -------------------------------------------------------------------------------- /docs/getting_started/integrating.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/getting_started/integrating.md.in -------------------------------------------------------------------------------- /docs/getting_started/roofline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/getting_started/roofline.jpg -------------------------------------------------------------------------------- /docs/getting_started/roofline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/getting_started/roofline.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/installation.md.in -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools.md -------------------------------------------------------------------------------- /docs/tools/kokkos-connector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/kokkos-connector/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-avail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-avail/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-jump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-jump/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-mallocp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-mallocp/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-mpip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-mpip/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-ncclp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-ncclp/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-nvml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-nvml/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-ompt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-ompt/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-run/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-stubs/README.md -------------------------------------------------------------------------------- /docs/tools/timemory-timem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tools/timemory-timem/README.md -------------------------------------------------------------------------------- /docs/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/docs/tutorials.md -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/ex-array-of-bundles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-array-of-bundles/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-c/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-c/README.md -------------------------------------------------------------------------------- /examples/ex-c/ex_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-c/ex_c.c -------------------------------------------------------------------------------- /examples/ex-c/ex_c_timing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-c/ex_c_timing.c -------------------------------------------------------------------------------- /examples/ex-caliper/.gitignore: -------------------------------------------------------------------------------- 1 | /build* 2 | -------------------------------------------------------------------------------- /examples/ex-caliper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-caliper/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-caliper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-caliper/README.md -------------------------------------------------------------------------------- /examples/ex-caliper/ex_caliper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-caliper/ex_caliper.cpp -------------------------------------------------------------------------------- /examples/ex-caliper/ex_caliper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-caliper/ex_caliper.py -------------------------------------------------------------------------------- /examples/ex-compiler-instrument/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-compiler-instrument/README.md -------------------------------------------------------------------------------- /examples/ex-cpu-roofline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cpu-roofline/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-cpu-roofline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cpu-roofline/README.md -------------------------------------------------------------------------------- /examples/ex-cpu-roofline/ex_cpu_roofline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cpu-roofline/ex_cpu_roofline.cpp -------------------------------------------------------------------------------- /examples/ex-custom-dynamic-instr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-custom-dynamic-instr/README.md -------------------------------------------------------------------------------- /examples/ex-cxx-basic/.gitignore: -------------------------------------------------------------------------------- 1 | /build* 2 | -------------------------------------------------------------------------------- /examples/ex-cxx-basic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-basic/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-cxx-basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-basic/README.md -------------------------------------------------------------------------------- /examples/ex-cxx-basic/ex_cxx_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-basic/ex_cxx_basic.cpp -------------------------------------------------------------------------------- /examples/ex-cxx-overhead/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-overhead/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-cxx-overhead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-overhead/README.md -------------------------------------------------------------------------------- /examples/ex-cxx-overhead/ex_cxx_overhead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-overhead/ex_cxx_overhead.cpp -------------------------------------------------------------------------------- /examples/ex-cxx-tuple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-tuple/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-cxx-tuple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-tuple/README.md -------------------------------------------------------------------------------- /examples/ex-cxx-tuple/ex_cxx_tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-cxx-tuple/ex_cxx_tuple.cpp -------------------------------------------------------------------------------- /examples/ex-derived/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-derived/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-derived/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-derived/README.md -------------------------------------------------------------------------------- /examples/ex-derived/ex_derived.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-derived/ex_derived.cpp -------------------------------------------------------------------------------- /examples/ex-ert/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-ert/.clang-format -------------------------------------------------------------------------------- /examples/ex-ert/.gitignore: -------------------------------------------------------------------------------- 1 | /build* 2 | -------------------------------------------------------------------------------- /examples/ex-ert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-ert/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-ert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-ert/README.md -------------------------------------------------------------------------------- /examples/ex-ert/ex_ert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-ert/ex_ert.cpp -------------------------------------------------------------------------------- /examples/ex-ert/ex_ert_kokkos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-ert/ex_ert_kokkos.cpp -------------------------------------------------------------------------------- /examples/ex-fortran/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-fortran/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-fortran/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-fortran/README.md -------------------------------------------------------------------------------- /examples/ex-fortran/ex_fortran.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-fortran/ex_fortran.f90 -------------------------------------------------------------------------------- /examples/ex-gotcha/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gotcha/.clang-format -------------------------------------------------------------------------------- /examples/ex-gotcha/.gitignore: -------------------------------------------------------------------------------- 1 | /build* 2 | -------------------------------------------------------------------------------- /examples/ex-gotcha/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gotcha/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-gotcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gotcha/README.md -------------------------------------------------------------------------------- /examples/ex-gotcha/ex_gotcha.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gotcha/ex_gotcha.cpp -------------------------------------------------------------------------------- /examples/ex-gotcha/ex_gotcha_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gotcha/ex_gotcha_lib.cpp -------------------------------------------------------------------------------- /examples/ex-gotcha/ex_gotcha_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gotcha/ex_gotcha_lib.hpp -------------------------------------------------------------------------------- /examples/ex-gotcha/ex_gotcha_replacement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gotcha/ex_gotcha_replacement.cpp -------------------------------------------------------------------------------- /examples/ex-gpu-roofline/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu-roofline/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-gpu-roofline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu-roofline/README.md -------------------------------------------------------------------------------- /examples/ex-gpu-roofline/ex_gpu_roofline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu-roofline/ex_gpu_roofline.cpp -------------------------------------------------------------------------------- /examples/ex-gpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-gpu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/README.md -------------------------------------------------------------------------------- /examples/ex-gpu/ex_gpu_event.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/ex_gpu_event.cu -------------------------------------------------------------------------------- /examples/ex-gpu/ex_kernel_instrument.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/ex_kernel_instrument.cu -------------------------------------------------------------------------------- /examples/ex-gpu/ex_kernel_instrument_v2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/ex_kernel_instrument_v2.cu -------------------------------------------------------------------------------- /examples/ex-gpu/v3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/v3/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-gpu/v3/ex_kernel_instrument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/v3/ex_kernel_instrument.cpp -------------------------------------------------------------------------------- /examples/ex-gpu/v3/gpu_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/v3/gpu_common.hpp -------------------------------------------------------------------------------- /examples/ex-gpu/v3/gpu_device_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/v3/gpu_device_timer.cpp -------------------------------------------------------------------------------- /examples/ex-gpu/v3/gpu_device_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/v3/gpu_device_timer.hpp -------------------------------------------------------------------------------- /examples/ex-gpu/v3/gpu_op_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/v3/gpu_op_tracker.cpp -------------------------------------------------------------------------------- /examples/ex-gpu/v3/gpu_op_tracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-gpu/v3/gpu_op_tracker.hpp -------------------------------------------------------------------------------- /examples/ex-likwid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-likwid/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-likwid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-likwid/README.md -------------------------------------------------------------------------------- /examples/ex-likwid/ex_likwid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-likwid/ex_likwid.cpp -------------------------------------------------------------------------------- /examples/ex-likwid/ex_likwid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-likwid/ex_likwid.py -------------------------------------------------------------------------------- /examples/ex-minimal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-minimal/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-minimal/README.md -------------------------------------------------------------------------------- /examples/ex-minimal/ex_minimal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-minimal/ex_minimal.c -------------------------------------------------------------------------------- /examples/ex-minimal/ex_minimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-minimal/ex_minimal.cpp -------------------------------------------------------------------------------- /examples/ex-minimal/ex_minimal_library.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-minimal/ex_minimal_library.c -------------------------------------------------------------------------------- /examples/ex-minimal/ex_minimal_library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-minimal/ex_minimal_library.cpp -------------------------------------------------------------------------------- /examples/ex-minimal/ex_python_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-minimal/ex_python_minimal.py -------------------------------------------------------------------------------- /examples/ex-optional/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-optional/.clang-format -------------------------------------------------------------------------------- /examples/ex-optional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-optional/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-optional/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-optional/README.md -------------------------------------------------------------------------------- /examples/ex-optional/ex_optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-optional/ex_optional.cpp -------------------------------------------------------------------------------- /examples/ex-optional/ex_optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-optional/ex_optional.hpp -------------------------------------------------------------------------------- /examples/ex-python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/README.md -------------------------------------------------------------------------------- /examples/ex-python/ex_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/ex_bindings.py -------------------------------------------------------------------------------- /examples/ex-python/ex_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/ex_builtin.py -------------------------------------------------------------------------------- /examples/ex-python/ex_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/ex_external.py -------------------------------------------------------------------------------- /examples/ex-python/ex_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/ex_general.py -------------------------------------------------------------------------------- /examples/ex-python/ex_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/ex_profiler.py -------------------------------------------------------------------------------- /examples/ex-python/ex_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/ex_sample.py -------------------------------------------------------------------------------- /examples/ex-python/ex_tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/ex_tracer.py -------------------------------------------------------------------------------- /examples/ex-python/libex_bindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-python/libex_bindings.cpp -------------------------------------------------------------------------------- /examples/ex-statistics/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-statistics/CMakeLists.txt -------------------------------------------------------------------------------- /examples/ex-statistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-statistics/README.md -------------------------------------------------------------------------------- /examples/ex-statistics/ex_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/examples/ex-statistics/ex_statistics.cpp -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /pyctest-runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/pyctest-runner.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/all-pip-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/all-pip-build.sh -------------------------------------------------------------------------------- /scripts/all-pip-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/all-pip-update.sh -------------------------------------------------------------------------------- /scripts/bundle-sdist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/bundle-sdist.sh -------------------------------------------------------------------------------- /scripts/clang-tidy-full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/clang-tidy-full -------------------------------------------------------------------------------- /scripts/clang-tidy-performance: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/clang-tidy-performance -------------------------------------------------------------------------------- /scripts/clang-tidy-portability: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/clang-tidy-portability -------------------------------------------------------------------------------- /scripts/conda-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/conda-build.sh -------------------------------------------------------------------------------- /scripts/generate-gitinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/generate-gitinfo.sh -------------------------------------------------------------------------------- /scripts/gperf-cpu-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/gperf-cpu-profile.sh -------------------------------------------------------------------------------- /scripts/gperf-heap-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/gperf-heap-profile.sh -------------------------------------------------------------------------------- /scripts/gprof2dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/gprof2dot.py -------------------------------------------------------------------------------- /scripts/linux-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/linux-ci.sh -------------------------------------------------------------------------------- /scripts/macos-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/macos-ci.sh -------------------------------------------------------------------------------- /scripts/maeve-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/maeve-ci.sh -------------------------------------------------------------------------------- /scripts/report-memory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/report-memory.sh -------------------------------------------------------------------------------- /scripts/submit-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/scripts/submit-coverage.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/setup.py -------------------------------------------------------------------------------- /source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/CMakeLists.txt -------------------------------------------------------------------------------- /source/kokkosp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/kokkosp.cpp -------------------------------------------------------------------------------- /source/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/library.cpp -------------------------------------------------------------------------------- /source/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/pthread.cpp -------------------------------------------------------------------------------- /source/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/CMakeLists.txt -------------------------------------------------------------------------------- /source/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/README.md -------------------------------------------------------------------------------- /source/python/libpytimemory-api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-api.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-auto-timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-auto-timer.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-components.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-components.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-components.hpp -------------------------------------------------------------------------------- /source/python/libpytimemory-enumeration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-enumeration.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-profile.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-rss-usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-rss-usage.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-settings.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-signals.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-statistics.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-storage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-storage.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-trace.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory-units.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory-units.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory.cpp -------------------------------------------------------------------------------- /source/python/libpytimemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/libpytimemory.hpp -------------------------------------------------------------------------------- /source/python/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/tools/CMakeLists.txt -------------------------------------------------------------------------------- /source/python/tools/timem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/python/tools/timem.py -------------------------------------------------------------------------------- /source/tests/.tests_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/.tests_template.cpp -------------------------------------------------------------------------------- /source/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/CMakeLists.txt -------------------------------------------------------------------------------- /source/tests/aligned_allocator_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/aligned_allocator_tests.cpp -------------------------------------------------------------------------------- /source/tests/api_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/api_tests.cpp -------------------------------------------------------------------------------- /source/tests/apply_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/apply_tests.cpp -------------------------------------------------------------------------------- /source/tests/archive_storage_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/archive_storage_tests.cpp -------------------------------------------------------------------------------- /source/tests/argparse_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/argparse_tests.cpp -------------------------------------------------------------------------------- /source/tests/backtrace_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/backtrace_tests.cpp -------------------------------------------------------------------------------- /source/tests/cache_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/cache_tests.cpp -------------------------------------------------------------------------------- /source/tests/chained_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/chained_tests.cpp -------------------------------------------------------------------------------- /source/tests/component_bundle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/component_bundle_tests.cpp -------------------------------------------------------------------------------- /source/tests/cpu_roofline_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/cpu_roofline_tests.cpp -------------------------------------------------------------------------------- /source/tests/cuda_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/cuda_tests.cpp -------------------------------------------------------------------------------- /source/tests/cupti_profiler_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/cupti_profiler_tests.cpp -------------------------------------------------------------------------------- /source/tests/cupti_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/cupti_tests.cpp -------------------------------------------------------------------------------- /source/tests/data_tracker_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/data_tracker_tests.cpp -------------------------------------------------------------------------------- /source/tests/derived_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/derived_tests.cpp -------------------------------------------------------------------------------- /source/tests/ert_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/ert_tests.cpp -------------------------------------------------------------------------------- /source/tests/external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/external/CMakeLists.txt -------------------------------------------------------------------------------- /source/tests/external/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/external/client.cpp -------------------------------------------------------------------------------- /source/tests/external/extern_templates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/external/extern_templates.cpp -------------------------------------------------------------------------------- /source/tests/external/gotcha_tests_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/external/gotcha_tests_lib.cpp -------------------------------------------------------------------------------- /source/tests/external/gotcha_tests_lib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/external/gotcha_tests_lib.hpp -------------------------------------------------------------------------------- /source/tests/external/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/external/server.cpp -------------------------------------------------------------------------------- /source/tests/flat_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/flat_tests.cpp -------------------------------------------------------------------------------- /source/tests/gotcha_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/gotcha_tests.cpp -------------------------------------------------------------------------------- /source/tests/gperftools_cpu_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/gperftools_cpu_tests.cpp -------------------------------------------------------------------------------- /source/tests/gperftools_heap_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/gperftools_heap_tests.cpp -------------------------------------------------------------------------------- /source/tests/hybrid_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/hybrid_tests.cpp -------------------------------------------------------------------------------- /source/tests/instrumentation_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/instrumentation_tests.cpp -------------------------------------------------------------------------------- /source/tests/io_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/io_tests.cpp -------------------------------------------------------------------------------- /source/tests/kokkosp_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/kokkosp_tests.cpp -------------------------------------------------------------------------------- /source/tests/library_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/library_tests.cpp -------------------------------------------------------------------------------- /source/tests/libunwind_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/libunwind_tests.cpp -------------------------------------------------------------------------------- /source/tests/macro_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/macro_tests.cpp -------------------------------------------------------------------------------- /source/tests/mallocp_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/mallocp_tests.cpp -------------------------------------------------------------------------------- /source/tests/mangle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/mangle_tests.cpp -------------------------------------------------------------------------------- /source/tests/mpi_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/mpi_tests.cpp -------------------------------------------------------------------------------- /source/tests/nccl_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/nccl_tests.cpp -------------------------------------------------------------------------------- /source/tests/ompt_handle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/ompt_handle_tests.cpp -------------------------------------------------------------------------------- /source/tests/papi_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/papi_tests.cpp -------------------------------------------------------------------------------- /source/tests/priority_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/priority_tests.cpp -------------------------------------------------------------------------------- /source/tests/ptl_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/ptl_tests.cpp -------------------------------------------------------------------------------- /source/tests/ring_buffer_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/ring_buffer_tests.cpp -------------------------------------------------------------------------------- /source/tests/rusage_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/rusage_tests.cpp -------------------------------------------------------------------------------- /source/tests/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | /*.sh 2 | -------------------------------------------------------------------------------- /source/tests/scripts/attach-process.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/scripts/attach-process.sh.in -------------------------------------------------------------------------------- /source/tests/scripts/binary-rewrite.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/scripts/binary-rewrite.sh.in -------------------------------------------------------------------------------- /source/tests/scripts/common.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/scripts/common.sh.in -------------------------------------------------------------------------------- /source/tests/scripts/custom-components.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/scripts/custom-components.sh.in -------------------------------------------------------------------------------- /source/tests/scripts/launch-process.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/scripts/launch-process.sh.in -------------------------------------------------------------------------------- /source/tests/scripts/region-sync.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/scripts/region-sync.sh.in -------------------------------------------------------------------------------- /source/tests/settings_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/settings_tests.cpp -------------------------------------------------------------------------------- /source/tests/socket_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/socket_tests.cpp -------------------------------------------------------------------------------- /source/tests/stl_overload_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/stl_overload_tests.cpp -------------------------------------------------------------------------------- /source/tests/test_macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/test_macros.hpp -------------------------------------------------------------------------------- /source/tests/threading_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/threading_tests.cpp -------------------------------------------------------------------------------- /source/tests/throttle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/throttle_tests.cpp -------------------------------------------------------------------------------- /source/tests/timeline_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/timeline_tests.cpp -------------------------------------------------------------------------------- /source/tests/timing_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/timing_tests.cpp -------------------------------------------------------------------------------- /source/tests/trace_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/trace_tests.cpp -------------------------------------------------------------------------------- /source/tests/traits_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/traits_tests.cpp -------------------------------------------------------------------------------- /source/tests/tuple_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/tuple_tests.cpp -------------------------------------------------------------------------------- /source/tests/type_trait_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/type_trait_tests.cpp -------------------------------------------------------------------------------- /source/tests/upcxx_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/upcxx_tests.cpp -------------------------------------------------------------------------------- /source/tests/user_bundle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/user_bundle_tests.cpp -------------------------------------------------------------------------------- /source/tests/variadic_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/variadic_tests.cpp -------------------------------------------------------------------------------- /source/tests/warning_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tests/warning_tests.cpp -------------------------------------------------------------------------------- /source/timemory/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/.gitignore -------------------------------------------------------------------------------- /source/timemory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/api.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/api.hpp -------------------------------------------------------------------------------- /source/timemory/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/api/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/api/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/api/extern.cpp -------------------------------------------------------------------------------- /source/timemory/api/kokkosp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/api/kokkosp.hpp -------------------------------------------------------------------------------- /source/timemory/api/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/api/macros.hpp -------------------------------------------------------------------------------- /source/timemory/backends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends.hpp -------------------------------------------------------------------------------- /source/timemory/backends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/backends/callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/callback.hpp -------------------------------------------------------------------------------- /source/timemory/backends/cpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/cpu.hpp -------------------------------------------------------------------------------- /source/timemory/backends/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/cuda.hpp -------------------------------------------------------------------------------- /source/timemory/backends/cupti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/cupti.hpp -------------------------------------------------------------------------------- /source/timemory/backends/device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/device.hpp -------------------------------------------------------------------------------- /source/timemory/backends/dmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/dmp.hpp -------------------------------------------------------------------------------- /source/timemory/backends/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/extern.hpp -------------------------------------------------------------------------------- /source/timemory/backends/gotcha.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/gotcha.hpp -------------------------------------------------------------------------------- /source/timemory/backends/gperftools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/gperftools.hpp -------------------------------------------------------------------------------- /source/timemory/backends/gpu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/gpu.hpp -------------------------------------------------------------------------------- /source/timemory/backends/hip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/hip.hpp -------------------------------------------------------------------------------- /source/timemory/backends/ittnotify.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/ittnotify.hpp -------------------------------------------------------------------------------- /source/timemory/backends/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/memory.hpp -------------------------------------------------------------------------------- /source/timemory/backends/mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/mpi.hpp -------------------------------------------------------------------------------- /source/timemory/backends/nvtx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/nvtx.hpp -------------------------------------------------------------------------------- /source/timemory/backends/papi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/papi.hpp -------------------------------------------------------------------------------- /source/timemory/backends/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/process.hpp -------------------------------------------------------------------------------- /source/timemory/backends/roctx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/roctx.hpp -------------------------------------------------------------------------------- /source/timemory/backends/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/signals.hpp -------------------------------------------------------------------------------- /source/timemory/backends/threading.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/threading.hpp -------------------------------------------------------------------------------- /source/timemory/backends/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/types.hpp -------------------------------------------------------------------------------- /source/timemory/backends/types/cupti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/types/cupti.hpp -------------------------------------------------------------------------------- /source/timemory/backends/types/papi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/types/papi.hpp -------------------------------------------------------------------------------- /source/timemory/backends/upcxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/backends/upcxx.hpp -------------------------------------------------------------------------------- /source/timemory/compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/compat/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/compat/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/compat/extern.cpp -------------------------------------------------------------------------------- /source/timemory/compat/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/compat/library.h -------------------------------------------------------------------------------- /source/timemory/compat/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/compat/macros.h -------------------------------------------------------------------------------- /source/timemory/compat/timemory_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/compat/timemory_c.h -------------------------------------------------------------------------------- /source/timemory/compat/timemory_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/compat/timemory_f.h -------------------------------------------------------------------------------- /source/timemory/components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components.hpp -------------------------------------------------------------------------------- /source/timemory/components/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/README.md -------------------------------------------------------------------------------- /source/timemory/components/allinea/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/allinea/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/base.hpp -------------------------------------------------------------------------------- /source/timemory/components/base/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/timemory/components/base/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/base/data.hpp -------------------------------------------------------------------------------- /source/timemory/components/base/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/base/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/caliper/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/caliper/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/craypat/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/craypat/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/cuda/backends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/cuda/backends.hpp -------------------------------------------------------------------------------- /source/timemory/components/cuda/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/cuda/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/cuda/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/cuda/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/cuda/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/cuda/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/cupti/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/cupti/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/cupti/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/cupti/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/cupti/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/cupti/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/definition.hpp -------------------------------------------------------------------------------- /source/timemory/components/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/extern/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/extern/common.hpp -------------------------------------------------------------------------------- /source/timemory/components/gotcha/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/gotcha/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/gotcha/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/gotcha/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/gotcha/mpip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/gotcha/mpip.hpp -------------------------------------------------------------------------------- /source/timemory/components/gotcha/ncclp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/gotcha/ncclp.hpp -------------------------------------------------------------------------------- /source/timemory/components/gotcha/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/gotcha/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/hip/backends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/hip/backends.hpp -------------------------------------------------------------------------------- /source/timemory/components/hip/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/hip/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/hip/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/hip/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/hip/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/hip/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/io/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/components/io/backends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/io/backends.hpp -------------------------------------------------------------------------------- /source/timemory/components/io/components.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/io/components.hpp -------------------------------------------------------------------------------- /source/timemory/components/io/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/io/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/io/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/io/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/likwid/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/likwid/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/likwid/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/likwid/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/likwid/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/likwid/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/macros.hpp -------------------------------------------------------------------------------- /source/timemory/components/metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/metadata.hpp -------------------------------------------------------------------------------- /source/timemory/components/network/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/network/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/ompt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/ompt.hpp -------------------------------------------------------------------------------- /source/timemory/components/ompt/backends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/ompt/backends.hpp -------------------------------------------------------------------------------- /source/timemory/components/ompt/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/ompt/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/ompt/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/ompt/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/ompt/tool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/ompt/tool.hpp -------------------------------------------------------------------------------- /source/timemory/components/ompt/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/ompt/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/opaque/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/opaque/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/papi/backends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/papi/backends.hpp -------------------------------------------------------------------------------- /source/timemory/components/papi/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/papi/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/papi/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/papi/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/papi/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/papi/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/placeholder.hpp -------------------------------------------------------------------------------- /source/timemory/components/printer/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/printer/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/properties.hpp -------------------------------------------------------------------------------- /source/timemory/components/rusage/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/rusage/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/rusage/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/rusage/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/skeletons.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/skeletons.hpp -------------------------------------------------------------------------------- /source/timemory/components/timing/child.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/timing/child.hpp -------------------------------------------------------------------------------- /source/timemory/components/timing/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/timing/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/timing/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/timing/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/timing/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/timing/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/types.hpp -------------------------------------------------------------------------------- /source/timemory/components/user_bundle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/user_bundle.hpp -------------------------------------------------------------------------------- /source/timemory/components/vtune/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/vtune/extern.cpp -------------------------------------------------------------------------------- /source/timemory/components/vtune/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/vtune/extern.hpp -------------------------------------------------------------------------------- /source/timemory/components/vtune/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/components/vtune/types.hpp -------------------------------------------------------------------------------- /source/timemory/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/config.hpp -------------------------------------------------------------------------------- /source/timemory/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/config/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/config/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/config/config.cpp -------------------------------------------------------------------------------- /source/timemory/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/config/config.hpp -------------------------------------------------------------------------------- /source/timemory/config/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/config/extern.hpp -------------------------------------------------------------------------------- /source/timemory/config/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/config/macros.hpp -------------------------------------------------------------------------------- /source/timemory/config/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/config/types.hpp -------------------------------------------------------------------------------- /source/timemory/containers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers.hpp -------------------------------------------------------------------------------- /source/timemory/containers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/containers/auto_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers/auto_timer.hpp -------------------------------------------------------------------------------- /source/timemory/containers/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/containers/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers/definition.hpp -------------------------------------------------------------------------------- /source/timemory/containers/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers/extern.cpp -------------------------------------------------------------------------------- /source/timemory/containers/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers/extern.hpp -------------------------------------------------------------------------------- /source/timemory/containers/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers/macros.hpp -------------------------------------------------------------------------------- /source/timemory/containers/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/containers/types.hpp -------------------------------------------------------------------------------- /source/timemory/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/data.hpp -------------------------------------------------------------------------------- /source/timemory/data/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/data/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/data/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/data/extern.cpp -------------------------------------------------------------------------------- /source/timemory/data/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/data/functional.hpp -------------------------------------------------------------------------------- /source/timemory/data/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/data/handler.hpp -------------------------------------------------------------------------------- /source/timemory/data/statistics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/data/statistics.hpp -------------------------------------------------------------------------------- /source/timemory/data/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/data/stream.hpp -------------------------------------------------------------------------------- /source/timemory/data/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/data/types.hpp -------------------------------------------------------------------------------- /source/timemory/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/definition.hpp -------------------------------------------------------------------------------- /source/timemory/deprecated/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/deprecated/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/dll.hpp -------------------------------------------------------------------------------- /source/timemory/enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/enum.h -------------------------------------------------------------------------------- /source/timemory/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/environment.hpp -------------------------------------------------------------------------------- /source/timemory/environment/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/environment/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/environment/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/environment/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/environment/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/environment/definition.hpp -------------------------------------------------------------------------------- /source/timemory/environment/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/environment/environment.cpp -------------------------------------------------------------------------------- /source/timemory/environment/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/environment/extern.hpp -------------------------------------------------------------------------------- /source/timemory/environment/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/environment/macros.hpp -------------------------------------------------------------------------------- /source/timemory/environment/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/environment/types.hpp -------------------------------------------------------------------------------- /source/timemory/ert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert.hpp -------------------------------------------------------------------------------- /source/timemory/ert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/ert/aligned_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/aligned_allocator.hpp -------------------------------------------------------------------------------- /source/timemory/ert/barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/barrier.hpp -------------------------------------------------------------------------------- /source/timemory/ert/cache_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/cache_size.hpp -------------------------------------------------------------------------------- /source/timemory/ert/configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/configuration.hpp -------------------------------------------------------------------------------- /source/timemory/ert/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/counter.hpp -------------------------------------------------------------------------------- /source/timemory/ert/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/data.hpp -------------------------------------------------------------------------------- /source/timemory/ert/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/definition.hpp -------------------------------------------------------------------------------- /source/timemory/ert/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/extern.cpp -------------------------------------------------------------------------------- /source/timemory/ert/extern.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/extern.cu -------------------------------------------------------------------------------- /source/timemory/ert/extern.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/extern.hip -------------------------------------------------------------------------------- /source/timemory/ert/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/extern.hpp -------------------------------------------------------------------------------- /source/timemory/ert/kernels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/kernels.hpp -------------------------------------------------------------------------------- /source/timemory/ert/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/macros.hpp -------------------------------------------------------------------------------- /source/timemory/ert/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/ert/types.hpp -------------------------------------------------------------------------------- /source/timemory/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/extern.hpp -------------------------------------------------------------------------------- /source/timemory/general.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/general.hpp -------------------------------------------------------------------------------- /source/timemory/general/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/general/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/general/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/general/extern.cpp -------------------------------------------------------------------------------- /source/timemory/general/serialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/general/serialization.hpp -------------------------------------------------------------------------------- /source/timemory/general/source_location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/general/source_location.hpp -------------------------------------------------------------------------------- /source/timemory/general/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/general/types.hpp -------------------------------------------------------------------------------- /source/timemory/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash.hpp -------------------------------------------------------------------------------- /source/timemory/hash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/hash/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/hash/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/definition.hpp -------------------------------------------------------------------------------- /source/timemory/hash/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/extern.hpp -------------------------------------------------------------------------------- /source/timemory/hash/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/hash.cpp -------------------------------------------------------------------------------- /source/timemory/hash/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/macros.hpp -------------------------------------------------------------------------------- /source/timemory/hash/static_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/static_string.cpp -------------------------------------------------------------------------------- /source/timemory/hash/static_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/static_string.hpp -------------------------------------------------------------------------------- /source/timemory/hash/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/hash/types.hpp -------------------------------------------------------------------------------- /source/timemory/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/library.h -------------------------------------------------------------------------------- /source/timemory/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/macros.hpp -------------------------------------------------------------------------------- /source/timemory/macros/attributes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/macros/attributes.hpp -------------------------------------------------------------------------------- /source/timemory/macros/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/macros/compiler.hpp -------------------------------------------------------------------------------- /source/timemory/macros/language.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/macros/language.hpp -------------------------------------------------------------------------------- /source/timemory/macros/os.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/macros/os.hpp -------------------------------------------------------------------------------- /source/timemory/manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager.hpp -------------------------------------------------------------------------------- /source/timemory/manager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/manager/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/manager/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager/definition.hpp -------------------------------------------------------------------------------- /source/timemory/manager/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager/extern.hpp -------------------------------------------------------------------------------- /source/timemory/manager/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager/macros.hpp -------------------------------------------------------------------------------- /source/timemory/manager/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager/manager.cpp -------------------------------------------------------------------------------- /source/timemory/manager/manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager/manager.hpp -------------------------------------------------------------------------------- /source/timemory/manager/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/manager/types.hpp -------------------------------------------------------------------------------- /source/timemory/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math.hpp -------------------------------------------------------------------------------- /source/timemory/math/abs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/abs.hpp -------------------------------------------------------------------------------- /source/timemory/math/assign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/assign.hpp -------------------------------------------------------------------------------- /source/timemory/math/compute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/compute.hpp -------------------------------------------------------------------------------- /source/timemory/math/divide.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/divide.hpp -------------------------------------------------------------------------------- /source/timemory/math/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/fwd.hpp -------------------------------------------------------------------------------- /source/timemory/math/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/max.hpp -------------------------------------------------------------------------------- /source/timemory/math/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/min.hpp -------------------------------------------------------------------------------- /source/timemory/math/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/minus.hpp -------------------------------------------------------------------------------- /source/timemory/math/multiply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/multiply.hpp -------------------------------------------------------------------------------- /source/timemory/math/percent_diff.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/percent_diff.hpp -------------------------------------------------------------------------------- /source/timemory/math/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/plus.hpp -------------------------------------------------------------------------------- /source/timemory/math/pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/pow.hpp -------------------------------------------------------------------------------- /source/timemory/math/sqr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/sqr.hpp -------------------------------------------------------------------------------- /source/timemory/math/sqrt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/sqrt.hpp -------------------------------------------------------------------------------- /source/timemory/math/stl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/math/stl.hpp -------------------------------------------------------------------------------- /source/timemory/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/apply.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/available.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/available.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/concepts.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/extern.cpp -------------------------------------------------------------------------------- /source/timemory/mpl/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/filters.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/function_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/function_traits.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/math.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/policy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/policy.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/quirks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/quirks.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/stl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/stl.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/type_traits.hpp -------------------------------------------------------------------------------- /source/timemory/mpl/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/mpl/types.hpp -------------------------------------------------------------------------------- /source/timemory/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations.hpp -------------------------------------------------------------------------------- /source/timemory/operations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/operations/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/operations/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/definition.hpp -------------------------------------------------------------------------------- /source/timemory/operations/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/extern.hpp -------------------------------------------------------------------------------- /source/timemory/operations/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/macros.hpp -------------------------------------------------------------------------------- /source/timemory/operations/operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/operations.cpp -------------------------------------------------------------------------------- /source/timemory/operations/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/async.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/audit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/audit.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/cache.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/cleanup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/cleanup.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/compose.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/copy.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/decode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/decode.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/derive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/derive.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/fini.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/fini.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/generic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/generic.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/get.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/get.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/init.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/mark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/mark.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/math.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/measure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/measure.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/node.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/print.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/record.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/record.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/reset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/reset.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/sample.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/sample.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/set.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/start.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/stop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/stop.hpp -------------------------------------------------------------------------------- /source/timemory/operations/types/store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/operations/types/store.hpp -------------------------------------------------------------------------------- /source/timemory/plotting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/plotting.hpp -------------------------------------------------------------------------------- /source/timemory/plotting/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/plotting/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/plotting/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/plotting/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/plotting/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/plotting/definition.hpp -------------------------------------------------------------------------------- /source/timemory/plotting/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/plotting/extern.hpp -------------------------------------------------------------------------------- /source/timemory/plotting/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/plotting/macros.hpp -------------------------------------------------------------------------------- /source/timemory/plotting/plotting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/plotting/plotting.cpp -------------------------------------------------------------------------------- /source/timemory/plotting/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/plotting/types.hpp -------------------------------------------------------------------------------- /source/timemory/runtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/runtime/callbacks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/callbacks.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/configure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/configure.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/enumerate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/enumerate.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/extern.cpp -------------------------------------------------------------------------------- /source/timemory/runtime/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/extern.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/initialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/initialize.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/insert.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/invoker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/invoker.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/macros.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/properties.hpp -------------------------------------------------------------------------------- /source/timemory/runtime/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/runtime/types.hpp -------------------------------------------------------------------------------- /source/timemory/sampling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/sampling.hpp -------------------------------------------------------------------------------- /source/timemory/sampling/sampler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/sampling/sampler.hpp -------------------------------------------------------------------------------- /source/timemory/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings.hpp -------------------------------------------------------------------------------- /source/timemory/settings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/settings/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/settings/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/definition.hpp -------------------------------------------------------------------------------- /source/timemory/settings/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/extern.hpp -------------------------------------------------------------------------------- /source/timemory/settings/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/macros.hpp -------------------------------------------------------------------------------- /source/timemory/settings/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/settings.cpp -------------------------------------------------------------------------------- /source/timemory/settings/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/settings.hpp -------------------------------------------------------------------------------- /source/timemory/settings/tsettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/tsettings.hpp -------------------------------------------------------------------------------- /source/timemory/settings/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/types.hpp -------------------------------------------------------------------------------- /source/timemory/settings/vsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/vsettings.cpp -------------------------------------------------------------------------------- /source/timemory/settings/vsettings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/settings/vsettings.hpp -------------------------------------------------------------------------------- /source/timemory/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage.hpp -------------------------------------------------------------------------------- /source/timemory/storage/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/storage/basic_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/basic_tree.hpp -------------------------------------------------------------------------------- /source/timemory/storage/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/storage/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/definition.hpp -------------------------------------------------------------------------------- /source/timemory/storage/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/extern.cpp -------------------------------------------------------------------------------- /source/timemory/storage/extern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/extern.hpp -------------------------------------------------------------------------------- /source/timemory/storage/graph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/graph.hpp -------------------------------------------------------------------------------- /source/timemory/storage/graph_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/graph_data.hpp -------------------------------------------------------------------------------- /source/timemory/storage/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/macros.hpp -------------------------------------------------------------------------------- /source/timemory/storage/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/node.hpp -------------------------------------------------------------------------------- /source/timemory/storage/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/ring_buffer.cpp -------------------------------------------------------------------------------- /source/timemory/storage/ring_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/ring_buffer.hpp -------------------------------------------------------------------------------- /source/timemory/storage/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/storage/types.hpp -------------------------------------------------------------------------------- /source/timemory/timemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/timemory.h -------------------------------------------------------------------------------- /source/timemory/timemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/timemory.hpp -------------------------------------------------------------------------------- /source/timemory/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tools/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/tools/timemory-mallocp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tools/timemory-mallocp.h -------------------------------------------------------------------------------- /source/timemory/tools/timemory-mpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tools/timemory-mpip.h -------------------------------------------------------------------------------- /source/timemory/tools/timemory-ncclp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tools/timemory-ncclp.h -------------------------------------------------------------------------------- /source/timemory/tools/timemory-ompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tools/timemory-ompt.h -------------------------------------------------------------------------------- /source/timemory/tpls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tpls.hpp -------------------------------------------------------------------------------- /source/timemory/tpls/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tpls/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/tpls/cereal/archives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tpls/cereal/archives.hpp -------------------------------------------------------------------------------- /source/timemory/tpls/cereal/cereal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tpls/cereal/cereal.hpp -------------------------------------------------------------------------------- /source/timemory/tpls/cereal/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tpls/cereal/types.hpp -------------------------------------------------------------------------------- /source/timemory/tpls/extern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/tpls/extern.cpp -------------------------------------------------------------------------------- /source/timemory/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/trace.hpp -------------------------------------------------------------------------------- /source/timemory/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/types.hpp -------------------------------------------------------------------------------- /source/timemory/units.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/units.hpp -------------------------------------------------------------------------------- /source/timemory/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility.hpp -------------------------------------------------------------------------------- /source/timemory/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/utility/argparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/argparse.cpp -------------------------------------------------------------------------------- /source/timemory/utility/argparse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/argparse.hpp -------------------------------------------------------------------------------- /source/timemory/utility/backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/backtrace.hpp -------------------------------------------------------------------------------- /source/timemory/utility/bit_flags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/bit_flags.hpp -------------------------------------------------------------------------------- /source/timemory/utility/bits/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/bits/macros.hpp -------------------------------------------------------------------------------- /source/timemory/utility/bits/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/bits/signals.hpp -------------------------------------------------------------------------------- /source/timemory/utility/conditional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/conditional.hpp -------------------------------------------------------------------------------- /source/timemory/utility/declaration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/declaration.hpp -------------------------------------------------------------------------------- /source/timemory/utility/delimit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/delimit.hpp -------------------------------------------------------------------------------- /source/timemory/utility/demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/demangle.cpp -------------------------------------------------------------------------------- /source/timemory/utility/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/demangle.hpp -------------------------------------------------------------------------------- /source/timemory/utility/filepath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/filepath.hpp -------------------------------------------------------------------------------- /source/timemory/utility/launch_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/launch_process.cpp -------------------------------------------------------------------------------- /source/timemory/utility/launch_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/launch_process.hpp -------------------------------------------------------------------------------- /source/timemory/utility/locking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/locking.hpp -------------------------------------------------------------------------------- /source/timemory/utility/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/macros.hpp -------------------------------------------------------------------------------- /source/timemory/utility/mangler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/mangler.hpp -------------------------------------------------------------------------------- /source/timemory/utility/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/md5.cpp -------------------------------------------------------------------------------- /source/timemory/utility/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/md5.hpp -------------------------------------------------------------------------------- /source/timemory/utility/popen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/popen.cpp -------------------------------------------------------------------------------- /source/timemory/utility/popen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/popen.hpp -------------------------------------------------------------------------------- /source/timemory/utility/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/serializer.hpp -------------------------------------------------------------------------------- /source/timemory/utility/signals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/signals.hpp -------------------------------------------------------------------------------- /source/timemory/utility/singleton.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/singleton.hpp -------------------------------------------------------------------------------- /source/timemory/utility/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/socket.hpp -------------------------------------------------------------------------------- /source/timemory/utility/testing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/testing.hpp -------------------------------------------------------------------------------- /source/timemory/utility/type_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/type_id.hpp -------------------------------------------------------------------------------- /source/timemory/utility/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/types.hpp -------------------------------------------------------------------------------- /source/timemory/utility/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/utility.cpp -------------------------------------------------------------------------------- /source/timemory/utility/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/utility/utility.hpp -------------------------------------------------------------------------------- /source/timemory/variadic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/CMakeLists.txt -------------------------------------------------------------------------------- /source/timemory/variadic/auto_bundle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/auto_bundle.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/auto_hybrid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/auto_hybrid.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/auto_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/auto_list.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/auto_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/auto_tuple.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/base_bundle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/base_bundle.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/bundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/bundle.cpp -------------------------------------------------------------------------------- /source/timemory/variadic/bundle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/bundle.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/bundle_execute.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/bundle_execute.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/component_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/component_list.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/component_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/component_tuple.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/definition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/definition.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/functional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/functional.cpp -------------------------------------------------------------------------------- /source/timemory/variadic/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/functional.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/impl.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/macros.hpp -------------------------------------------------------------------------------- /source/timemory/variadic/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory/variadic/types.hpp -------------------------------------------------------------------------------- /source/timemory_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory_c.c -------------------------------------------------------------------------------- /source/timemory_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory_c.cpp -------------------------------------------------------------------------------- /source/timemory_f.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/timemory_f.f90 -------------------------------------------------------------------------------- /source/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/kokkos-connector/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /build* 3 | -------------------------------------------------------------------------------- /source/tools/kokkos-connector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/kokkos-connector/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/kokkos-connector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/kokkos-connector/README.md -------------------------------------------------------------------------------- /source/tools/timemory-avail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-avail/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-avail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-avail/README.md -------------------------------------------------------------------------------- /source/tools/timemory-ert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ert/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-ert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ert/README.md -------------------------------------------------------------------------------- /source/tools/timemory-ert/timemory-ert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ert/timemory-ert.cpp -------------------------------------------------------------------------------- /source/tools/timemory-ert/timemory-ert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ert/timemory-ert.hpp -------------------------------------------------------------------------------- /source/tools/timemory-jump/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-jump/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-jump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-jump/README.md -------------------------------------------------------------------------------- /source/tools/timemory-jump/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-jump/library.cpp -------------------------------------------------------------------------------- /source/tools/timemory-mallocp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-mallocp/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-mallocp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-mallocp/README.md -------------------------------------------------------------------------------- /source/tools/timemory-mpip/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /mfdn-mpi-simulator 3 | -------------------------------------------------------------------------------- /source/tools/timemory-mpip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-mpip/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-mpip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-mpip/README.md -------------------------------------------------------------------------------- /source/tools/timemory-mpip/timemory-mpip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-mpip/timemory-mpip.cpp -------------------------------------------------------------------------------- /source/tools/timemory-ncclp/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /mfdn-nccl-simulator 3 | -------------------------------------------------------------------------------- /source/tools/timemory-ncclp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ncclp/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-ncclp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ncclp/README.md -------------------------------------------------------------------------------- /source/tools/timemory-nvml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-nvml/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-nvml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-nvml/README.md -------------------------------------------------------------------------------- /source/tools/timemory-nvml/monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-nvml/monitor.cpp -------------------------------------------------------------------------------- /source/tools/timemory-nvml/nvml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-nvml/nvml.cpp -------------------------------------------------------------------------------- /source/tools/timemory-nvml/nvml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-nvml/nvml.hpp -------------------------------------------------------------------------------- /source/tools/timemory-nvml/nvml_backends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-nvml/nvml_backends.hpp -------------------------------------------------------------------------------- /source/tools/timemory-nvml/nvml_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-nvml/nvml_types.hpp -------------------------------------------------------------------------------- /source/tools/timemory-nvml/parse_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-nvml/parse_args.cpp -------------------------------------------------------------------------------- /source/tools/timemory-ompt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ompt/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-ompt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ompt/README.md -------------------------------------------------------------------------------- /source/tools/timemory-ompt/timemory-ompt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-ompt/timemory-ompt.cpp -------------------------------------------------------------------------------- /source/tools/timemory-pid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-pid/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-pid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-pid/README.md -------------------------------------------------------------------------------- /source/tools/timemory-pid/timemory-pid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-pid/timemory-pid.cpp -------------------------------------------------------------------------------- /source/tools/timemory-run/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/CMakeLists.txt -------------------------------------------------------------------------------- /source/tools/timemory-run/Generate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/Generate.cmake -------------------------------------------------------------------------------- /source/tools/timemory-run/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/README.md -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/adios2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/adios2 -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/aio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/aio -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/ampi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/ampi -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/armci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/armci -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/blacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/blacs -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/blas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/blas -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/caf -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/chapel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/chapel -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/charm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/charm -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/comex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/comex -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/cuda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/cuda -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/curl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/curl -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/dl -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/dmapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/dmapp -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/fabric: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/fabric -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/ffio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/ffio -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/fftw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/fftw -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/fftwcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/fftwcl -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/gmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/gmp -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/gni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/gni -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/hbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/hbw -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/hdf5 -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/heap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/heap -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/hip -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/hsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/hsa -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/huge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/huge -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/lapack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/lapack -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/lustre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/lustre -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/math: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/math -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/memory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/memory -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/mpfr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/mpfr -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/mpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/mpi -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/netcdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/netcdf -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/numa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/numa -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/oacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/oacc -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/omp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/omp -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/opencl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/opencl -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/pblas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/pblas -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/petsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/petsc -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/pgas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/pgas -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/points -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/shmem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/shmem -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/shmemx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/shmemx -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/upc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/upc -------------------------------------------------------------------------------- /source/tools/timemory-run/collections/zmq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-run/collections/zmq -------------------------------------------------------------------------------- /source/tools/timemory-run/generated/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # ignore changes in generated file 3 | /timemory-run-regex.cpp 4 | -------------------------------------------------------------------------------- /source/tools/timemory-stubs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-stubs/README.md -------------------------------------------------------------------------------- /source/tools/timemory-stubs/library.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-stubs/library.cpp -------------------------------------------------------------------------------- /source/tools/timemory-timem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-timem/README.md -------------------------------------------------------------------------------- /source/tools/timemory-timem/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-timem/md5.cpp -------------------------------------------------------------------------------- /source/tools/timemory-timem/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-timem/md5.hpp -------------------------------------------------------------------------------- /source/tools/timemory-timem/timem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-timem/timem.cpp -------------------------------------------------------------------------------- /source/tools/timemory-timem/timem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/tools/timemory-timem/timem.hpp -------------------------------------------------------------------------------- /source/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/trace.cpp -------------------------------------------------------------------------------- /source/weak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/source/weak.cpp -------------------------------------------------------------------------------- /spack/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/spack/package.py -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # 2 | # Empty CMakeLists.txt for PyCTest tests 3 | # 4 | -------------------------------------------------------------------------------- /timemory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/CMakeLists.txt -------------------------------------------------------------------------------- /timemory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/README.md -------------------------------------------------------------------------------- /timemory/__init__.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/__init__.py.in -------------------------------------------------------------------------------- /timemory/analyze/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/analyze/__init__.py -------------------------------------------------------------------------------- /timemory/analyze/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/analyze/__main__.py -------------------------------------------------------------------------------- /timemory/analyze/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/analyze/analyze.py -------------------------------------------------------------------------------- /timemory/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/api/__init__.py -------------------------------------------------------------------------------- /timemory/api/gperftools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/api/gperftools/__init__.py -------------------------------------------------------------------------------- /timemory/api/gperftools/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/api/gperftools/__main__.py -------------------------------------------------------------------------------- /timemory/api/gperftools/cpu_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/api/gperftools/cpu_profiler.py -------------------------------------------------------------------------------- /timemory/api/gperftools/heap_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/api/gperftools/heap_profiler.py -------------------------------------------------------------------------------- /timemory/api/gperftools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/api/gperftools/utils.py -------------------------------------------------------------------------------- /timemory/bin/flamegraph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/bin/flamegraph.pl -------------------------------------------------------------------------------- /timemory/bundle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/bundle/__init__.py -------------------------------------------------------------------------------- /timemory/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/common.py -------------------------------------------------------------------------------- /timemory/component/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/component/__init__.py -------------------------------------------------------------------------------- /timemory/hardware_counters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/hardware_counters/__init__.py -------------------------------------------------------------------------------- /timemory/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/libs/__init__.py -------------------------------------------------------------------------------- /timemory/mpi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/mpi/__init__.py -------------------------------------------------------------------------------- /timemory/mpi_support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/mpi_support/__init__.py -------------------------------------------------------------------------------- /timemory/mpi_support/mpi_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/mpi_support/mpi_support.py -------------------------------------------------------------------------------- /timemory/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/options.py -------------------------------------------------------------------------------- /timemory/plotting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/plotting/__init__.py -------------------------------------------------------------------------------- /timemory/plotting/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/plotting/__main__.py -------------------------------------------------------------------------------- /timemory/plotting/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/plotting/plotting.py -------------------------------------------------------------------------------- /timemory/plotting/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/plotting/table.py -------------------------------------------------------------------------------- /timemory/profiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/profiler/__init__.py -------------------------------------------------------------------------------- /timemory/profiler/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/profiler/__main__.py -------------------------------------------------------------------------------- /timemory/profiler/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/profiler/profiler.py -------------------------------------------------------------------------------- /timemory/region/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/region/__init__.py -------------------------------------------------------------------------------- /timemory/roofline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/roofline/__init__.py -------------------------------------------------------------------------------- /timemory/roofline/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/roofline/__main__.py -------------------------------------------------------------------------------- /timemory/roofline/roofline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/roofline/roofline.py -------------------------------------------------------------------------------- /timemory/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/signals.py -------------------------------------------------------------------------------- /timemory/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/storage/__init__.py -------------------------------------------------------------------------------- /timemory/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/__init__.py -------------------------------------------------------------------------------- /timemory/test/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/__main__.py -------------------------------------------------------------------------------- /timemory/test/test_flat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_flat.py -------------------------------------------------------------------------------- /timemory/test/test_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_general.py -------------------------------------------------------------------------------- /timemory/test/test_hatchet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_hatchet.py -------------------------------------------------------------------------------- /timemory/test/test_rusage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_rusage.py -------------------------------------------------------------------------------- /timemory/test/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_storage.py -------------------------------------------------------------------------------- /timemory/test/test_throttle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_throttle.py -------------------------------------------------------------------------------- /timemory/test/test_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_timeline.py -------------------------------------------------------------------------------- /timemory/test/test_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_timing.py -------------------------------------------------------------------------------- /timemory/test/test_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/test/test_tools.py -------------------------------------------------------------------------------- /timemory/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/tools/__init__.py -------------------------------------------------------------------------------- /timemory/trace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/trace/__init__.py -------------------------------------------------------------------------------- /timemory/trace/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/trace/__main__.py -------------------------------------------------------------------------------- /timemory/trace/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/trace/tracer.py -------------------------------------------------------------------------------- /timemory/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/units.py -------------------------------------------------------------------------------- /timemory/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/util/__init__.py -------------------------------------------------------------------------------- /timemory/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NERSC/timemory/HEAD/timemory/util/util.py --------------------------------------------------------------------------------