From 8a3be65b63025a6b84b4af9ccd43b17eefd5723e Mon Sep 17 00:00:00 2001 From: shuhao zhang Date: Thu, 1 Jan 2026 12:46:28 +0800 Subject: [PATCH 1/5] fix(build): add quotes to version constraints in pip install - Quote torch>=1.13.0 to prevent shell redirection - Fixes the mysterious =1.13.0 file creation bug caused by unquoted >= operator This aligns with the fix in the parent SAGE repository for numpy>=2.0.0 --- buildCPUOnly.sh | 2 +- buildWithCuda.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildCPUOnly.sh b/buildCPUOnly.sh index 9dadd5eb..7ebd3650 100755 --- a/buildCPUOnly.sh +++ b/buildCPUOnly.sh @@ -5,7 +5,7 @@ sudo ls echo "Installing others..." sudo apt-get install -y graphviz pip install matplotlib pandas==2.0.0 -pip install torch>=1.13.0 --index-url https://download.pytorch.org/whl/cpu +pip install "torch>=1.13.0" --index-url https://download.pytorch.org/whl/cpu echo "Build LibAMM and PyAMM" # Step 1: Configure the project export CUDACXX=/usr/local/cuda/bin/nvcc diff --git a/buildWithCuda.sh b/buildWithCuda.sh index 9debc856..6972e94e 100755 --- a/buildWithCuda.sh +++ b/buildWithCuda.sh @@ -41,7 +41,7 @@ sudo apt install -y liblapack-dev libblas-dev sudo apt-get install -y graphviz sudo apt-get install -y libcudnn8 libcudnn8-dev pip install matplotlib pandas==2.0.0 -pip install torch>=1.13.0 +pip install "torch>=1.13.0" echo "Build LIBAMM and PyAMM" # Step 1: Configure the project export CUDACXX=/usr/local/cuda/bin/nvcc From 36180cec9bd590d33ba34c3faa6340fca86086ee Mon Sep 17 00:00:00 2001 From: shuhao zhang Date: Fri, 2 Jan 2026 00:56:09 +0800 Subject: [PATCH 2/5] build: add pyproject.toml for PyPI publishing Add modern build configuration for publishing LibAMM to PyPI as isage-libamm: Features: - Package name: isage-libamm (PyPI) - Import name: PyAMM (Python) - Version: 0.1.1 - Build system: scikit-build-core + pybind11 - Runtime deps: numpy>=1.20.0, torch>=2.0.0 Publishing: - Pre-compiled platform-specific wheels - CPU-only and CUDA variants - Compatible with sage-libs dependency chain Usage: pip install isage-libamm Related: #pypi-publishing #libamm-standalone --- pyproject.toml | 105 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..7d356a07 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,105 @@ +[build-system] +requires = [ + "scikit-build-core>=0.8.0", + "pybind11>=2.10.0", + "setuptools>=64", + "wheel", + # Note: torch is NOT in build-system.requires because it's too large + # Build this package in an environment where torch is already installed + # The wheel will be pre-compiled and platform-specific +] +build-backend = "scikit_build_core.build" + +[project] +name = "isage-libamm" +version = "0.1.1" +description = "LibAMM: Approximate Matrix Multiplication Library with NumPy interface" +readme = "README.md" +requires-python = ">=3.8" +license = {text = "MIT"} +authors = [ + { name = "IntelliStream Team", email = "shuhao_zhang@hust.edu.cn" }, +] +keywords = [ + "approximate matrix multiplication", + "amm", + "numpy", + "pytorch", + "high-performance computing", +] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "Topic :: Scientific/Engineering :: Mathematics", + "Programming Language :: C++", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", +] + +# Runtime dependencies +dependencies = [ + "numpy>=1.20.0", # NumPy interface for Python users + "torch>=2.0.0", # Required by LibAMM internally (DO NOT REMOVE) + "pybind11>=2.10.0", # Python bindings +] + +[project.urls] +Homepage = "https://github.com/intellistream/LibAMM" +Repository = "https://github.com/intellistream/LibAMM.git" +"Bug Tracker" = "https://github.com/intellistream/LibAMM/issues" + +# ============================================================================ +# scikit-build-core Configuration +# ============================================================================ +[tool.scikit-build] +# CMake 配置 +cmake.version = ">=3.10" +cmake.build-type = "Release" +cmake.verbose = true +logging.level = "INFO" + +# CMake 参数 - 禁用 PAPI 以避免第三方库的 Python 绑定问题 +cmake.args = [ + "-DENABLE_PYBIND=ON", + "-DENABLE_PAPI=OFF", # 禁用 PAPI(避免第三方 Python 代码编译问题) + "-DENABLE_HDF5=OFF", # 简化构建 + "-DUSE_CUDA=OFF", # 不直接编译 CUDA 代码(通过 PyTorch 使用 GPU) +] + +# Wheel 配置 +wheel.expand-macos-universal-tags = true +wheel.py-api = "py3" + +# 排除第三方库的 Python 文件(避免编译错误) +wheel.exclude = [ + "thirdparty/*/python/**", + "thirdparty/papi_*/python/**", + "thirdparty/papi_*/src/*/python/**", +] + +# 严格配置验证 +strict-config = false + +# 安装配置 +install.components = ["python", "headers"] + +# 开发模式配置 +[tool.scikit-build.editable] +mode = "redirect" +verbose = true + +# ============================================================================ +# Code Quality Configuration +# ============================================================================ +[tool.ruff] +line-length = 100 +target-version = "py38" + +[tool.pytest.ini_options] +testpaths = ["test"] +python_files = ["test_*.py", "*_test.py"] From 349d8f6d24a860c72b80bbec6ee1159d82f1a075 Mon Sep 17 00:00:00 2001 From: shuhao zhang Date: Fri, 2 Jan 2026 09:58:15 +0800 Subject: [PATCH 3/5] =?UTF-8?q?refactor:=20=E8=BD=AC=E6=8D=A2=E4=B8=BA?= =?UTF-8?q?=E7=BA=AF=20Benchmark=20=E4=BB=93=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除算法实现代码(已迁移到 SAGE/sage-libs/amms) - 移除构建系统和配置文件(CMakeLists.txt, setup.py, pyproject.toml) - 移除算法测试代码(test/) - 移除第三方依赖(thirdparty/) - 保留完整的 Benchmark 框架(benchmark/) - 保留数据管理工具(tools/) - 更新 README 说明新的仓库定位 算法实现现已位于: - SAGE Framework: intellistream/SAGE - Package: sage-libs/src/sage/libs/amms/ - PyPI: pip install isage-amms 此仓库现专注于 AMM 算法的性能评测和基准测试。 Backup branch: backup-before-refactor-20260102-095815 --- .gitignore | 107 +- CMakeLists.txt | 239 - Doxyfile | 2623 -- README.md | 214 +- buildCPUOnly.sh | 20 - buildWithCuda.sh | 56 - cmake/FindCuda.cmake | 53 - cmake/FindLog4cxx.cmake | 28 - cmake/FindTorch.cmake | 9 - cmake/default.cmake | 5 - cmake/macros.cmake | 57 - commit.sh | 14 - commit_info | 1 - genDoc.sh | 2 - include/CL/CLContainer.hpp | 129 - include/CL/cl.h | 1930 -- include/CL/cl_d3d10.h | 153 - include/CL/cl_d3d11.h | 155 - include/CL/cl_dx9_media_sharing.h | 256 - include/CL/cl_dx9_media_sharing_intel.h | 18 - include/CL/cl_egl.h | 116 - include/CL/cl_ext.h | 2431 -- include/CL/cl_ext_intel.h | 19 - include/CL/cl_gl.h | 192 - include/CL/cl_gl_ext.h | 18 - include/CL/cl_half.h | 376 - include/CL/cl_icd.h | 1294 - include/CL/cl_layer.h | 61 - include/CL/cl_platform.h | 1376 - include/CL/cl_va_api_media_sharing_intel.h | 163 - include/CL/cl_version.h | 81 - include/CL/opencl.h | 32 - include/CPPAlgos/AbstractCPPAlgo.h | 86 - include/CPPAlgos/BCRSCPPAlgo.h | 58 - include/CPPAlgos/BetaCoOFDCPPAlgo.h | 66 - include/CPPAlgos/BlockLRACPPAlgo.h | 72 - include/CPPAlgos/CLMMCPPAlgo.h | 73 - include/CPPAlgos/CPPAlgoTable.h | 62 - include/CPPAlgos/CRSCPPAlgo.h | 61 - include/CPPAlgos/CRSV2CPPAlgo.h | 59 - include/CPPAlgos/CoOccurringFDCPPAlgo.h | 58 - include/CPPAlgos/CountSketchCPPAlgo.h | 59 - include/CPPAlgos/EWSCPPAlgo.h | 59 - include/CPPAlgos/FastJLTCPPAlgo.h | 59 - include/CPPAlgos/INT8CPPAlgo.h | 115 - include/CPPAlgos/ProductQuantizationHash.h | 71 - include/CPPAlgos/ProductQuantizationRaw.h | 67 - include/CPPAlgos/RIPCPPAlgo.h | 61 - include/CPPAlgos/SMPPCACPPAlgo.h | 61 - include/CPPAlgos/TugOfWarCPPAlgo.h | 70 - include/CPPAlgos/VectorQuantization.h | 66 - include/CPPAlgos/WeightedCRCPPAlgo.h | 61 - include/LibAMM.h | 204 - include/MatrixLoader/AbstractMatrixLoader.h | 82 - include/MatrixLoader/BetaMatrixLoader.h | 102 - include/MatrixLoader/BinomialMatrixLoader.h | 102 - include/MatrixLoader/CCAMatrixLoader.h | 163 - .../MatrixLoader/ExponentialMatrixLoader.h | 99 - include/MatrixLoader/GaussianMatrixLoader.h | 105 - include/MatrixLoader/MNISTMatrixLoader.h | 163 - include/MatrixLoader/MatrixLoaderTable.h | 88 - include/MatrixLoader/MediaMillMatrixLoader.h | 163 - include/MatrixLoader/MtxMatrixLoader.h | 130 - include/MatrixLoader/PoissonMatrixLoader.h | 99 - include/MatrixLoader/RandomMatrixLoader.h | 100 - include/MatrixLoader/SIFTMatrixLoader.h | 95 - include/MatrixLoader/SparseMatrixLoader.h | 114 - include/MatrixLoader/ZeroMaskedMatrixLoader.h | 103 - include/MatrixLoader/ZipfMatrixLoader.h | 104 - .../Parallelization/BlockPartitionRunner.h | 226 - include/Streaming/BlockPartitionStreamer.h | 107 - include/Streaming/SingleThreadStreamer.h | 118 - include/Streaming/Streamer.h | 33 - include/Streaming/TimeStamper.h | 146 - include/Utils/AbstractC20Thread.hpp | 89 - include/Utils/BS_thread_pool.hpp | 878 - include/Utils/C20Buffers.hpp | 135 - include/Utils/ConfigMap.hpp | 580 - include/Utils/IntelliLog.h | 133 - include/Utils/Meters/AbstractMeter.hpp | 135 - .../Meters/EspMeterUart/EspMeterUart.hpp | 77 - .../Utils/Meters/IntelMeter/IntelMeter.hpp | 95 - include/Utils/Meters/MeterTable.h | 77 - include/Utils/MicroDataSet.hpp | 272 - include/Utils/SPSCQueue.hpp | 271 - include/Utils/ThreadPerf.hpp | 468 - include/Utils/ThreadPerfPAPI.hpp | 251 - include/Utils/UtilityFunctions.h | 97 - include/opencl_config.h.in | 8 - include/papi_config.h.in | 8 - include/pybind_config.h.in | 8 - pyproject.toml | 105 - setup.py | 103 - src/CL/CLCRS.cl | 32 - src/CL/CLINT8.cl | 22 - src/CL/CLMM.cl | 21 - src/CLContainer.cpp | 390 - src/CMakeLists.txt | 17 - src/CPPAlgos/AbstractCPPAlgo.cpp | 46 - src/CPPAlgos/BCRSCPPAlgo.cpp | 35 - src/CPPAlgos/BetaCoOFDCPPAlgo.cpp | 119 - src/CPPAlgos/BlockLRACPPAlgo.cpp | 97 - src/CPPAlgos/CLMMCPPAlgo.cpp | 195 - src/CPPAlgos/CMakeLists.txt | 28 - src/CPPAlgos/CPPAlgoTable.cpp | 57 - src/CPPAlgos/CRSCPPAlgo.cpp | 73 - src/CPPAlgos/CRSV2CPPAlgo.cpp | 40 - src/CPPAlgos/CoOccurringFDCPPAlgo.cpp | 106 - src/CPPAlgos/CountSketchCPPAlgo.cpp | 33 - src/CPPAlgos/EWSCPPAlgo.cpp | 34 - src/CPPAlgos/FastJLTCPPAlgo.cpp | 82 - src/CPPAlgos/INT8CPPAlgo.cpp | 360 - src/CPPAlgos/ProductQuantizationHash.cpp | 95 - src/CPPAlgos/ProductQuantizationRaw.cpp | 70 - src/CPPAlgos/RIPCPPAlgo.cpp | 69 - src/CPPAlgos/SMPPCACPPAlgo.cpp | 69 - src/CPPAlgos/TugOfWarCPPAlgo.cpp | 56 - src/CPPAlgos/VectorQuantization.cpp | 131 - src/CPPAlgos/WeightedCRCPPAlgo.cpp | 38 - src/MatrixLoader/AbstractMatrixLoader.cpp | 19 - src/MatrixLoader/BetaMatrixLoader.cpp | 52 - src/MatrixLoader/BinomialMatrixLoader.cpp | 56 - src/MatrixLoader/CCAMatrixLoader.cpp | 102 - src/MatrixLoader/CMakeLists.txt | 18 - src/MatrixLoader/ExponentialMatrixLoader.cpp | 36 - src/MatrixLoader/GaussianMatrixLoader.cpp | 59 - src/MatrixLoader/MNISTMatrixLoader.cpp | 193 - src/MatrixLoader/MatrixLoaderTable.cpp | 39 - src/MatrixLoader/MediaMillMatrixLoader.cpp | 120 - src/MatrixLoader/MtxMatrixLoader.cpp | 137 - src/MatrixLoader/PoissonMatrixLoader.cpp | 36 - src/MatrixLoader/RandomMatrixLoader.cpp | 37 - src/MatrixLoader/SIFTMatrixLoader.cpp | 93 - src/MatrixLoader/SparseMatrixLoader.cpp | 102 - src/MatrixLoader/ZeroMaskedMatrixLoader.cpp | 43 - src/MatrixLoader/ZipfMatrixLoader.cpp | 73 - src/Parallelization/BlockPartitionRunner.cpp | 187 - src/Parallelization/CMakeLists.txt | 3 - src/PyAMM.cpp | 334 - src/Streaming/BlockPartitionStreamer.cpp | 260 - src/Streaming/CMakeLists.txt | 6 - src/Streaming/SingleThreadStreamer.cpp | 220 - src/Streaming/Streamer.cpp | 110 - src/Streaming/TimeStamper.cpp | 61 - src/Utils/CMakeLists.txt | 5 - src/Utils/IntelliLog.cpp | 57 - src/Utils/Meters/AbstractMeter.cpp | 19 - src/Utils/Meters/CMakeLists.txt | 3 - src/Utils/Meters/EspMeterUart/CMakeLists.txt | 1 - .../Meters/EspMeterUart/EspMeterUart.cpp | 136 - src/Utils/Meters/IntelMeter/CMakeLists.txt | 2 - src/Utils/Meters/IntelMeter/IntelMeter.cpp | 101 - src/Utils/Meters/MeterTable.cpp | 14 - src/Utils/UtilityFunctions.cpp | 100 - src/myVecAdd.cpp | 77 - src/pythonBoundings.cpp | 90 - test/CMakeLists.txt | 46 - test/SystemTest/BlockLRATest.cpp | 23 - test/SystemTest/BlockPartitionTest.cpp | 77 - test/SystemTest/CLTest.cpp | 91 - test/SystemTest/CRSTest.cpp | 107 - test/SystemTest/EWSTest.cpp | 72 - test/SystemTest/FastJLTTest.cpp | 67 - test/SystemTest/INT8Test.cpp | 26 - test/SystemTest/MtxMatrixLoaderTest.cpp | 28 - test/SystemTest/PQTest.cpp | 50 - test/SystemTest/RIPTest.cpp | 23 - test/SystemTest/SMPPCATest.cpp | 23 - test/SystemTest/SRHTTest.cpp | 56 - test/SystemTest/SimpleTest.cpp | 37 - test/SystemTest/SketchTest.cpp | 97 - test/SystemTest/StreamingTest.cpp | 96 - test/SystemTest/TugOfWarTest.cpp | 72 - test/SystemTest/WeightedCRTest.cpp | 73 - .../SystemTest/ZeroMaskedMatrixLoaderTest.cpp | 34 - test/SystemTest/ZipfMatrixLoaderTest.cpp | 34 - test/SystemTest/catch.hpp | 18747 ---------- test/SystemTest/catch_reporter_automake.hpp | 61 - test/SystemTest/catch_reporter_sonarqube.hpp | 174 - test/SystemTest/catch_reporter_tap.hpp | 249 - test/SystemTest/catch_reporter_teamcity.hpp | 211 - test/config_IMA.csv | 13 - test/config_Normal.csv | 12 - test/config_fileDataLoader.csv | 16 - test/datasets/toy/README.md | 1 - test/datasets/toy/toy.mtx | 7 - test/scripts/config.csv | 11 - test/scripts/config_CRS.csv | 6 - test/scripts/config_CRSV2.csv | 6 - test/scripts/config_EWS.csv | 6 - test/scripts/config_SRHT.csv | 6 - test/scripts/config_WeightedCR.csv | 6 - test/scripts/config_countSketch.csv | 6 - test/scripts/config_fastJLT.csv | 6 - test/scripts/config_tugOfWar.csv | 6 - test/torchscripts/BernoulliCRS.pt | Bin 2723 -> 0 bytes test/torchscripts/BernoulliCRS.py | 68 - test/torchscripts/BetaCoOccurringFD.pt | Bin 7882 -> 0 bytes test/torchscripts/BetaCoOccurringFD.py | 110 - test/torchscripts/CRS.pt | Bin 2614 -> 0 bytes test/torchscripts/CRSV2.pt | Bin 3136 -> 0 bytes test/torchscripts/CoOccurringFD.pt | Bin 7534 -> 0 bytes test/torchscripts/CoOccurringFD.py | 118 - test/torchscripts/ColumnRowSampling.py | 71 - test/torchscripts/ColumnRowSamplingVer2.py | 71 - test/torchscripts/CountSketch.pt | Bin 2782 -> 0 bytes test/torchscripts/CountSketch.py | 55 - test/torchscripts/E2E_Minist.py | 154 - test/torchscripts/EWS.pt | Bin 2550 -> 0 bytes test/torchscripts/ElementWiseSampling.py | 61 - test/torchscripts/FDAMM.pt | Bin 4416 -> 0 bytes test/torchscripts/FDAMM.py | 86 - test/torchscripts/FastJLT.pt | Bin 3850 -> 0 bytes test/torchscripts/FastJLT.py | 76 - test/torchscripts/PQ/PQ.cpp | 72 - test/torchscripts/PQ/PQ.py | 239 - test/torchscripts/PQ/prototypes.pt | Bin 8919 -> 0 bytes test/torchscripts/RAWMM.pt | Bin 1408 -> 0 bytes test/torchscripts/SRHT.pt | Bin 3451 -> 0 bytes test/torchscripts/SRHT.py | 64 - test/torchscripts/TugOfWar.pt | Bin 8523 -> 0 bytes test/torchscripts/TugOfWar.py | 70 - test/torchscripts/VQ/columnCodeIndexX.txt | 1 - test/torchscripts/VQ/rowCodeIndexY.txt | 1 - test/torchscripts/WeightedCR.pt | Bin 10592 -> 0 bytes test/torchscripts/WeightedCR.py | 115 - test/torchscripts/prototypes.pt | Bin 66519 -> 0 bytes thirdparty/installPAPI.sh | 10 - thirdparty/makeClean.sh | 2 - thirdparty/papi_7_0_1/ChangeLogP400.txt | 418 - thirdparty/papi_7_0_1/ChangeLogP410.txt | 527 - thirdparty/papi_7_0_1/ChangeLogP411.txt | 476 - thirdparty/papi_7_0_1/ChangeLogP412.txt | 517 - thirdparty/papi_7_0_1/ChangeLogP4121.txt | 8 - thirdparty/papi_7_0_1/ChangeLogP413.txt | 598 - thirdparty/papi_7_0_1/ChangeLogP414.txt | 881 - thirdparty/papi_7_0_1/ChangeLogP420.txt | 1140 - thirdparty/papi_7_0_1/ChangeLogP421.txt | 1103 - thirdparty/papi_7_0_1/ChangeLogP440.txt | 131 - thirdparty/papi_7_0_1/ChangeLogP500.txt | 2279 -- thirdparty/papi_7_0_1/ChangeLogP501.txt | 77 - thirdparty/papi_7_0_1/ChangeLogP510.txt | 427 - thirdparty/papi_7_0_1/ChangeLogP511.txt | 176 - thirdparty/papi_7_0_1/ChangeLogP520.txt | 1222 - thirdparty/papi_7_0_1/ChangeLogP530.txt | 424 - thirdparty/papi_7_0_1/ChangeLogP532.txt | 84 - thirdparty/papi_7_0_1/ChangeLogP540.txt | 459 - thirdparty/papi_7_0_1/ChangeLogP541.txt | 201 - thirdparty/papi_7_0_1/ChangeLogP543.txt | 305 - thirdparty/papi_7_0_1/ChangeLogP550.txt | 235 - thirdparty/papi_7_0_1/ChangeLogP551.txt | 51 - thirdparty/papi_7_0_1/ChangeLogP560.txt | 2394 -- thirdparty/papi_7_0_1/ChangeLogP570.txt | 1012 - thirdparty/papi_7_0_1/ChangeLogP600.txt | 1617 - thirdparty/papi_7_0_1/ChangeLogP700.txt | 4978 --- thirdparty/papi_7_0_1/ChangeLogP701.txt | 701 - thirdparty/papi_7_0_1/INSTALL.txt | 568 - thirdparty/papi_7_0_1/LICENSE.txt | 33 - thirdparty/papi_7_0_1/PAPI_FAQ.html | 362 - thirdparty/papi_7_0_1/README.md | 127 - thirdparty/papi_7_0_1/RELEASENOTES.txt | 1596 - thirdparty/papi_7_0_1/bitbucket-pipelines.yml | 20 - .../papi_7_0_1/delete_before_release.sh | 18 - thirdparty/papi_7_0_1/gitlog2changelog.py | 125 - thirdparty/papi_7_0_1/man/Makefile | 13 - thirdparty/papi_7_0_1/man/README | 23 - .../man/man1/PAPI_derived_event_files.1 | 219 - thirdparty/papi_7_0_1/man/man1/papi_avail.1 | 73 - .../papi_7_0_1/man/man1/papi_clockres.1 | 21 - .../papi_7_0_1/man/man1/papi_command_line.1 | 24 - .../man/man1/papi_component_avail.1 | 26 - thirdparty/papi_7_0_1/man/man1/papi_cost.1 | 35 - thirdparty/papi_7_0_1/man/man1/papi_decode.1 | 36 - .../papi_7_0_1/man/man1/papi_error_codes.1 | 22 - .../papi_7_0_1/man/man1/papi_event_chooser.1 | 22 - .../papi_7_0_1/man/man1/papi_hardware_avail.1 | 24 - .../man/man1/papi_hybrid_native_avail.1 | 55 - .../papi_7_0_1/man/man1/papi_mem_info.1 | 21 - .../papi_7_0_1/man/man1/papi_multiplex_cost.1 | 33 - .../papi_7_0_1/man/man1/papi_native_avail.1 | 55 - thirdparty/papi_7_0_1/man/man1/papi_version.1 | 19 - .../papi_7_0_1/man/man1/papi_xml_event_info.1 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_accum.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_add_event.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_add_events.3 | 32 - .../man/man3/PAPIF_add_named_event.3 | 32 - .../man3/PAPIF_assign_eventset_component.3 | 32 - .../man/man3/PAPIF_cleanup_eventset.3 | 32 - .../man/man3/PAPIF_create_eventset.3 | 32 - .../man/man3/PAPIF_destroy_eventset.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_enum_dev_type.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_enum_event.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_epc.3 | 32 - .../man/man3/PAPIF_event_code_to_name.3 | 32 - .../man/man3/PAPIF_event_name_to_code.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_flips_rate.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_flops_rate.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_get_clockrate.3 | 37 - .../papi_7_0_1/man/man3/PAPIF_get_dev_attr.3 | 34 - .../man/man3/PAPIF_get_dev_type_attr.3 | 34 - .../papi_7_0_1/man/man3/PAPIF_get_dmem_info.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_get_domain.3 | 32 - .../man/man3/PAPIF_get_event_info.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_get_exe_info.3 | 38 - .../man/man3/PAPIF_get_granularity.3 | 32 - .../man/man3/PAPIF_get_hardware_info.3 | 36 - .../papi_7_0_1/man/man3/PAPIF_get_multiplex.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_get_preload.3 | 37 - .../papi_7_0_1/man/man3/PAPIF_get_real_cyc.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_get_real_nsec.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_get_real_usec.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_get_virt_cyc.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_get_virt_usec.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_ipc.3 | 32 - .../man/man3/PAPIF_is_initialized.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_library_init.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_lock.3 | 32 - .../man/man3/PAPIF_multiplex_init.3 | 32 - .../man/man3/PAPIF_num_cmp_hwctrs.3 | 34 - .../papi_7_0_1/man/man3/PAPIF_num_events.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_num_hwctrs.3 | 34 - thirdparty/papi_7_0_1/man/man3/PAPIF_perror.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_query_event.3 | 32 - .../man/man3/PAPIF_query_named_event.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_rate_stop.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_read.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_read_ts.3 | 32 - .../man/man3/PAPIF_register_thread.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_remove_event.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_remove_events.3 | 32 - .../man/man3/PAPIF_remove_named_event.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_reset.3 | 32 - .../man/man3/PAPIF_set_cmp_domain.3 | 32 - .../man/man3/PAPIF_set_cmp_granularity.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_set_debug.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_set_domain.3 | 32 - .../man/man3/PAPIF_set_event_domain.3 | 34 - .../man/man3/PAPIF_set_granularity.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_set_inherit.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_set_multiplex.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_shutdown.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_start.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_state.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_stop.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_thread_id.3 | 32 - .../papi_7_0_1/man/man3/PAPIF_thread_init.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_unlock.3 | 32 - .../man/man3/PAPIF_unregister_thread.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPIF_write.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPI_accum.3 | 79 - .../papi_7_0_1/man/man3/PAPI_add_event.3 | 101 - .../papi_7_0_1/man/man3/PAPI_add_events.3 | 101 - .../man/man3/PAPI_add_named_event.3 | 92 - .../man/man3/PAPI_addr_range_option_t.3 | 46 - .../papi_7_0_1/man/man3/PAPI_address_map_t.3 | 54 - .../papi_7_0_1/man/man3/PAPI_all_thr_spec_t.3 | 28 - .../man/man3/PAPI_assign_eventset_component.3 | 75 - thirdparty/papi_7_0_1/man/man3/PAPI_attach.3 | 81 - .../man/man3/PAPI_attach_option_t.3 | 25 - .../man/man3/PAPI_cleanup_eventset.3 | 70 - .../man/man3/PAPI_component_info_t.3 | 204 - .../papi_7_0_1/man/man3/PAPI_cpu_option_t.3 | 25 - .../man/man3/PAPI_create_eventset.3 | 73 - .../papi_7_0_1/man/man3/PAPI_debug_option_t.3 | 25 - .../man/man3/PAPI_destroy_eventset.3 | 70 - thirdparty/papi_7_0_1/man/man3/PAPI_detach.3 | 81 - .../man/man3/PAPI_disable_component.3 | 63 - .../man/man3/PAPI_disable_component_by_name.3 | 58 - .../papi_7_0_1/man/man3/PAPI_dmem_info_t.3 | 55 - .../man/man3/PAPI_domain_option_t.3 | 32 - .../papi_7_0_1/man/man3/PAPI_enum_cmp_event.3 | 172 - .../papi_7_0_1/man/man3/PAPI_enum_dev_type.3 | 65 - .../papi_7_0_1/man/man3/PAPI_enum_event.3 | 168 - thirdparty/papi_7_0_1/man/man3/PAPI_epc.3 | 70 - .../man/man3/PAPI_event_code_to_name.3 | 88 - .../papi_7_0_1/man/man3/PAPI_event_info_t.3 | 144 - .../man/man3/PAPI_event_name_to_code.3 | 86 - .../papi_7_0_1/man/man3/PAPI_exe_info_t.3 | 31 - .../papi_7_0_1/man/man3/PAPI_flips_rate.3 | 64 - .../papi_7_0_1/man/man3/PAPI_flops_rate.3 | 66 - .../papi_7_0_1/man/man3/PAPI_get_cmp_opt.3 | 50 - .../man/man3/PAPI_get_component_index.3 | 51 - .../man/man3/PAPI_get_component_info.3 | 57 - .../papi_7_0_1/man/man3/PAPI_get_dev_attr.3 | 139 - .../man/man3/PAPI_get_dev_type_attr.3 | 84 - .../papi_7_0_1/man/man3/PAPI_get_dmem_info.3 | 51 - .../man/man3/PAPI_get_event_component.3 | 48 - .../papi_7_0_1/man/man3/PAPI_get_event_info.3 | 43 - .../man/man3/PAPI_get_eventset_component.3 | 52 - .../man/man3/PAPI_get_executable_info.3 | 74 - .../man/man3/PAPI_get_hardware_info.3 | 54 - .../papi_7_0_1/man/man3/PAPI_get_multiplex.3 | 96 - thirdparty/papi_7_0_1/man/man3/PAPI_get_opt.3 | 100 - .../man/man3/PAPI_get_overflow_event_index.3 | 66 - .../papi_7_0_1/man/man3/PAPI_get_real_cyc.3 | 40 - .../papi_7_0_1/man/man3/PAPI_get_real_nsec.3 | 29 - .../papi_7_0_1/man/man3/PAPI_get_real_usec.3 | 48 - .../man/man3/PAPI_get_shared_lib_info.3 | 39 - .../man/man3/PAPI_get_thr_specific.3 | 78 - .../papi_7_0_1/man/man3/PAPI_get_virt_cyc.3 | 44 - .../papi_7_0_1/man/man3/PAPI_get_virt_nsec.3 | 27 - .../papi_7_0_1/man/man3/PAPI_get_virt_usec.3 | 57 - .../man/man3/PAPI_granularity_option_t.3 | 32 - thirdparty/papi_7_0_1/man/man3/PAPI_hl_read.3 | 85 - .../man/man3/PAPI_hl_region_begin.3 | 83 - .../papi_7_0_1/man/man3/PAPI_hl_region_end.3 | 107 - thirdparty/papi_7_0_1/man/man3/PAPI_hl_stop.3 | 47 - .../papi_7_0_1/man/man3/PAPI_hw_info_t.3 | 134 - .../man/man3/PAPI_inherit_option_t.3 | 25 - thirdparty/papi_7_0_1/man/man3/PAPI_ipc.3 | 64 - .../papi_7_0_1/man/man3/PAPI_is_initialized.3 | 64 - .../man/man3/PAPI_itimer_option_t.3 | 31 - .../papi_7_0_1/man/man3/PAPI_library_init.3 | 64 - .../papi_7_0_1/man/man3/PAPI_list_events.3 | 95 - .../papi_7_0_1/man/man3/PAPI_list_threads.3 | 56 - thirdparty/papi_7_0_1/man/man3/PAPI_lock.3 | 44 - .../man/man3/PAPI_mh_cache_info_t.3 | 38 - .../papi_7_0_1/man/man3/PAPI_mh_info_t.3 | 25 - .../papi_7_0_1/man/man3/PAPI_mh_level_t.3 | 25 - .../papi_7_0_1/man/man3/PAPI_mh_tlb_info_t.3 | 35 - .../papi_7_0_1/man/man3/PAPI_mpx_info_t.3 | 36 - .../papi_7_0_1/man/man3/PAPI_multiplex_init.3 | 50 - .../man/man3/PAPI_multiplex_option_t.3 | 28 - .../papi_7_0_1/man/man3/PAPI_num_cmp_hwctrs.3 | 55 - .../papi_7_0_1/man/man3/PAPI_num_components.3 | 33 - .../papi_7_0_1/man/man3/PAPI_num_events.3 | 62 - .../papi_7_0_1/man/man3/PAPI_num_hwctrs.3 | 25 - .../papi_7_0_1/man/man3/PAPI_option_t.3 | 70 - .../papi_7_0_1/man/man3/PAPI_overflow.3 | 101 - thirdparty/papi_7_0_1/man/man3/PAPI_perror.3 | 69 - .../papi_7_0_1/man/man3/PAPI_preload_info_t.3 | 31 - thirdparty/papi_7_0_1/man/man3/PAPI_profil.3 | 184 - .../papi_7_0_1/man/man3/PAPI_query_event.3 | 73 - .../man/man3/PAPI_query_named_event.3 | 67 - .../papi_7_0_1/man/man3/PAPI_rate_stop.3 | 47 - thirdparty/papi_7_0_1/man/man3/PAPI_read.3 | 85 - thirdparty/papi_7_0_1/man/man3/PAPI_read_ts.3 | 74 - .../man/man3/PAPI_register_thread.3 | 49 - .../papi_7_0_1/man/man3/PAPI_remove_event.3 | 96 - .../papi_7_0_1/man/man3/PAPI_remove_events.3 | 89 - .../man/man3/PAPI_remove_named_event.3 | 93 - thirdparty/papi_7_0_1/man/man3/PAPI_reset.3 | 78 - .../papi_7_0_1/man/man3/PAPI_set_cmp_domain.3 | 87 - .../man/man3/PAPI_set_cmp_granularity.3 | 87 - .../papi_7_0_1/man/man3/PAPI_set_debug.3 | 103 - .../papi_7_0_1/man/man3/PAPI_set_domain.3 | 79 - .../man/man3/PAPI_set_granularity.3 | 79 - .../papi_7_0_1/man/man3/PAPI_set_multiplex.3 | 99 - thirdparty/papi_7_0_1/man/man3/PAPI_set_opt.3 | 109 - .../man/man3/PAPI_set_thr_specific.3 | 78 - .../papi_7_0_1/man/man3/PAPI_shlib_info_t.3 | 25 - .../papi_7_0_1/man/man3/PAPI_shutdown.3 | 34 - thirdparty/papi_7_0_1/man/man3/PAPI_sprofil.3 | 119 - .../papi_7_0_1/man/man3/PAPI_sprofil_t.3 | 41 - thirdparty/papi_7_0_1/man/man3/PAPI_start.3 | 84 - thirdparty/papi_7_0_1/man/man3/PAPI_state.3 | 104 - thirdparty/papi_7_0_1/man/man3/PAPI_stop.3 | 82 - .../papi_7_0_1/man/man3/PAPI_strerror.3 | 78 - .../papi_7_0_1/man/man3/PAPI_thread_id.3 | 50 - .../papi_7_0_1/man/man3/PAPI_thread_init.3 | 49 - thirdparty/papi_7_0_1/man/man3/PAPI_unlock.3 | 32 - .../man/man3/PAPI_unregister_thread.3 | 29 - thirdparty/papi_7_0_1/man/man3/PAPI_write.3 | 43 - .../papi_7_0_1/man/man3/PAPIf_hl_read.3 | 82 - .../man/man3/PAPIf_hl_region_begin.3 | 76 - .../papi_7_0_1/man/man3/PAPIf_hl_region_end.3 | 75 - .../papi_7_0_1/man/man3/PAPIf_hl_stop.3 | 71 - thirdparty/papi_7_0_1/man/man3/RateInfo.3 | 43 - .../papi_7_0_1/man/man3/binary_tree_t.3 | 28 - thirdparty/papi_7_0_1/man/man3/components_t.3 | 37 - .../papi_7_0_1/man/man3/local_components_t.3 | 26 - thirdparty/papi_7_0_1/man/man3/reads_t.3 | 29 - thirdparty/papi_7_0_1/man/man3/regions_t.3 | 44 - thirdparty/papi_7_0_1/man/man3/threads_t.3 | 28 - thirdparty/papi_7_0_1/man/man3/value_t.3 | 33 - thirdparty/papi_7_0_1/papi.spec | 101 - thirdparty/papi_7_0_1/release_procedure.txt | 358 - thirdparty/papi_7_0_1/src/.indent.pro | 183 - thirdparty/papi_7_0_1/src/CreatePresetTbl.sh | 13 - thirdparty/papi_7_0_1/src/INSTALL | 8 - thirdparty/papi_7_0_1/src/Makefile.in | 103 - thirdparty/papi_7_0_1/src/Makefile.inc | 393 - thirdparty/papi_7_0_1/src/Matlab/PAPI.m | 407 - .../papi_7_0_1/src/Matlab/PAPIInnerProduct.m | 83 - .../papi_7_0_1/src/Matlab/PAPIMatrixMatrix.m | 86 - .../papi_7_0_1/src/Matlab/PAPIMatrixVector.m | 85 - .../papi_7_0_1/src/Matlab/PAPI_Matlab.c | 287 - .../papi_7_0_1/src/Matlab/PAPI_Matlab.readme | 192 - thirdparty/papi_7_0_1/src/README | 8 - thirdparty/papi_7_0_1/src/Rules.bgpm | 23 - thirdparty/papi_7_0_1/src/Rules.perfctr | 110 - thirdparty/papi_7_0_1/src/Rules.perfctr-pfm | 157 - thirdparty/papi_7_0_1/src/Rules.perfmon2 | 72 - thirdparty/papi_7_0_1/src/Rules.perfnec | 74 - thirdparty/papi_7_0_1/src/Rules.pfm | 67 - thirdparty/papi_7_0_1/src/Rules.pfm4_pe | 83 - thirdparty/papi_7_0_1/src/aix-context.h | 15 - thirdparty/papi_7_0_1/src/aix-lock.h | 15 - thirdparty/papi_7_0_1/src/aix-memory.c | 102 - thirdparty/papi_7_0_1/src/aix.c | 1230 - thirdparty/papi_7_0_1/src/aix.h | 134 - thirdparty/papi_7_0_1/src/atomic_ops.h | 509 - .../papi_7_0_1/src/atomic_ops/ao_version.h | 38 - .../src/atomic_ops/generalize-arithm.h | 3408 -- .../src/atomic_ops/generalize-arithm.template | 852 - .../src/atomic_ops/generalize-small.h | 2640 -- .../src/atomic_ops/generalize-small.template | 528 - .../papi_7_0_1/src/atomic_ops/generalize.h | 729 - .../papi_7_0_1/src/atomic_ops/sysdeps/README | 7 - .../sysdeps/all_acquire_release_volatile.h | 30 - .../sysdeps/all_aligned_atomic_load_store.h | 38 - .../sysdeps/all_atomic_load_store.h | 32 - .../atomic_ops/sysdeps/all_atomic_only_load.h | 30 - .../src/atomic_ops/sysdeps/ao_t_is_int.h | 552 - .../atomic_ops/sysdeps/ao_t_is_int.template | 92 - .../src/atomic_ops/sysdeps/armcc/arm_v6.h | 264 - .../src/atomic_ops/sysdeps/emul_cas.h | 87 - .../src/atomic_ops/sysdeps/gcc/aarch64.h | 282 - .../src/atomic_ops/sysdeps/gcc/alpha.h | 67 - .../src/atomic_ops/sysdeps/gcc/arm.h | 742 - .../src/atomic_ops/sysdeps/gcc/avr32.h | 71 - .../src/atomic_ops/sysdeps/gcc/cris.h | 65 - .../src/atomic_ops/sysdeps/gcc/e2k.h | 28 - .../atomic_ops/sysdeps/gcc/generic-arithm.h | 864 - .../sysdeps/gcc/generic-arithm.template | 54 - .../atomic_ops/sysdeps/gcc/generic-small.h | 632 - .../sysdeps/gcc/generic-small.template | 158 - .../src/atomic_ops/sysdeps/gcc/generic.h | 239 - .../src/atomic_ops/sysdeps/gcc/hexagon.h | 140 - .../src/atomic_ops/sysdeps/gcc/hppa.h | 94 - .../src/atomic_ops/sysdeps/gcc/ia64.h | 287 - .../src/atomic_ops/sysdeps/gcc/m68k.h | 68 - .../src/atomic_ops/sysdeps/gcc/mips.h | 205 - .../src/atomic_ops/sysdeps/gcc/powerpc.h | 348 - .../src/atomic_ops/sysdeps/gcc/riscv.h | 32 - .../src/atomic_ops/sysdeps/gcc/s390.h | 92 - .../src/atomic_ops/sysdeps/gcc/sh.h | 34 - .../src/atomic_ops/sysdeps/gcc/sparc.h | 87 - .../src/atomic_ops/sysdeps/gcc/tile.h | 48 - .../src/atomic_ops/sysdeps/gcc/x86.h | 657 - .../src/atomic_ops/sysdeps/generic_pthread.h | 442 - .../src/atomic_ops/sysdeps/hpc/hppa.h | 104 - .../src/atomic_ops/sysdeps/hpc/ia64.h | 153 - .../src/atomic_ops/sysdeps/ibmc/powerpc.h | 183 - .../src/atomic_ops/sysdeps/icc/ia64.h | 207 - .../loadstore/acquire_release_volatile.h | 62 - .../acquire_release_volatile.template | 62 - .../sysdeps/loadstore/atomic_load.h | 37 - .../sysdeps/loadstore/atomic_load.template | 37 - .../sysdeps/loadstore/atomic_store.h | 35 - .../sysdeps/loadstore/atomic_store.template | 35 - .../loadstore/char_acquire_release_volatile.h | 62 - .../sysdeps/loadstore/char_atomic_load.h | 37 - .../sysdeps/loadstore/char_atomic_store.h | 35 - .../loadstore/double_atomic_load_store.h | 50 - .../loadstore/int_acquire_release_volatile.h | 62 - .../sysdeps/loadstore/int_atomic_load.h | 37 - .../sysdeps/loadstore/int_atomic_store.h | 35 - .../sysdeps/loadstore/ordered_loads_only.h | 135 - .../loadstore/ordered_loads_only.template | 27 - .../sysdeps/loadstore/ordered_stores_only.h | 135 - .../loadstore/ordered_stores_only.template | 27 - .../short_acquire_release_volatile.h | 62 - .../sysdeps/loadstore/short_atomic_load.h | 37 - .../sysdeps/loadstore/short_atomic_store.h | 35 - .../src/atomic_ops/sysdeps/msftc/arm.h | 112 - .../src/atomic_ops/sysdeps/msftc/arm64.h | 116 - .../atomic_ops/sysdeps/msftc/common32_defs.h | 1197 - .../src/atomic_ops/sysdeps/msftc/x86.h | 156 - .../src/atomic_ops/sysdeps/msftc/x86_64.h | 151 - .../src/atomic_ops/sysdeps/ordered.h | 33 - .../atomic_ops/sysdeps/ordered_except_wr.h | 42 - .../src/atomic_ops/sysdeps/read_ordered.h | 37 - .../atomic_ops/sysdeps/standard_ao_double_t.h | 89 - .../src/atomic_ops/sysdeps/sunc/sparc.S | 5 - .../src/atomic_ops/sysdeps/sunc/sparc.h | 44 - .../src/atomic_ops/sysdeps/sunc/x86.h | 240 - .../sysdeps/test_and_set_t_is_ao_t.h | 36 - .../sysdeps/test_and_set_t_is_char.h | 51 - .../src/buildbot_configure_with_components.sh | 12 - .../src/components/Makefile_comp_tests | 23 - .../components/Makefile_comp_tests.target.in | 44 - thirdparty/papi_7_0_1/src/components/README | 78 - .../src/components/Rules.components | 3 - .../papi_7_0_1/src/components/appio/CHANGES | 12 - .../papi_7_0_1/src/components/appio/README.md | 41 - .../src/components/appio/Rules.appio | 9 - .../papi_7_0_1/src/components/appio/appio.c | 796 - .../papi_7_0_1/src/components/appio/appio.h | 84 - .../src/components/appio/tests/Makefile | 63 - .../appio/tests/appio_list_events.c | 92 - .../appio/tests/appio_test_blocking.c | 92 - .../appio/tests/appio_test_fread_fwrite.c | 101 - .../appio/tests/appio_test_pthreads.c | 142 - .../appio/tests/appio_test_read_write.c | 106 - .../components/appio/tests/appio_test_recv.c | 104 - .../components/appio/tests/appio_test_seek.c | 102 - .../appio/tests/appio_test_select.c | 98 - .../appio/tests/appio_test_socket.c | 110 - .../appio/tests/appio_values_by_code.c | 162 - .../appio/tests/appio_values_by_name.c | 139 - .../src/components/appio/tests/init_fini.c | 65 - .../src/components/bgpm/CNKunit/Rules.CNKunit | 7 - .../components/bgpm/CNKunit/linux-CNKunit.c | 517 - .../components/bgpm/CNKunit/linux-CNKunit.h | 67 - .../src/components/bgpm/IOunit/Rules.IOunit | 7 - .../src/components/bgpm/IOunit/linux-IOunit.c | 684 - .../src/components/bgpm/IOunit/linux-IOunit.h | 76 - .../src/components/bgpm/L2unit/Rules.L2unit | 7 - .../src/components/bgpm/L2unit/linux-L2unit.c | 729 - .../src/components/bgpm/L2unit/linux-L2unit.h | 81 - .../src/components/bgpm/NWunit/Rules.NWunit | 7 - .../src/components/bgpm/NWunit/linux-NWunit.c | 517 - .../src/components/bgpm/NWunit/linux-NWunit.h | 69 - .../papi_7_0_1/src/components/bgpm/README.md | 22 - .../src/components/coretemp/README.md | 12 - .../src/components/coretemp/Rules.coretemp | 7 - .../src/components/coretemp/linux-coretemp.c | 755 - .../src/components/coretemp/linux-coretemp.h | 89 - .../src/components/coretemp/tests/Makefile | 23 - .../coretemp/tests/coretemp_basic.c | 142 - .../coretemp/tests/coretemp_pretty.c | 267 - .../src/components/coretemp_freebsd/README.md | 12 - .../coretemp_freebsd/Rules.coretemp_freebsd | 7 - .../coretemp_freebsd/coretemp_freebsd.c | 499 - .../coretemp_freebsd/coretemp_freebsd.h | 0 .../papi_7_0_1/src/components/cuda/README.md | 145 - .../papi_7_0_1/src/components/cuda/Rules.cuda | 119 - .../src/components/cuda/linux-cuda.c | 5651 ---- .../src/components/cuda/sampling/Makefile | 32 - .../src/components/cuda/sampling/README | 75 - .../src/components/cuda/sampling/activity.c | 300 - .../components/cuda/sampling/gpu_activity.c | 111 - .../src/components/cuda/sampling/path.h.in | 2 - .../components/cuda/sampling/test/matmul.cu | 207 - .../cuda/sampling/test/sass_source_map.cubin | Bin 3688 -> 0 bytes .../cuda/tests/BlackScholes/BlackScholes.cu | 438 - .../tests/BlackScholes/BlackScholes_gold.cpp | 96 - .../BlackScholes/BlackScholes_kernel.cuh | 118 - .../cuda/tests/BlackScholes/Makefile | 326 - .../cuda/tests/BlackScholes/NsightEclipse.xml | 69 - .../cuda/tests/BlackScholes/README_SETUP.txt | 7 - .../cuda/tests/BlackScholes/readme.txt | 7 - .../cuda/tests/BlackScholes/testAllEvents.sh | 377 - .../cuda/tests/BlackScholes/testSomeEvents.sh | 18 - .../tests/BlackScholes/thr_BlackScholes.cu | 558 - .../src/components/cuda/tests/HelloWorld.cu | 239 - .../cuda/tests/HelloWorld_CUPTI11.cu | 323 - .../cuda/tests/HelloWorld_NP_Ctx.cu | 205 - .../src/components/cuda/tests/LDLIB.src | 6 - .../src/components/cuda/tests/Makefile | 95 - .../cuda/tests/cudaTest_cupti_only.cu | 667 - .../cuda/tests/cuda_ld_preload_example.README | 56 - .../cuda/tests/cuda_ld_preload_example.c | 110 - .../cupti_multi_kernel_launch_monitoring.cu | 387 - .../cuda/tests/likeComp_cupti_only.cu | 646 - .../src/components/cuda/tests/nvlink_all.cu | 753 - .../components/cuda/tests/nvlink_bandwidth.cu | 503 - .../cuda/tests/nvlink_bandwidth_cupti_only.cu | 607 - .../src/components/cuda/tests/runAll.sh | 9 - .../src/components/cuda/tests/runBW.sh | 8 - .../src/components/cuda/tests/runCO.sh | 10 - .../src/components/cuda/tests/runCTCO.sh | 9 - .../src/components/cuda/tests/runSMG.sh | 10 - .../components/cuda/tests/simpleMultiGPU.cu | 445 - .../components/cuda/tests/simpleMultiGPU.h | 60 - .../cuda/tests/simpleMultiGPU_CUPTI11.cu | 453 - .../cuda/tests/test_multipass_event_fail.c | 74 - .../src/components/cuda/tests/timer.h | 70 - .../papi_7_0_1/src/components/emon/README.md | 22 - .../papi_7_0_1/src/components/emon/Rules.emon | 7 - .../src/components/emon/linux-emon.c | 641 - .../src/components/example/README.md | 18 - .../src/components/example/Rules.example | 5 - .../src/components/example/example.c | 701 - .../src/components/example/example.h | 0 .../src/components/example/tests/Makefile | 18 - .../components/example/tests/example_basic.c | 576 - .../tests/example_multiple_components.c | 192 - .../host_micpower/Makefile.host_micpower.in | 2 - .../src/components/host_micpower/README.md | 56 - .../host_micpower/Rules.host_micpower | 20 - .../src/components/host_micpower/configure | 4637 --- .../src/components/host_micpower/configure.ac | 32 - .../host_micpower/linux-host_micpower.c | 620 - .../components/host_micpower/tests/Makefile | 21 - .../host_micpower/tests/host_micpower_basic.c | 127 - .../components/host_micpower/utils/Makefile | 16 - .../src/components/host_micpower/utils/README | 22 - .../host_micpower/utils/host_micpower_plot.c | 185 - .../src/components/infiniband/README.md | 30 - .../components/infiniband/Rules.infiniband | 6 - .../components/infiniband/linux-infiniband.c | 1003 - .../src/components/infiniband/pscanf.h | 32 - .../tests/MPI_test_infiniband_events.c | 732 - .../src/components/infiniband/tests/Makefile | 29 - .../infiniband/tests/infiniband_list_events.c | 96 - .../tests/infiniband_values_by_code.c | 149 - .../src/components/intel_gpu/README.md | 57 - .../src/components/intel_gpu/Rules.intel_gpu | 29 - .../intel_gpu/internal/inc/GPUMetricHandler.h | 208 - .../internal/inc/GPUMetricInterface.h | 367 - .../internal/src/GPUMetricHandler.cpp | 1822 - .../internal/src/GPUMetricInterface.cpp | 547 - .../intel_gpu/linux_intel_gpu_metrics.c | 724 - .../intel_gpu/linux_intel_gpu_metrics.h | 90 - .../src/components/intel_gpu/tests/Makefile | 36 - .../src/components/intel_gpu/tests/gemm.spv | Bin 4200 -> 0 bytes .../intel_gpu/tests/gpu_common_utils.c | 193 - .../intel_gpu/tests/gpu_common_utils.h | 69 - .../intel_gpu/tests/gpu_metric_list.c | 205 - .../intel_gpu/tests/gpu_metric_read.c | 146 - .../intel_gpu/tests/gpu_query_gemm.cc | 464 - .../src/components/intel_gpu/tests/readme.txt | 41 - .../papi_7_0_1/src/components/io/CHANGES | 6 - .../papi_7_0_1/src/components/io/README.md | 37 - .../papi_7_0_1/src/components/io/Rules.io | 8 - .../papi_7_0_1/src/components/io/linux-io.c | 644 - .../src/components/io/tests/Makefile | 15 - .../src/components/io/tests/io_basic.c | 504 - .../src/components/libmsr/README.md | 160 - .../src/components/libmsr/Rules.libmsr | 92 - .../src/components/libmsr/linux-libmsr.c | 923 - .../libmsr/tests/ICL_TESTING_NOTES.txt | 7 - .../src/components/libmsr/tests/Makefile | 15 - .../components/libmsr/tests/libmsr_basic.c | 207 - .../src/components/libmsr/utils/README | 65 - .../libmsr/utils/libmsr_write_test.c | 207 - .../libmsr/utils/libmsr_write_test.sh | 42 - .../src/components/lmsensors/README.md | 48 - .../src/components/lmsensors/Rules.lmsensors | 91 - .../components/lmsensors/linux-lmsensors.c | 741 - .../src/components/lustre/README.md | 17 - .../src/components/lustre/Rules.lustre | 7 - .../hpcdata-ffff81022a732800/read_ahead_stats | 14 - .../llite/hpcdata-ffff81022a732800/stats | 20 - .../src/components/lustre/linux-lustre.c | 832 - .../src/components/lustre/tests/Makefile | 20 - .../components/lustre/tests/lustre_basic.c | 131 - .../src/components/micpower/README.md | 61 - .../src/components/micpower/Rules.micpower | 7 - .../src/components/micpower/linux-micpower.c | 522 - .../src/components/micpower/linux-micpower.h | 81 - .../src/components/micpower/tests/Makefile | 20 - .../micpower/tests/micpower_basic.c | 125 - .../papi_7_0_1/src/components/mx/README.md | 17 - .../papi_7_0_1/src/components/mx/Rules.mx | 7 - .../papi_7_0_1/src/components/mx/linux-mx.c | 578 - .../src/components/mx/tests/Makefile | 25 - .../src/components/mx/tests/mx_basic.c | 131 - .../src/components/mx/tests/mx_elapsed.c | 138 - .../components/mx/utils/fake_mx_counters.c | 136 - .../src/components/mx/utils/sample_output | 102 - .../papi_7_0_1/src/components/net/CHANGES | 18 - .../papi_7_0_1/src/components/net/README.md | 57 - .../papi_7_0_1/src/components/net/Rules.net | 8 - .../papi_7_0_1/src/components/net/linux-net.c | 712 - .../papi_7_0_1/src/components/net/linux-net.h | 84 - .../src/components/net/tests/Makefile | 23 - .../components/net/tests/net_list_events.c | 91 - .../components/net/tests/net_values_by_code.c | 139 - .../components/net/tests/net_values_by_name.c | 119 - .../src/components/nvml/PeakConfigure.sh | 3 - .../papi_7_0_1/src/components/nvml/README.md | 68 - .../papi_7_0_1/src/components/nvml/Rules.nvml | 102 - .../src/components/nvml/linux-nvml.c | 1820 - .../src/components/nvml/linux-nvml.h | 56 - .../src/components/nvml/tests/HelloWorld.cu | 164 - .../src/components/nvml/tests/Makefile | 38 - .../src/components/nvml/tests/benchSANVML.c | 415 - .../src/components/nvml/tests/force_init.h | 10 - .../nvml/tests/nvml_power_limit_read_test.cu | 174 - .../nvml/tests/nvml_power_limiting_test.cu | 238 - .../src/components/nvml/utils/Makefile | 23 - .../src/components/nvml/utils/README | 51 - .../src/components/nvml/utils/nvmlcap_plot.cu | 691 - .../papi_7_0_1/src/components/pcp/README.md | 119 - .../papi_7_0_1/src/components/pcp/Rules.pcp | 90 - .../papi_7_0_1/src/components/pcp/linux-pcp.c | 1973 -- .../src/components/pcp/tests/Makefile | 15 - .../src/components/pcp/tests/Makefile2 | 26 - .../pcp/tests/README_BenchTesting.txt | 268 - .../src/components/pcp/tests/benchPCP.c | 154 - .../components/pcp/tests/benchPCP_script.sh | 48 - .../src/components/pcp/tests/benchStats.c | 282 - .../src/components/pcp/tests/testPCP.c | 366 - .../src/components/perf_event/README.md | 14 - .../components/perf_event/Rules.perf_event | 9 - .../components/perf_event/pe_libpfm4_events.c | 1385 - .../components/perf_event/pe_libpfm4_events.h | 32 - .../src/components/perf_event/perf_event.c | 2735 -- .../components/perf_event/perf_event_lib.h | 51 - .../src/components/perf_event/perf_helpers.h | 532 - .../src/components/perf_event/tests/Makefile | 52 - .../perf_event/tests/broken_events.c | 64 - .../perf_event/tests/event_name_lib.c | 165 - .../perf_event/tests/event_name_lib.h | 3 - .../perf_event/tests/nmi_watchdog.c | 82 - .../tests/perf_event_offcore_response.c | 79 - .../perf_event/tests/perf_event_system_wide.c | 875 - .../perf_event/tests/perf_event_user_kernel.c | 723 - .../components/perf_event_uncore/README.md | 58 - .../perf_event_uncore/Rules.perf_event_uncore | 9 - .../perf_event_uncore/perf_event_uncore.c | 1370 - .../perf_event_uncore/tests/Makefile | 38 - .../tests/perf_event_amd_northbridge.c | 180 - .../tests/perf_event_uncore.c | 110 - .../tests/perf_event_uncore_attach.c | 160 - .../tests/perf_event_uncore_cbox.c | 192 - .../tests/perf_event_uncore_lib.c | 200 - .../tests/perf_event_uncore_lib.h | 2 - .../tests/perf_event_uncore_multiple.c | 192 - .../src/components/perfctr/Rules.perfctr | 9 - .../src/components/perfctr/perfctr-x86.c | 1219 - .../src/components/perfctr/perfctr-x86.h | 142 - .../src/components/perfctr/perfctr.c | 447 - .../components/perfctr_ppc/Rules.perfctr_ppc | 9 - .../src/components/perfctr_ppc/linux-ppc64.h | 47 - .../components/perfctr_ppc/perfctr-ppc64.c | 758 - .../components/perfctr_ppc/perfctr-ppc64.h | 201 - .../components/perfctr_ppc/power5+_events.h | 518 - .../perfctr_ppc/power5+_events_map.c | 986 - .../components/perfctr_ppc/power5_events.h | 494 - .../perfctr_ppc/power5_events_map.c | 949 - .../components/perfctr_ppc/power6_events.h | 588 - .../perfctr_ppc/power6_events_map.c | 1126 - .../components/perfctr_ppc/power7_events.h | 578 - .../src/components/perfctr_ppc/ppc64_events.c | 503 - .../src/components/perfctr_ppc/ppc64_events.h | 86 - .../components/perfctr_ppc/ppc970_events.h | 246 - .../perfctr_ppc/ppc970_events_map.c | 447 - .../src/components/perfmon2/Rules.perfmon2 | 6 - .../src/components/perfmon2/perfmon.c | 2269 -- .../src/components/perfmon2/perfmon.h | 103 - .../perfmon_ia64/Rules.perfmon_ia64 | 6 - .../components/perfmon_ia64/perfmon-ia64.c | 3179 -- .../components/perfmon_ia64/perfmon-ia64.h | 176 - .../src/components/perfnec/Rules.perfnec | 6 - .../src/components/perfnec/perfmon.c | 608 - .../src/components/perfnec/perfnec.h | 150 - .../src/components/powercap/README.md | 53 - .../src/components/powercap/Rules.powercap | 6 - .../src/components/powercap/linux-powercap.c | 621 - .../src/components/powercap/tests/Makefile | 36 - .../powercap/tests/powercap_basic.c | 288 - .../powercap/tests/powercap_basic_read.c | 187 - .../powercap/tests/powercap_basic_readwrite.c | 248 - .../powercap/tests/powercap_limit.c | 172 - .../src/components/powercap/utils/Makefile | 17 - .../src/components/powercap/utils/README | 25 - .../components/powercap/utils/powercap_plot.c | 206 - .../src/components/powercap_ppc/README.md | 50 - .../powercap_ppc/Rules.powercap_ppc | 6 - .../powercap_ppc/linux-powercap-ppc.c | 465 - .../powercap_ppc/linux-powercap-ppc.h | 72 - .../components/powercap_ppc/tests/Makefile | 22 - .../powercap_ppc/tests/powercap_basic.c | 140 - .../powercap_ppc/tests/powercap_limit.c | 192 - .../papi_7_0_1/src/components/rapl/README.md | 67 - .../papi_7_0_1/src/components/rapl/Rules.rapl | 6 - .../src/components/rapl/linux-rapl.c | 1368 - .../src/components/rapl/tests/Makefile | 40 - .../src/components/rapl/tests/rapl_basic.c | 370 - .../src/components/rapl/tests/rapl_overflow.c | 250 - .../src/components/rapl/utils/Makefile | 16 - .../src/components/rapl/utils/README | 19 - .../src/components/rapl/utils/rapl_plot.c | 229 - .../papi_7_0_1/src/components/rocm/README.md | 87 - .../papi_7_0_1/src/components/rocm/Rules.rocm | 25 - .../papi_7_0_1/src/components/rocm/common.h | 27 - .../papi_7_0_1/src/components/rocm/htable.h | 416 - .../papi_7_0_1/src/components/rocm/rocd.c | 140 - .../papi_7_0_1/src/components/rocm/rocd.h | 39 - .../papi_7_0_1/src/components/rocm/rocm.c | 578 - .../papi_7_0_1/src/components/rocm/rocp.c | 2232 -- .../papi_7_0_1/src/components/rocm/rocp.h | 36 - .../src/components/rocm/tests/Makefile | 64 - .../src/components/rocm/tests/common.h | 40 - .../hl_intercept_multi_thread_monitoring.cpp | 92 - .../hl_intercept_single_kernel_monitoring.cpp | 49 - .../hl_intercept_single_thread_monitoring.cpp | 91 - .../hl_sample_single_kernel_monitoring.cpp | 49 - .../hl_sample_single_thread_monitoring.cpp | 91 - .../intercept_multi_kernel_monitoring.cpp | 17 - .../intercept_multi_thread_monitoring.cpp | 17 - .../intercept_single_kernel_monitoring.cpp | 176 - .../intercept_single_thread_monitoring.cpp | 16 - .../src/components/rocm/tests/matmul.cpp | 141 - .../src/components/rocm/tests/matmul.h | 21 - .../rocm/tests/multi_kernel_monitoring.cpp | 127 - .../rocm/tests/multi_kernel_monitoring.h | 15 - .../rocm/tests/multi_thread_monitoring.cpp | 163 - .../rocm/tests/multi_thread_monitoring.h | 14 - .../tests/sample_multi_kernel_monitoring.cpp | 17 - .../tests/sample_multi_thread_monitoring.cpp | 20 - .../rocm/tests/sample_overflow_monitoring.cpp | 201 - .../tests/sample_single_kernel_monitoring.cpp | 170 - .../tests/sample_single_thread_monitoring.cpp | 18 - .../rocm/tests/single_thread_monitoring.cpp | 167 - .../rocm/tests/single_thread_monitoring.h | 15 - .../src/components/rocm_smi/README.md | 60 - .../src/components/rocm_smi/Rules.rocm_smi | 97 - .../src/components/rocm_smi/htable.h | 416 - .../src/components/rocm_smi/linux-rocm-smi.c | 432 - .../papi_7_0_1/src/components/rocm_smi/rocs.c | 3957 --- .../papi_7_0_1/src/components/rocm_smi/rocs.h | 31 - .../src/components/rocm_smi/tests/Makefile | 81 - .../components/rocm_smi/tests/force_init.h | 10 - .../rocm_smi/tests/power_monitor_rocm.cpp | 739 - .../rocm_smi/tests/rocm_command_line.cpp | 313 - .../rocm_smi/tests/rocm_smi_all.cpp | 572 - .../rocm_smi/tests/rocm_smi_writeTests.cpp | 339 - .../rocm_smi/tests/rocmsmi_example.cpp | 756 - .../papi_7_0_1/src/components/sde/README.md | 22 - .../papi_7_0_1/src/components/sde/Rules.sde | 11 - .../papi_7_0_1/src/components/sde/sde.c | 1104 - .../papi_7_0_1/src/components/sde/sde_F.F90 | 569 - .../src/components/sde/sde_internal.h | 95 - .../sde/tests/Advanced_C+FORTRAN/Gamum.c | 85 - .../sde/tests/Advanced_C+FORTRAN/Xandria.F90 | 203 - .../tests/Advanced_C+FORTRAN/sde_test_f08.F90 | 1020 - .../tests/Counting_Set/CountingSet_Lib++.cpp | 121 - .../sde/tests/Counting_Set/CountingSet_Lib.c | 135 - .../MemoryLeak_CountingSet_Driver++.cpp | 63 - .../MemoryLeak_CountingSet_Driver.c | 70 - .../Simple_CountingSet_Driver++.cpp | 63 - .../Counting_Set/Simple_CountingSet_Driver.c | 67 - .../sde/tests/Counting_Set/cset_lib.hpp | 20 - .../Created_Counter_Driver++.cpp | 82 - .../Created_Counter/Created_Counter_Driver.c | 82 - .../Lib_With_Created_Counter++.cpp | 96 - .../Lib_With_Created_Counter.c | 92 - .../tests/Created_Counter/Overflow_Driver.c | 132 - .../src/components/sde/tests/Makefile | 166 - .../sde/tests/Minimal/Minimal_Test++.cpp | 68 - .../sde/tests/Minimal/Minimal_Test.c | 66 - .../src/components/sde/tests/README.txt | 7 - .../tests/Recorder/Lib_With_Recorder++.cpp | 67 - .../sde/tests/Recorder/Lib_With_Recorder.c | 63 - .../sde/tests/Recorder/Recorder_Driver++.cpp | 102 - .../sde/tests/Recorder/Recorder_Driver.c | 102 - .../sde/tests/Simple/Simple_Driver.c | 107 - .../components/sde/tests/Simple/Simple_Lib.c | 94 - .../sde/tests/Simple2/Simple2_Driver++.cpp | 111 - .../sde/tests/Simple2/Simple2_Driver.c | 111 - .../sde/tests/Simple2/Simple2_Lib++.cpp | 134 - .../sde/tests/Simple2/Simple2_Lib.c | 133 - .../sde/tests/Simple2/Simple2_NoPAPI_Driver.c | 31 - .../src/components/sde/tests/lib/.gitignore | 0 .../src/components/sensors_ppc/README.md | 49 - .../components/sensors_ppc/Rules.sensors_ppc | 6 - .../sensors_ppc/linux-sensors-ppc.c | 913 - .../sensors_ppc/linux-sensors-ppc.h | 214 - .../src/components/sensors_ppc/tests/Makefile | 15 - .../sensors_ppc/tests/sensors_ppc_basic.c | 105 - .../src/components/stealtime/README.md | 17 - .../src/components/stealtime/Rules.stealtime | 6 - .../components/stealtime/linux-stealtime.c | 641 - .../src/components/stealtime/tests/Makefile | 20 - .../stealtime/tests/stealtime_basic.c | 131 - .../src/components/sysdetect/README.md | 27 - .../src/components/sysdetect/Rules.sysdetect | 74 - .../src/components/sysdetect/amd_gpu.c | 426 - .../src/components/sysdetect/amd_gpu.h | 7 - .../src/components/sysdetect/arm_cpu_utils.c | 397 - .../src/components/sysdetect/arm_cpu_utils.h | 13 - .../papi_7_0_1/src/components/sysdetect/cpu.c | 153 - .../papi_7_0_1/src/components/sysdetect/cpu.h | 7 - .../src/components/sysdetect/cpu_utils.c | 185 - .../src/components/sysdetect/cpu_utils.h | 47 - .../components/sysdetect/linux_cpu_utils.c | 969 - .../components/sysdetect/linux_cpu_utils.h | 15 - .../src/components/sysdetect/nvidia_gpu.c | 391 - .../src/components/sysdetect/nvidia_gpu.h | 13 - .../src/components/sysdetect/os_cpu_utils.c | 99 - .../src/components/sysdetect/os_cpu_utils.h | 15 - .../components/sysdetect/powerpc_cpu_utils.c | 287 - .../components/sysdetect/powerpc_cpu_utils.h | 13 - .../src/components/sysdetect/sysdetect.c | 480 - .../src/components/sysdetect/sysdetect.h | 93 - .../src/components/sysdetect/tests/Makefile | 53 - .../sysdetect/tests/query_device_mpi.c | 130 - .../sysdetect/tests/query_device_simple.c | 271 - .../sysdetect/tests/query_device_simple_f.F | 132 - .../src/components/sysdetect/x86_cpu_utils.c | 760 - .../src/components/sysdetect/x86_cpu_utils.h | 13 - .../src/components/vmware/Makefile.vmware.in | 2 - .../src/components/vmware/README.md | 17 - .../src/components/vmware/Rules.vmware | 10 - .../vmware/VMwareComponentDocument.txt | 188 - .../src/components/vmware/configure | 4308 --- .../src/components/vmware/configure.in | 15 - .../src/components/vmware/tests/Makefile | 20 - .../components/vmware/tests/vmware_basic.c | 150 - .../papi_7_0_1/src/components/vmware/vmware.c | 1292 - thirdparty/papi_7_0_1/src/config.h.in | 201 - thirdparty/papi_7_0_1/src/configure | 8623 ----- thirdparty/papi_7_0_1/src/configure.in | 2211 -- .../src/counter_analysis_toolkit/.cat_cfg | 15 - .../src/counter_analysis_toolkit/Makefile | 159 - .../src/counter_analysis_toolkit/README | 30 - .../src/counter_analysis_toolkit/branch.c | 452 - .../src/counter_analysis_toolkit/branch.h | 64 - .../src/counter_analysis_toolkit/caches.h | 62 - .../src/counter_analysis_toolkit/cat_arch.h | 211 - .../src/counter_analysis_toolkit/compar.c | 15 - .../src/counter_analysis_toolkit/dcache.c | 438 - .../src/counter_analysis_toolkit/dcache.h | 15 - .../src/counter_analysis_toolkit/driver.h | 34 - .../counter_analysis_toolkit/event_list.txt | 3 - .../src/counter_analysis_toolkit/eventstock.c | 227 - .../src/counter_analysis_toolkit/eventstock.h | 22 - .../src/counter_analysis_toolkit/flops.c | 889 - .../src/counter_analysis_toolkit/flops.h | 9 - .../gen_seq_dlopen.sh | 352 - .../src/counter_analysis_toolkit/hw_desc.h | 19 - .../src/counter_analysis_toolkit/icache.c | 45 - .../src/counter_analysis_toolkit/icache.h | 38 - .../src/counter_analysis_toolkit/instr.h | 8 - .../counter_analysis_toolkit/instructions.c | 1358 - .../src/counter_analysis_toolkit/main.c | 1156 - .../src/counter_analysis_toolkit/params.h | 15 - .../counter_analysis_toolkit/prepareArray.c | 119 - .../counter_analysis_toolkit/prepareArray.h | 12 - .../src/counter_analysis_toolkit/replicate.sh | 6 - .../scripts/README.txt | 33 - .../scripts/default.gnp | 172 - .../scripts/multi_plot.gnp | 109 - .../scripts/process_dcache_output.sh | 35 - ...QSTS:ALL_DEMAND_REFERENCES.data.reads.stat | 252 - ...2_RQSTS:DEMAND_DATA_RD_HIT.data.reads.stat | 252 - ..._RQSTS:DEMAND_DATA_RD_MISS.data.reads.stat | 252 - .../scripts/single_plot.gnp | 92 - .../counter_analysis_toolkit/timing_kernels.c | 236 - .../counter_analysis_toolkit/timing_kernels.h | 33 - .../src/counter_analysis_toolkit/vec.c | 219 - .../src/counter_analysis_toolkit/vec.h | 8 - .../src/counter_analysis_toolkit/vec_fma_dp.c | 337 - .../src/counter_analysis_toolkit/vec_fma_hp.c | 406 - .../src/counter_analysis_toolkit/vec_fma_sp.c | 343 - .../counter_analysis_toolkit/vec_nonfma_dp.c | 436 - .../counter_analysis_toolkit/vec_nonfma_hp.c | 505 - .../counter_analysis_toolkit/vec_nonfma_sp.c | 442 - .../vec_scalar_verify.c | 1864 - .../vec_scalar_verify.h | 46 - .../counter_analysis_toolkit/weak_symbols.c | 11 - thirdparty/papi_7_0_1/src/cpus.c | 302 - thirdparty/papi_7_0_1/src/cpus.h | 23 - thirdparty/papi_7_0_1/src/ctests/Makefile | 31 - .../papi_7_0_1/src/ctests/Makefile.recipies | 464 - .../papi_7_0_1/src/ctests/Makefile.target.in | 23 - thirdparty/papi_7_0_1/src/ctests/all_events.c | 110 - .../papi_7_0_1/src/ctests/all_native_events.c | 186 - thirdparty/papi_7_0_1/src/ctests/attach2.c | 245 - thirdparty/papi_7_0_1/src/ctests/attach3.c | 247 - thirdparty/papi_7_0_1/src/ctests/attach_cpu.c | 102 - .../src/ctests/attach_cpu_sys_validate.c | 154 - .../src/ctests/attach_cpu_validate.c | 158 - .../papi_7_0_1/src/ctests/attach_target.c | 19 - .../papi_7_0_1/src/ctests/attach_validate.c | 263 - thirdparty/papi_7_0_1/src/ctests/branches.c | 286 - thirdparty/papi_7_0_1/src/ctests/burn.c | 12 - .../papi_7_0_1/src/ctests/byte_profile.c | 270 - thirdparty/papi_7_0_1/src/ctests/calibrate.c | 471 - thirdparty/papi_7_0_1/src/ctests/case1.c | 71 - thirdparty/papi_7_0_1/src/ctests/case2.c | 81 - .../papi_7_0_1/src/ctests/child_overflow.c | 166 - .../papi_7_0_1/src/ctests/clockres_pthreads.c | 97 - thirdparty/papi_7_0_1/src/ctests/cmpinfo.c | 66 - thirdparty/papi_7_0_1/src/ctests/code2name.c | 149 - thirdparty/papi_7_0_1/src/ctests/data_range.c | 258 - thirdparty/papi_7_0_1/src/ctests/derived.c | 122 - thirdparty/papi_7_0_1/src/ctests/describe.c | 116 - thirdparty/papi_7_0_1/src/ctests/destroy.c | 89 - .../papi_7_0_1/src/ctests/disable_component.c | 90 - thirdparty/papi_7_0_1/src/ctests/dmem_info.c | 79 - thirdparty/papi_7_0_1/src/ctests/earprofile.c | 198 - thirdparty/papi_7_0_1/src/ctests/eventname.c | 35 - thirdparty/papi_7_0_1/src/ctests/exec.c | 46 - thirdparty/papi_7_0_1/src/ctests/exec2.c | 44 - .../papi_7_0_1/src/ctests/exec_overflow.c | 177 - thirdparty/papi_7_0_1/src/ctests/exeinfo.c | 68 - .../papi_7_0_1/src/ctests/failed_events.c | 211 - .../papi_7_0_1/src/ctests/filter_helgrind.c | 170 - thirdparty/papi_7_0_1/src/ctests/first.c | 233 - thirdparty/papi_7_0_1/src/ctests/fork.c | 53 - thirdparty/papi_7_0_1/src/ctests/fork2.c | 56 - .../papi_7_0_1/src/ctests/fork_overflow.c | 220 - thirdparty/papi_7_0_1/src/ctests/forkexec.c | 74 - thirdparty/papi_7_0_1/src/ctests/forkexec2.c | 83 - thirdparty/papi_7_0_1/src/ctests/forkexec3.c | 78 - thirdparty/papi_7_0_1/src/ctests/forkexec4.c | 77 - .../src/ctests/get_event_component.c | 82 - thirdparty/papi_7_0_1/src/ctests/hwinfo.c | 73 - thirdparty/papi_7_0_1/src/ctests/inherit.c | 110 - thirdparty/papi_7_0_1/src/ctests/johnmay2.c | 108 - .../papi_7_0_1/src/ctests/krentel_pthreads.c | 216 - .../src/ctests/krentel_pthreads_race.c | 231 - thirdparty/papi_7_0_1/src/ctests/kufrin.c | 215 - .../papi_7_0_1/src/ctests/locks_pthreads.c | 121 - thirdparty/papi_7_0_1/src/ctests/low-level.c | 192 - .../papi_7_0_1/src/ctests/max_multiplex.c | 97 - thirdparty/papi_7_0_1/src/ctests/memory.c | 238 - thirdparty/papi_7_0_1/src/ctests/mendes-alt.c | 185 - thirdparty/papi_7_0_1/src/ctests/mpi_hl.c | 44 - thirdparty/papi_7_0_1/src/ctests/mpi_omp_hl.c | 53 - thirdparty/papi_7_0_1/src/ctests/mpifirst.c | 175 - .../papi_7_0_1/src/ctests/multiattach.c | 377 - .../papi_7_0_1/src/ctests/multiattach2.c | 256 - thirdparty/papi_7_0_1/src/ctests/multiplex1.c | 442 - .../src/ctests/multiplex1_pthreads.c | 511 - thirdparty/papi_7_0_1/src/ctests/multiplex2.c | 203 - .../src/ctests/multiplex3_pthreads.c | 253 - thirdparty/papi_7_0_1/src/ctests/native.c | 175 - .../src/ctests/net-mpi-test/Makefile | 53 - .../papi_7_0_1/src/ctests/net-mpi-test/cpi.c | 164 - .../src/ctests/net-mpi-test/cpi.pbs | 44 - thirdparty/papi_7_0_1/src/ctests/nineth.c | 121 - thirdparty/papi_7_0_1/src/ctests/omp_hl.c | 70 - thirdparty/papi_7_0_1/src/ctests/omptough.c | 111 - thirdparty/papi_7_0_1/src/ctests/overflow.c | 198 - thirdparty/papi_7_0_1/src/ctests/overflow2.c | 187 - .../src/ctests/overflow3_pthreads.c | 154 - .../src/ctests/overflow_allcounters.c | 297 - .../src/ctests/overflow_force_software.c | 322 - .../papi_7_0_1/src/ctests/overflow_index.c | 180 - .../src/ctests/overflow_one_and_read.c | 135 - .../papi_7_0_1/src/ctests/overflow_pthreads.c | 223 - .../src/ctests/overflow_single_event.c | 196 - .../src/ctests/overflow_twoevents.c | 278 - .../papi_7_0_1/src/ctests/overflow_values.c | 167 - thirdparty/papi_7_0_1/src/ctests/p4_lst_ins.c | 229 - thirdparty/papi_7_0_1/src/ctests/pernode.c | 122 - thirdparty/papi_7_0_1/src/ctests/prof_utils.c | 303 - thirdparty/papi_7_0_1/src/ctests/prof_utils.h | 56 - thirdparty/papi_7_0_1/src/ctests/profile.c | 222 - .../papi_7_0_1/src/ctests/profile_pthreads.c | 211 - .../papi_7_0_1/src/ctests/profile_twoevents.c | 132 - thirdparty/papi_7_0_1/src/ctests/pthread_hl.c | 86 - thirdparty/papi_7_0_1/src/ctests/pthrtough.c | 101 - thirdparty/papi_7_0_1/src/ctests/pthrtough2.c | 103 - thirdparty/papi_7_0_1/src/ctests/realtime.c | 86 - .../papi_7_0_1/src/ctests/remove_events.c | 130 - thirdparty/papi_7_0_1/src/ctests/reset.c | 300 - .../papi_7_0_1/src/ctests/reset_multiplex.c | 266 - thirdparty/papi_7_0_1/src/ctests/sdsc-mpx.c | 318 - thirdparty/papi_7_0_1/src/ctests/sdsc2.c | 268 - thirdparty/papi_7_0_1/src/ctests/sdsc4-mpx.c | 428 - thirdparty/papi_7_0_1/src/ctests/second.c | 581 - thirdparty/papi_7_0_1/src/ctests/serial_hl.c | 40 - .../papi_7_0_1/src/ctests/serial_hl_ll_comb.c | 91 - thirdparty/papi_7_0_1/src/ctests/shlib.c | 189 - thirdparty/papi_7_0_1/src/ctests/sprofile.c | 161 - .../src/ctests/system_child_overflow.c | 198 - .../papi_7_0_1/src/ctests/system_overflow.c | 185 - thirdparty/papi_7_0_1/src/ctests/tenth.c | 239 - .../papi_7_0_1/src/ctests/thrspecific.c | 174 - .../papi_7_0_1/src/ctests/timer_overflow.c | 65 - thirdparty/papi_7_0_1/src/ctests/val_omp.c | 176 - thirdparty/papi_7_0_1/src/ctests/version.c | 62 - thirdparty/papi_7_0_1/src/ctests/virttime.c | 65 - thirdparty/papi_7_0_1/src/ctests/zero.c | 179 - .../papi_7_0_1/src/ctests/zero_attach.c | 224 - thirdparty/papi_7_0_1/src/ctests/zero_flip.c | 166 - thirdparty/papi_7_0_1/src/ctests/zero_fork.c | 163 - thirdparty/papi_7_0_1/src/ctests/zero_named.c | 143 - thirdparty/papi_7_0_1/src/ctests/zero_omp.c | 197 - .../papi_7_0_1/src/ctests/zero_pthreads.c | 219 - thirdparty/papi_7_0_1/src/ctests/zero_shmem.c | 99 - thirdparty/papi_7_0_1/src/ctests/zero_smp.c | 173 - thirdparty/papi_7_0_1/src/darwin-common.c | 422 - thirdparty/papi_7_0_1/src/darwin-common.h | 20 - thirdparty/papi_7_0_1/src/darwin-context.h | 0 thirdparty/papi_7_0_1/src/darwin-lock.h | 48 - thirdparty/papi_7_0_1/src/darwin-memory.c | 81 - thirdparty/papi_7_0_1/src/darwin-memory.h | 4 - .../papi_7_0_1/src/event_data/power4/events | 2207 -- .../papi_7_0_1/src/event_data/power4/groups | 332 - .../papi_7_0_1/src/event_data/power5+/events | 4311 --- .../papi_7_0_1/src/event_data/power5+/groups | 950 - .../papi_7_0_1/src/event_data/power5/events | 2443 -- .../papi_7_0_1/src/event_data/power5/groups | 743 - .../papi_7_0_1/src/event_data/ppc970/events | 1911 -- .../papi_7_0_1/src/event_data/ppc970/groups | 227 - thirdparty/papi_7_0_1/src/examples/Makefile | 47 - .../papi_7_0_1/src/examples/Makefile.AIX | 21 - .../papi_7_0_1/src/examples/Makefile.IRIX64 | 17 - .../papi_7_0_1/src/examples/Makefile.OSF1 | 16 - .../src/examples/PAPI_add_remove_event.c | 110 - .../src/examples/PAPI_add_remove_events.c | 83 - thirdparty/papi_7_0_1/src/examples/PAPI_epc.c | 67 - .../papi_7_0_1/src/examples/PAPI_flips.c | 76 - .../papi_7_0_1/src/examples/PAPI_flops.c | 76 - .../src/examples/PAPI_get_executable_info.c | 49 - .../papi_7_0_1/src/examples/PAPI_get_opt.c | 94 - .../src/examples/PAPI_get_real_cyc.c | 66 - .../src/examples/PAPI_get_virt_cyc.c | 66 - .../papi_7_0_1/src/examples/PAPI_hw_info.c | 49 - thirdparty/papi_7_0_1/src/examples/PAPI_ipc.c | 65 - .../papi_7_0_1/src/examples/PAPI_mix_hl_ll.c | 78 - .../src/examples/PAPI_mix_hl_rate.c | 76 - .../src/examples/PAPI_mix_ll_rate.c | 78 - .../papi_7_0_1/src/examples/PAPI_overflow.c | 129 - .../papi_7_0_1/src/examples/PAPI_perror.c | 81 - .../papi_7_0_1/src/examples/PAPI_profil.c | 155 - .../papi_7_0_1/src/examples/PAPI_reset.c | 91 - .../papi_7_0_1/src/examples/PAPI_set_domain.c | 128 - .../papi_7_0_1/src/examples/PAPI_state.c | 80 - thirdparty/papi_7_0_1/src/examples/README | 22 - .../examples/add_event/Papi_add_env_event.c | 141 - .../papi_7_0_1/src/examples/high_level.c | 83 - .../papi_7_0_1/src/examples/locks_pthreads.c | 130 - .../papi_7_0_1/src/examples/multiplex.c | 149 - .../src/examples/overflow_pthreads.c | 181 - .../papi_7_0_1/src/examples/run_examples.sh | 35 - thirdparty/papi_7_0_1/src/examples/sprofile.c | 182 - thirdparty/papi_7_0_1/src/extras.c | 519 - thirdparty/papi_7_0_1/src/extras.h | 16 - thirdparty/papi_7_0_1/src/freebsd-context.h | 6 - thirdparty/papi_7_0_1/src/freebsd-lock.h | 3 - thirdparty/papi_7_0_1/src/freebsd-memory.c | 60 - thirdparty/papi_7_0_1/src/freebsd-memory.h | 3 - thirdparty/papi_7_0_1/src/freebsd.c | 983 - thirdparty/papi_7_0_1/src/freebsd.h | 75 - thirdparty/papi_7_0_1/src/freebsd/map-atom.c | 259 - thirdparty/papi_7_0_1/src/freebsd/map-atom.h | 250 - thirdparty/papi_7_0_1/src/freebsd/map-core.c | 163 - thirdparty/papi_7_0_1/src/freebsd/map-core.h | 155 - .../src/freebsd/map-core2-extreme.c | 241 - .../src/freebsd/map-core2-extreme.h | 229 - thirdparty/papi_7_0_1/src/freebsd/map-core2.c | 239 - thirdparty/papi_7_0_1/src/freebsd/map-core2.h | 227 - thirdparty/papi_7_0_1/src/freebsd/map-i7.c | 509 - thirdparty/papi_7_0_1/src/freebsd/map-i7.h | 498 - thirdparty/papi_7_0_1/src/freebsd/map-k7.c | 61 - thirdparty/papi_7_0_1/src/freebsd/map-k7.h | 51 - thirdparty/papi_7_0_1/src/freebsd/map-k8.c | 121 - thirdparty/papi_7_0_1/src/freebsd/map-k8.h | 111 - thirdparty/papi_7_0_1/src/freebsd/map-p4.c | 92 - thirdparty/papi_7_0_1/src/freebsd/map-p4.h | 82 - thirdparty/papi_7_0_1/src/freebsd/map-p6-2.c | 109 - thirdparty/papi_7_0_1/src/freebsd/map-p6-2.h | 100 - thirdparty/papi_7_0_1/src/freebsd/map-p6-3.c | 113 - thirdparty/papi_7_0_1/src/freebsd/map-p6-3.h | 104 - thirdparty/papi_7_0_1/src/freebsd/map-p6-c.c | 102 - thirdparty/papi_7_0_1/src/freebsd/map-p6-c.h | 93 - thirdparty/papi_7_0_1/src/freebsd/map-p6-m.c | 139 - thirdparty/papi_7_0_1/src/freebsd/map-p6-m.h | 129 - thirdparty/papi_7_0_1/src/freebsd/map-p6.c | 100 - thirdparty/papi_7_0_1/src/freebsd/map-p6.h | 90 - .../papi_7_0_1/src/freebsd/map-unknown.c | 37 - .../papi_7_0_1/src/freebsd/map-unknown.h | 31 - .../papi_7_0_1/src/freebsd/map-westmere.c | 524 - .../papi_7_0_1/src/freebsd/map-westmere.h | 511 - thirdparty/papi_7_0_1/src/freebsd/map.c | 48 - thirdparty/papi_7_0_1/src/freebsd/map.h | 70 - thirdparty/papi_7_0_1/src/freebsd_events.csv | 294 - thirdparty/papi_7_0_1/src/ftests/Makefile | 36 - .../papi_7_0_1/src/ftests/Makefile.recipies | 77 - .../papi_7_0_1/src/ftests/Makefile.target.in | 23 - thirdparty/papi_7_0_1/src/ftests/accum.F | 188 - thirdparty/papi_7_0_1/src/ftests/avail.F | 148 - thirdparty/papi_7_0_1/src/ftests/case1.F | 108 - thirdparty/papi_7_0_1/src/ftests/case2.F | 119 - thirdparty/papi_7_0_1/src/ftests/clockres.F | 95 - thirdparty/papi_7_0_1/src/ftests/cost.F | 197 - .../papi_7_0_1/src/ftests/description.F | 258 - thirdparty/papi_7_0_1/src/ftests/eventname.F | 40 - thirdparty/papi_7_0_1/src/ftests/fdmemtest.F | 56 - thirdparty/papi_7_0_1/src/ftests/first.F | 251 - .../papi_7_0_1/src/ftests/fmatrixlowpapi.F | 176 - .../papi_7_0_1/src/ftests/fmultiplex1.F | 592 - .../papi_7_0_1/src/ftests/fmultiplex2.F | 210 - thirdparty/papi_7_0_1/src/ftests/johnmay2.F | 170 - thirdparty/papi_7_0_1/src/ftests/nineth.F | 238 - thirdparty/papi_7_0_1/src/ftests/openmp.F | 103 - thirdparty/papi_7_0_1/src/ftests/second.F | 381 - thirdparty/papi_7_0_1/src/ftests/serial_hl.F | 32 - thirdparty/papi_7_0_1/src/ftests/strtest.F | 366 - thirdparty/papi_7_0_1/src/ftests/tenth.F | 308 - thirdparty/papi_7_0_1/src/ftests/zero.F | 181 - thirdparty/papi_7_0_1/src/ftests/zeronamed.F | 181 - .../papi_7_0_1/src/high-level/papi_hl.c | 2200 -- .../scripts/papi_hl_output_writer.py | 544 - thirdparty/papi_7_0_1/src/libpapi.exp | 60 - .../papi_7_0_1/src/libperfnec/COPYRIGHT | 18 - .../papi_7_0_1/src/libperfnec/ChangeLog | 333 - thirdparty/papi_7_0_1/src/libperfnec/Makefile | 66 - thirdparty/papi_7_0_1/src/libperfnec/README | 103 - thirdparty/papi_7_0_1/src/libperfnec/TODO | 10 - .../papi_7_0_1/src/libperfnec/config.mk | 120 - .../papi_7_0_1/src/libperfnec/docs/Makefile | 72 - .../src/libperfnec/docs/man3/libpfm.3 | 105 - .../src/libperfnec/docs/man3/libpfm_amd64.3 | 158 - .../src/libperfnec/docs/man3/libpfm_atom.3 | 70 - .../src/libperfnec/docs/man3/libpfm_core.3 | 72 - .../src/libperfnec/docs/man3/libpfm_itanium.3 | 396 - .../libperfnec/docs/man3/libpfm_itanium2.3 | 456 - .../libperfnec/docs/man3/libpfm_montecito.3 | 496 - .../src/libperfnec/docs/man3/libpfm_nehalem.3 | 146 - .../src/libperfnec/docs/man3/libpfm_p6.3 | 65 - .../src/libperfnec/docs/man3/libpfm_powerpc.3 | 38 - .../libperfnec/docs/man3/libpfm_westmere.3 | 146 - .../docs/man3/pfm_dispatch_events.3 | 296 - .../src/libperfnec/docs/man3/pfm_find_event.3 | 84 - .../docs/man3/pfm_find_event_bycode.3 | 1 - .../docs/man3/pfm_find_event_bycode_next.3 | 1 - .../docs/man3/pfm_find_event_mask.3 | 1 - .../docs/man3/pfm_find_full_event.3 | 1 - .../src/libperfnec/docs/man3/pfm_force_pmu.3 | 1 - .../docs/man3/pfm_get_cycle_event.3 | 54 - .../libperfnec/docs/man3/pfm_get_event_code.3 | 1 - .../docs/man3/pfm_get_event_code_counter.3 | 1 - .../docs/man3/pfm_get_event_counters.3 | 1 - .../docs/man3/pfm_get_event_description.3 | 1 - .../docs/man3/pfm_get_event_mask_code.3 | 1 - .../man3/pfm_get_event_mask_description.3 | 1 - .../docs/man3/pfm_get_event_mask_name.3 | 1 - .../libperfnec/docs/man3/pfm_get_event_name.3 | 133 - .../docs/man3/pfm_get_full_event_name.3 | 1 - .../docs/man3/pfm_get_hw_counter_width.3 | 1 - .../docs/man3/pfm_get_impl_counters.3 | 1 - .../libperfnec/docs/man3/pfm_get_impl_pmcs.3 | 69 - .../libperfnec/docs/man3/pfm_get_impl_pmds.3 | 1 - .../docs/man3/pfm_get_inst_retired.3 | 1 - .../docs/man3/pfm_get_max_event_name_len.3 | 1 - .../docs/man3/pfm_get_num_counters.3 | 1 - .../libperfnec/docs/man3/pfm_get_num_events.3 | 1 - .../libperfnec/docs/man3/pfm_get_num_pmcs.3 | 1 - .../libperfnec/docs/man3/pfm_get_num_pmds.3 | 1 - .../libperfnec/docs/man3/pfm_get_pmu_name.3 | 193 - .../docs/man3/pfm_get_pmu_name_bytype.3 | 1 - .../libperfnec/docs/man3/pfm_get_pmu_type.3 | 1 - .../libperfnec/docs/man3/pfm_get_version.3 | 33 - .../src/libperfnec/docs/man3/pfm_initialize.3 | 30 - .../docs/man3/pfm_list_supported_pmus.3 | 1 - .../docs/man3/pfm_pmu_is_supported.3 | 1 - .../libperfnec/docs/man3/pfm_regmask_and.3 | 1 - .../libperfnec/docs/man3/pfm_regmask_clr.3 | 1 - .../libperfnec/docs/man3/pfm_regmask_copy.3 | 1 - .../src/libperfnec/docs/man3/pfm_regmask_eq.3 | 1 - .../libperfnec/docs/man3/pfm_regmask_isset.3 | 1 - .../src/libperfnec/docs/man3/pfm_regmask_or.3 | 1 - .../libperfnec/docs/man3/pfm_regmask_set.3 | 60 - .../libperfnec/docs/man3/pfm_regmask_weight.3 | 1 - .../libperfnec/docs/man3/pfm_set_options.3 | 59 - .../src/libperfnec/docs/man3/pfm_strerror.3 | 27 - .../src/libperfnec/include/Makefile | 137 - .../src/libperfnec/include/perfmon/perfmon.h | 203 - .../include/perfmon/perfmon_compat.h | 155 - .../include/perfmon/perfmon_crayx2.h | 20 - .../include/perfmon/perfmon_default_smpl.h | 94 - .../include/perfmon/perfmon_dfl_smpl.h | 88 - .../libperfnec/include/perfmon/perfmon_i386.h | 19 - .../libperfnec/include/perfmon/perfmon_ia64.h | 41 - .../include/perfmon/perfmon_mips64.h | 15 - .../libperfnec/include/perfmon/perfmon_nec.h | 224 - .../include/perfmon/perfmon_pebs_core_smpl.h | 141 - .../include/perfmon/perfmon_pebs_p4_smpl.h | 168 - .../include/perfmon/perfmon_pebs_smpl.h | 166 - .../include/perfmon/perfmon_powerpc.h | 14 - .../include/perfmon/perfmon_sparc.h | 14 - .../libperfnec/include/perfmon/perfmon_v2.h | 163 - .../include/perfmon/perfmon_x86_64.h | 14 - .../src/libperfnec/include/perfmon/pfmlib.h | 440 - .../libperfnec/include/perfmon/pfmlib_amd64.h | 237 - .../libperfnec/include/perfmon/pfmlib_cell.h | 60 - .../libperfnec/include/perfmon/pfmlib_comp.h | 57 - .../include/perfmon/pfmlib_comp_crayx2.h | 38 - .../include/perfmon/pfmlib_comp_i386.h | 54 - .../include/perfmon/pfmlib_comp_ia64.h | 94 - .../include/perfmon/pfmlib_comp_mips64.h | 55 - .../include/perfmon/pfmlib_comp_powerpc.h | 54 - .../include/perfmon/pfmlib_comp_sparc.h | 54 - .../include/perfmon/pfmlib_comp_x86_64.h | 54 - .../libperfnec/include/perfmon/pfmlib_core.h | 97 - .../include/perfmon/pfmlib_coreduo.h | 80 - .../include/perfmon/pfmlib_crayx2.h | 116 - .../include/perfmon/pfmlib_gen_ia32.h | 97 - .../include/perfmon/pfmlib_gen_ia64.h | 68 - .../include/perfmon/pfmlib_gen_mips64.h | 119 - .../include/perfmon/pfmlib_i386_p6.h | 109 - .../include/perfmon/pfmlib_intel_atom.h | 92 - .../include/perfmon/pfmlib_intel_nhm.h | 162 - .../include/perfmon/pfmlib_itanium.h | 354 - .../include/perfmon/pfmlib_itanium2.h | 474 - .../include/perfmon/pfmlib_montecito.h | 659 - .../libperfnec/include/perfmon/pfmlib_os.h | 58 - .../include/perfmon/pfmlib_os_crayx2.h | 51 - .../include/perfmon/pfmlib_os_i386.h | 57 - .../include/perfmon/pfmlib_os_ia64.h | 74 - .../include/perfmon/pfmlib_os_mips64.h | 57 - .../include/perfmon/pfmlib_os_powerpc.h | 57 - .../include/perfmon/pfmlib_os_sparc.h | 57 - .../include/perfmon/pfmlib_os_x86_64.h | 57 - .../include/perfmon/pfmlib_pentium4.h | 131 - .../include/perfmon/pfmlib_powerpc.h | 36 - .../include/perfmon/pfmlib_sicortex.h | 154 - .../libperfnec/include/perfmon/pfmlib_sparc.h | 33 - .../papi_7_0_1/src/libperfnec/lib/Makefile | 178 - .../src/libperfnec/lib/amd64_events.h | 65 - .../src/libperfnec/lib/amd64_events_fam10h.h | 2660 -- .../src/libperfnec/lib/amd64_events_fam15h.h | 2418 -- .../src/libperfnec/lib/amd64_events_k7.h | 219 - .../src/libperfnec/lib/amd64_events_k8.h | 1194 - .../src/libperfnec/lib/cell_events.h | 3079 -- .../src/libperfnec/lib/core_events.h | 1507 - .../src/libperfnec/lib/coreduo_events.h | 915 - .../src/libperfnec/lib/crayx2_events.h | 28128 ---------------- .../src/libperfnec/lib/gen_ia32_events.h | 66 - .../src/libperfnec/lib/gen_mips64_events.h | 2031 -- .../src/libperfnec/lib/i386_p6_events.h | 1030 - .../src/libperfnec/lib/intel_atom_events.h | 1037 - .../src/libperfnec/lib/intel_corei7_events.h | 2231 -- .../libperfnec/lib/intel_corei7_unc_events.h | 1222 - .../src/libperfnec/lib/intel_wsm_events.h | 2195 -- .../src/libperfnec/lib/intel_wsm_unc_events.h | 1208 - .../src/libperfnec/lib/itanium2_events.h | 1027 - .../src/libperfnec/lib/itanium_events.h | 495 - .../src/libperfnec/lib/montecito_events.h | 1307 - .../src/libperfnec/lib/niagara1_events.h | 52 - .../src/libperfnec/lib/niagara2_events.h | 324 - .../src/libperfnec/lib/pentium4_events.h | 2014 -- .../src/libperfnec/lib/pfmlib_amd64.c | 844 - .../src/libperfnec/lib/pfmlib_amd64_priv.h | 140 - .../src/libperfnec/lib/pfmlib_cell.c | 692 - .../src/libperfnec/lib/pfmlib_cell_priv.h | 84 - .../src/libperfnec/lib/pfmlib_common.c | 1191 - .../src/libperfnec/lib/pfmlib_core.c | 927 - .../src/libperfnec/lib/pfmlib_core_priv.h | 64 - .../src/libperfnec/lib/pfmlib_coreduo.c | 517 - .../src/libperfnec/lib/pfmlib_coreduo_priv.h | 57 - .../src/libperfnec/lib/pfmlib_crayx2.c | 505 - .../src/libperfnec/lib/pfmlib_crayx2_priv.h | 91 - .../src/libperfnec/lib/pfmlib_gen_ia32.c | 913 - .../src/libperfnec/lib/pfmlib_gen_ia32_priv.h | 75 - .../src/libperfnec/lib/pfmlib_gen_ia64.c | 511 - .../src/libperfnec/lib/pfmlib_gen_mips64.c | 461 - .../libperfnec/lib/pfmlib_gen_mips64_priv.h | 36 - .../src/libperfnec/lib/pfmlib_gen_powerpc.c | 857 - .../src/libperfnec/lib/pfmlib_i386_p6.c | 671 - .../src/libperfnec/lib/pfmlib_i386_p6_priv.h | 52 - .../src/libperfnec/lib/pfmlib_intel_atom.c | 804 - .../libperfnec/lib/pfmlib_intel_atom_priv.h | 90 - .../src/libperfnec/lib/pfmlib_intel_nhm.c | 1666 - .../libperfnec/lib/pfmlib_intel_nhm_priv.h | 67 - .../src/libperfnec/lib/pfmlib_itanium.c | 1214 - .../src/libperfnec/lib/pfmlib_itanium2.c | 2155 -- .../src/libperfnec/lib/pfmlib_itanium2_priv.h | 113 - .../src/libperfnec/lib/pfmlib_itanium_priv.h | 94 - .../src/libperfnec/lib/pfmlib_montecito.c | 2464 -- .../libperfnec/lib/pfmlib_montecito_priv.h | 118 - .../src/libperfnec/lib/pfmlib_os_linux.c | 88 - .../src/libperfnec/lib/pfmlib_os_linux_v2.c | 556 - .../src/libperfnec/lib/pfmlib_os_linux_v3.c | 131 - .../src/libperfnec/lib/pfmlib_os_macos.c | 105 - .../src/libperfnec/lib/pfmlib_pentium4.c | 744 - .../src/libperfnec/lib/pfmlib_pentium4_priv.h | 176 - .../src/libperfnec/lib/pfmlib_power4_priv.h | 30 - .../src/libperfnec/lib/pfmlib_power5+_priv.h | 30 - .../src/libperfnec/lib/pfmlib_power5_priv.h | 30 - .../src/libperfnec/lib/pfmlib_power6_priv.h | 30 - .../src/libperfnec/lib/pfmlib_power7_priv.h | 30 - .../src/libperfnec/lib/pfmlib_power_priv.h | 43 - .../src/libperfnec/lib/pfmlib_powerpc_priv.h | 29 - .../src/libperfnec/lib/pfmlib_ppc970_priv.h | 30 - .../src/libperfnec/lib/pfmlib_ppc970mp_priv.h | 30 - .../src/libperfnec/lib/pfmlib_priv.c | 93 - .../src/libperfnec/lib/pfmlib_priv.h | 146 - .../src/libperfnec/lib/pfmlib_priv_comp.h | 38 - .../libperfnec/lib/pfmlib_priv_comp_ia64.h | 58 - .../src/libperfnec/lib/pfmlib_priv_ia64.h | 66 - .../src/libperfnec/lib/pfmlib_sicortex.c | 731 - .../src/libperfnec/lib/pfmlib_sicortex_priv.h | 64 - .../src/libperfnec/lib/pfmlib_sparc.c | 545 - .../src/libperfnec/lib/pfmlib_sparc_priv.h | 25 - .../src/libperfnec/lib/power4_events.h | 3781 --- .../src/libperfnec/lib/power5+_events.h | 8979 ----- .../src/libperfnec/lib/power5_events.h | 8457 ----- .../src/libperfnec/lib/power6_events.h | 10672 ------ .../src/libperfnec/lib/power7_events.h | 10618 ------ .../src/libperfnec/lib/powerpc_events.h | 29 - .../src/libperfnec/lib/powerpc_reg.h | 87 - .../src/libperfnec/lib/ppc970_events.h | 3215 -- .../src/libperfnec/lib/ppc970mp_events.h | 3491 -- .../src/libperfnec/lib/ultra12_events.h | 138 - .../src/libperfnec/lib/ultra3_events.h | 401 - .../src/libperfnec/lib/ultra3i_events.h | 391 - .../src/libperfnec/lib/ultra3plus_events.h | 443 - .../src/libperfnec/lib/ultra4plus_events.h | 621 - .../src/libperfnec/libpfms/Makefile | 54 - .../src/libperfnec/libpfms/include/libpfms.h | 47 - .../src/libperfnec/libpfms/lib/Makefile | 96 - .../src/libperfnec/libpfms/lib/libpfms.c | 932 - .../src/libperfnec/libpfms/syst_smp.c | 277 - .../papi_7_0_1/src/libperfnec/python/Makefile | 31 - .../papi_7_0_1/src/libperfnec/python/README | 8 - .../papi_7_0_1/src/libperfnec/python/self.py | 58 - .../papi_7_0_1/src/libperfnec/python/setup.py | 19 - .../src/libperfnec/python/src/__init__.py | 3 - .../src/libperfnec/python/src/perfmon_int.i | 228 - .../src/libperfnec/python/src/pmu.py | 111 - .../src/libperfnec/python/src/session.py | 260 - .../papi_7_0_1/src/libperfnec/python/sys.py | 67 - thirdparty/papi_7_0_1/src/libperfnec/rules.mk | 38 - .../papi_7_0_1/src/libpfm-3.y/COPYRIGHT | 18 - .../papi_7_0_1/src/libpfm-3.y/ChangeLog | 333 - thirdparty/papi_7_0_1/src/libpfm-3.y/Makefile | 76 - thirdparty/papi_7_0_1/src/libpfm-3.y/README | 103 - thirdparty/papi_7_0_1/src/libpfm-3.y/TODO | 10 - .../papi_7_0_1/src/libpfm-3.y/config.mk | 207 - .../papi_7_0_1/src/libpfm-3.y/docs/Makefile | 72 - .../src/libpfm-3.y/docs/man3/libpfm.3 | 105 - .../src/libpfm-3.y/docs/man3/libpfm_amd64.3 | 158 - .../src/libpfm-3.y/docs/man3/libpfm_atom.3 | 70 - .../src/libpfm-3.y/docs/man3/libpfm_core.3 | 72 - .../src/libpfm-3.y/docs/man3/libpfm_itanium.3 | 396 - .../libpfm-3.y/docs/man3/libpfm_itanium2.3 | 456 - .../libpfm-3.y/docs/man3/libpfm_montecito.3 | 496 - .../src/libpfm-3.y/docs/man3/libpfm_nehalem.3 | 146 - .../src/libpfm-3.y/docs/man3/libpfm_p6.3 | 65 - .../src/libpfm-3.y/docs/man3/libpfm_powerpc.3 | 38 - .../libpfm-3.y/docs/man3/libpfm_westmere.3 | 146 - .../docs/man3/pfm_dispatch_events.3 | 296 - .../src/libpfm-3.y/docs/man3/pfm_find_event.3 | 84 - .../docs/man3/pfm_find_event_bycode.3 | 1 - .../docs/man3/pfm_find_event_bycode_next.3 | 1 - .../docs/man3/pfm_find_event_mask.3 | 1 - .../docs/man3/pfm_find_full_event.3 | 1 - .../src/libpfm-3.y/docs/man3/pfm_force_pmu.3 | 1 - .../docs/man3/pfm_get_cycle_event.3 | 54 - .../libpfm-3.y/docs/man3/pfm_get_event_code.3 | 1 - .../docs/man3/pfm_get_event_code_counter.3 | 1 - .../docs/man3/pfm_get_event_counters.3 | 1 - .../docs/man3/pfm_get_event_description.3 | 1 - .../docs/man3/pfm_get_event_mask_code.3 | 1 - .../man3/pfm_get_event_mask_description.3 | 1 - .../docs/man3/pfm_get_event_mask_name.3 | 1 - .../libpfm-3.y/docs/man3/pfm_get_event_name.3 | 133 - .../docs/man3/pfm_get_full_event_name.3 | 1 - .../docs/man3/pfm_get_hw_counter_width.3 | 1 - .../docs/man3/pfm_get_impl_counters.3 | 1 - .../libpfm-3.y/docs/man3/pfm_get_impl_pmcs.3 | 69 - .../libpfm-3.y/docs/man3/pfm_get_impl_pmds.3 | 1 - .../docs/man3/pfm_get_inst_retired.3 | 1 - .../docs/man3/pfm_get_max_event_name_len.3 | 1 - .../docs/man3/pfm_get_num_counters.3 | 1 - .../libpfm-3.y/docs/man3/pfm_get_num_events.3 | 1 - .../libpfm-3.y/docs/man3/pfm_get_num_pmcs.3 | 1 - .../libpfm-3.y/docs/man3/pfm_get_num_pmds.3 | 1 - .../libpfm-3.y/docs/man3/pfm_get_pmu_name.3 | 193 - .../docs/man3/pfm_get_pmu_name_bytype.3 | 1 - .../libpfm-3.y/docs/man3/pfm_get_pmu_type.3 | 1 - .../libpfm-3.y/docs/man3/pfm_get_version.3 | 33 - .../src/libpfm-3.y/docs/man3/pfm_initialize.3 | 30 - .../docs/man3/pfm_list_supported_pmus.3 | 1 - .../docs/man3/pfm_pmu_is_supported.3 | 1 - .../libpfm-3.y/docs/man3/pfm_regmask_and.3 | 1 - .../libpfm-3.y/docs/man3/pfm_regmask_clr.3 | 1 - .../libpfm-3.y/docs/man3/pfm_regmask_copy.3 | 1 - .../src/libpfm-3.y/docs/man3/pfm_regmask_eq.3 | 1 - .../libpfm-3.y/docs/man3/pfm_regmask_isset.3 | 1 - .../src/libpfm-3.y/docs/man3/pfm_regmask_or.3 | 1 - .../libpfm-3.y/docs/man3/pfm_regmask_set.3 | 60 - .../libpfm-3.y/docs/man3/pfm_regmask_weight.3 | 1 - .../libpfm-3.y/docs/man3/pfm_set_options.3 | 59 - .../src/libpfm-3.y/docs/man3/pfm_strerror.3 | 27 - .../libpfm-3.y/examples_ia64_v2.0/Makefile | 73 - .../libpfm-3.y/examples_ia64_v2.0/ita2_btb.c | 542 - .../libpfm-3.y/examples_ia64_v2.0/ita2_dear.c | 458 - .../libpfm-3.y/examples_ia64_v2.0/ita2_irr.c | 383 - .../examples_ia64_v2.0/ita2_opcode.c | 286 - .../libpfm-3.y/examples_ia64_v2.0/ita2_rr.c | 402 - .../libpfm-3.y/examples_ia64_v2.0/ita_btb.c | 529 - .../libpfm-3.y/examples_ia64_v2.0/ita_dear.c | 454 - .../libpfm-3.y/examples_ia64_v2.0/ita_irr.c | 386 - .../examples_ia64_v2.0/ita_opcode.c | 282 - .../libpfm-3.y/examples_ia64_v2.0/ita_rr.c | 414 - .../libpfm-3.y/examples_ia64_v2.0/mont_dear.c | 446 - .../libpfm-3.y/examples_ia64_v2.0/mont_etb.c | 528 - .../libpfm-3.y/examples_ia64_v2.0/mont_irr.c | 362 - .../examples_ia64_v2.0/mont_opcode.c | 268 - .../libpfm-3.y/examples_ia64_v2.0/mont_rr.c | 387 - .../libpfm-3.y/examples_ia64_v2.0/multiplex.c | 711 - .../examples_ia64_v2.0/notify_self.c | 308 - .../examples_ia64_v2.0/notify_self2.c | 326 - .../examples_ia64_v2.0/notify_self3.c | 316 - .../examples_ia64_v2.0/notify_self_fork.c | 323 - .../src/libpfm-3.y/examples_ia64_v2.0/self.c | 271 - .../libpfm-3.y/examples_ia64_v2.0/showreset.c | 95 - .../src/libpfm-3.y/examples_ia64_v2.0/syst.c | 308 - .../src/libpfm-3.y/examples_ia64_v2.0/task.c | 303 - .../examples_ia64_v2.0/task_attach.c | 303 - .../examples_ia64_v2.0/task_attach_timeout.c | 356 - .../libpfm-3.y/examples_ia64_v2.0/task_smpl.c | 498 - .../libpfm-3.y/examples_ia64_v2.0/whichpmu.c | 106 - .../src/libpfm-3.y/examples_v2.x/Makefile | 94 - .../libpfm-3.y/examples_v2.x/check_events.c | 150 - .../libpfm-3.y/examples_v2.x/detect_pmcs.c | 114 - .../libpfm-3.y/examples_v2.x/detect_pmcs.h | 44 - .../libpfm-3.y/examples_v2.x/ia64/Makefile | 65 - .../libpfm-3.y/examples_v2.x/ia64/ita2_btb.c | 488 - .../libpfm-3.y/examples_v2.x/ia64/ita2_dear.c | 416 - .../libpfm-3.y/examples_v2.x/ia64/ita2_irr.c | 382 - .../examples_v2.x/ia64/ita2_opcode.c | 277 - .../libpfm-3.y/examples_v2.x/ia64/ita2_rr.c | 380 - .../libpfm-3.y/examples_v2.x/ia64/ita_btb.c | 493 - .../libpfm-3.y/examples_v2.x/ia64/ita_dear.c | 417 - .../libpfm-3.y/examples_v2.x/ia64/ita_irr.c | 384 - .../examples_v2.x/ia64/ita_opcode.c | 272 - .../libpfm-3.y/examples_v2.x/ia64/ita_rr.c | 407 - .../libpfm-3.y/examples_v2.x/ia64/mont_dear.c | 412 - .../libpfm-3.y/examples_v2.x/ia64/mont_etb.c | 498 - .../libpfm-3.y/examples_v2.x/ia64/mont_irr.c | 374 - .../examples_v2.x/ia64/mont_opcode.c | 264 - .../libpfm-3.y/examples_v2.x/ia64/mont_rr.c | 376 - .../src/libpfm-3.y/examples_v2.x/multiplex.c | 1147 - .../src/libpfm-3.y/examples_v2.x/multiplex2.c | 1182 - .../libpfm-3.y/examples_v2.x/notify_self.c | 331 - .../libpfm-3.y/examples_v2.x/notify_self2.c | 356 - .../libpfm-3.y/examples_v2.x/notify_self3.c | 304 - .../examples_v2.x/notify_self_fork.c | 350 - .../src/libpfm-3.y/examples_v2.x/pfmsetup.c | 1978 -- .../src/libpfm-3.y/examples_v2.x/rtop.c | 1083 - .../src/libpfm-3.y/examples_v2.x/self.c | 261 - .../src/libpfm-3.y/examples_v2.x/self_pipe.c | 357 - .../src/libpfm-3.y/examples_v2.x/self_smpl.c | 341 - .../examples_v2.x/self_smpl_multi.c | 466 - .../src/libpfm-3.y/examples_v2.x/self_view.c | 402 - .../src/libpfm-3.y/examples_v2.x/set_notify.c | 445 - .../libpfm-3.y/examples_v2.x/showevtinfo.c | 285 - .../libpfm-3.y/examples_v2.x/showreginfo.c | 222 - .../src/libpfm-3.y/examples_v2.x/syst.c | 291 - .../libpfm-3.y/examples_v2.x/syst_multi_np.c | 240 - .../src/libpfm-3.y/examples_v2.x/syst_np.c | 283 - .../src/libpfm-3.y/examples_v2.x/task.c | 296 - .../libpfm-3.y/examples_v2.x/task_attach.c | 308 - .../examples_v2.x/task_attach_timeout.c | 356 - .../examples_v2.x/task_attach_timeout_np.c | 265 - .../src/libpfm-3.y/examples_v2.x/task_smpl.c | 615 - .../libpfm-3.y/examples_v2.x/task_smpl_user.c | 537 - .../src/libpfm-3.y/examples_v2.x/whichpmu.c | 134 - .../src/libpfm-3.y/examples_v2.x/x86/Makefile | 53 - .../examples_v2.x/x86/smpl_amd64_ibs.c | 735 - .../examples_v2.x/x86/smpl_core_pebs.c | 428 - .../examples_v2.x/x86/smpl_nhm_lbr.c | 464 - .../examples_v2.x/x86/smpl_p4_pebs.c | 456 - .../libpfm-3.y/examples_v2.x/x86/smpl_pebs.c | 455 - .../src/libpfm-3.y/examples_v3.x/Makefile | 93 - .../libpfm-3.y/examples_v3.x/check_events.c | 150 - .../libpfm-3.y/examples_v3.x/detect_pmcs.c | 89 - .../libpfm-3.y/examples_v3.x/detect_pmcs.h | 35 - .../libpfm-3.y/examples_v3.x/ia64/Makefile | 65 - .../libpfm-3.y/examples_v3.x/ia64/ita2_btb.c | 486 - .../libpfm-3.y/examples_v3.x/ia64/ita2_dear.c | 404 - .../libpfm-3.y/examples_v3.x/ia64/ita2_irr.c | 377 - .../examples_v3.x/ia64/ita2_opcode.c | 269 - .../libpfm-3.y/examples_v3.x/ia64/ita2_rr.c | 373 - .../libpfm-3.y/examples_v3.x/ia64/ita_btb.c | 494 - .../libpfm-3.y/examples_v3.x/ia64/ita_dear.c | 404 - .../libpfm-3.y/examples_v3.x/ia64/ita_irr.c | 376 - .../examples_v3.x/ia64/ita_opcode.c | 267 - .../libpfm-3.y/examples_v3.x/ia64/ita_rr.c | 396 - .../libpfm-3.y/examples_v3.x/ia64/mont_dear.c | 398 - .../libpfm-3.y/examples_v3.x/ia64/mont_etb.c | 497 - .../libpfm-3.y/examples_v3.x/ia64/mont_irr.c | 369 - .../examples_v3.x/ia64/mont_opcode.c | 259 - .../libpfm-3.y/examples_v3.x/ia64/mont_rr.c | 372 - .../src/libpfm-3.y/examples_v3.x/multiplex.c | 1126 - .../src/libpfm-3.y/examples_v3.x/multiplex2.c | 1175 - .../libpfm-3.y/examples_v3.x/notify_self.c | 336 - .../libpfm-3.y/examples_v3.x/notify_self2.c | 352 - .../libpfm-3.y/examples_v3.x/notify_self3.c | 308 - .../examples_v3.x/notify_self_fork.c | 352 - .../src/libpfm-3.y/examples_v3.x/pfmsetup.c | 1902 -- .../src/libpfm-3.y/examples_v3.x/rtop.c | 1072 - .../src/libpfm-3.y/examples_v3.x/self.c | 256 - .../src/libpfm-3.y/examples_v3.x/self_pipe.c | 355 - .../examples_v3.x/self_smpl_multi.c | 360 - .../src/libpfm-3.y/examples_v3.x/set_notify.c | 440 - .../libpfm-3.y/examples_v3.x/showevtinfo.c | 164 - .../libpfm-3.y/examples_v3.x/showreginfo.c | 222 - .../src/libpfm-3.y/examples_v3.x/syst.c | 283 - .../src/libpfm-3.y/examples_v3.x/task.c | 295 - .../libpfm-3.y/examples_v3.x/task_attach.c | 297 - .../examples_v3.x/task_attach_timeout.c | 343 - .../src/libpfm-3.y/examples_v3.x/task_smpl.c | 613 - .../libpfm-3.y/examples_v3.x/task_smpl_user.c | 534 - .../src/libpfm-3.y/examples_v3.x/whichpmu.c | 135 - .../src/libpfm-3.y/examples_v3.x/x86/Makefile | 53 - .../examples_v3.x/x86/smpl_amd64_ibs.c | 744 - .../examples_v3.x/x86/smpl_core_pebs.c | 441 - .../examples_v3.x/x86/smpl_core_pebs_sys.c | 466 - .../examples_v3.x/x86/smpl_p4_pebs.c | 448 - .../src/libpfm-3.y/include/Makefile | 137 - .../src/libpfm-3.y/include/perfmon/perfmon.h | 223 - .../include/perfmon/perfmon_compat.h | 155 - .../include/perfmon/perfmon_crayx2.h | 20 - .../include/perfmon/perfmon_default_smpl.h | 94 - .../include/perfmon/perfmon_dfl_smpl.h | 88 - .../libpfm-3.y/include/perfmon/perfmon_i386.h | 19 - .../libpfm-3.y/include/perfmon/perfmon_ia64.h | 41 - .../include/perfmon/perfmon_mips64.h | 15 - .../include/perfmon/perfmon_pebs_core_smpl.h | 141 - .../include/perfmon/perfmon_pebs_p4_smpl.h | 168 - .../include/perfmon/perfmon_pebs_smpl.h | 166 - .../include/perfmon/perfmon_powerpc.h | 14 - .../include/perfmon/perfmon_sparc.h | 14 - .../libpfm-3.y/include/perfmon/perfmon_v2.h | 163 - .../include/perfmon/perfmon_x86_64.h | 14 - .../src/libpfm-3.y/include/perfmon/pfmlib.h | 440 - .../libpfm-3.y/include/perfmon/pfmlib_amd64.h | 237 - .../libpfm-3.y/include/perfmon/pfmlib_cell.h | 60 - .../libpfm-3.y/include/perfmon/pfmlib_comp.h | 57 - .../include/perfmon/pfmlib_comp_crayx2.h | 38 - .../include/perfmon/pfmlib_comp_i386.h | 54 - .../include/perfmon/pfmlib_comp_ia64.h | 94 - .../include/perfmon/pfmlib_comp_mips64.h | 55 - .../include/perfmon/pfmlib_comp_powerpc.h | 54 - .../include/perfmon/pfmlib_comp_sparc.h | 54 - .../include/perfmon/pfmlib_comp_x86_64.h | 54 - .../libpfm-3.y/include/perfmon/pfmlib_core.h | 97 - .../include/perfmon/pfmlib_coreduo.h | 80 - .../include/perfmon/pfmlib_crayx2.h | 116 - .../include/perfmon/pfmlib_gen_ia32.h | 97 - .../include/perfmon/pfmlib_gen_ia64.h | 68 - .../include/perfmon/pfmlib_gen_mips64.h | 119 - .../include/perfmon/pfmlib_i386_p6.h | 109 - .../include/perfmon/pfmlib_intel_atom.h | 92 - .../include/perfmon/pfmlib_intel_nhm.h | 162 - .../include/perfmon/pfmlib_itanium.h | 354 - .../include/perfmon/pfmlib_itanium2.h | 474 - .../include/perfmon/pfmlib_montecito.h | 659 - .../libpfm-3.y/include/perfmon/pfmlib_os.h | 58 - .../include/perfmon/pfmlib_os_crayx2.h | 51 - .../include/perfmon/pfmlib_os_i386.h | 57 - .../include/perfmon/pfmlib_os_ia64.h | 74 - .../include/perfmon/pfmlib_os_mips64.h | 57 - .../include/perfmon/pfmlib_os_powerpc.h | 57 - .../include/perfmon/pfmlib_os_sparc.h | 57 - .../include/perfmon/pfmlib_os_x86_64.h | 57 - .../include/perfmon/pfmlib_pentium4.h | 131 - .../include/perfmon/pfmlib_powerpc.h | 36 - .../include/perfmon/pfmlib_sicortex.h | 154 - .../libpfm-3.y/include/perfmon/pfmlib_sparc.h | 33 - .../papi_7_0_1/src/libpfm-3.y/lib/Makefile | 237 - .../src/libpfm-3.y/lib/amd64_events.h | 65 - .../src/libpfm-3.y/lib/amd64_events_fam10h.h | 2660 -- .../src/libpfm-3.y/lib/amd64_events_fam15h.h | 2418 -- .../src/libpfm-3.y/lib/amd64_events_k7.h | 219 - .../src/libpfm-3.y/lib/amd64_events_k8.h | 1194 - .../src/libpfm-3.y/lib/cell_events.h | 3079 -- .../src/libpfm-3.y/lib/core_events.h | 1507 - .../src/libpfm-3.y/lib/coreduo_events.h | 915 - .../src/libpfm-3.y/lib/crayx2_events.h | 28128 ---------------- .../src/libpfm-3.y/lib/gen_ia32_events.h | 66 - .../src/libpfm-3.y/lib/gen_mips64_events.h | 2031 -- .../src/libpfm-3.y/lib/i386_p6_events.h | 1030 - .../src/libpfm-3.y/lib/intel_atom_events.h | 1037 - .../src/libpfm-3.y/lib/intel_corei7_events.h | 2231 -- .../libpfm-3.y/lib/intel_corei7_unc_events.h | 1222 - .../src/libpfm-3.y/lib/intel_wsm_events.h | 2195 -- .../src/libpfm-3.y/lib/intel_wsm_unc_events.h | 1208 - .../src/libpfm-3.y/lib/itanium2_events.h | 1027 - .../src/libpfm-3.y/lib/itanium_events.h | 495 - .../src/libpfm-3.y/lib/montecito_events.h | 1307 - .../src/libpfm-3.y/lib/niagara1_events.h | 52 - .../src/libpfm-3.y/lib/niagara2_events.h | 324 - .../src/libpfm-3.y/lib/pentium4_events.h | 2014 -- .../src/libpfm-3.y/lib/pfmlib_amd64.c | 844 - .../src/libpfm-3.y/lib/pfmlib_amd64_priv.h | 140 - .../src/libpfm-3.y/lib/pfmlib_cell.c | 692 - .../src/libpfm-3.y/lib/pfmlib_cell_priv.h | 84 - .../src/libpfm-3.y/lib/pfmlib_common.c | 1191 - .../src/libpfm-3.y/lib/pfmlib_core.c | 927 - .../src/libpfm-3.y/lib/pfmlib_core_priv.h | 64 - .../src/libpfm-3.y/lib/pfmlib_coreduo.c | 517 - .../src/libpfm-3.y/lib/pfmlib_coreduo_priv.h | 57 - .../src/libpfm-3.y/lib/pfmlib_crayx2.c | 505 - .../src/libpfm-3.y/lib/pfmlib_crayx2_priv.h | 91 - .../src/libpfm-3.y/lib/pfmlib_gen_ia32.c | 913 - .../src/libpfm-3.y/lib/pfmlib_gen_ia32_priv.h | 75 - .../src/libpfm-3.y/lib/pfmlib_gen_ia64.c | 511 - .../src/libpfm-3.y/lib/pfmlib_gen_mips64.c | 461 - .../libpfm-3.y/lib/pfmlib_gen_mips64_priv.h | 36 - .../src/libpfm-3.y/lib/pfmlib_gen_powerpc.c | 857 - .../src/libpfm-3.y/lib/pfmlib_i386_p6.c | 671 - .../src/libpfm-3.y/lib/pfmlib_i386_p6_priv.h | 52 - .../src/libpfm-3.y/lib/pfmlib_intel_atom.c | 804 - .../libpfm-3.y/lib/pfmlib_intel_atom_priv.h | 90 - .../src/libpfm-3.y/lib/pfmlib_intel_nhm.c | 1666 - .../libpfm-3.y/lib/pfmlib_intel_nhm_priv.h | 67 - .../src/libpfm-3.y/lib/pfmlib_itanium.c | 1214 - .../src/libpfm-3.y/lib/pfmlib_itanium2.c | 2155 -- .../src/libpfm-3.y/lib/pfmlib_itanium2_priv.h | 113 - .../src/libpfm-3.y/lib/pfmlib_itanium_priv.h | 94 - .../src/libpfm-3.y/lib/pfmlib_montecito.c | 2464 -- .../libpfm-3.y/lib/pfmlib_montecito_priv.h | 118 - .../src/libpfm-3.y/lib/pfmlib_os_linux.c | 394 - .../src/libpfm-3.y/lib/pfmlib_os_linux_v2.c | 556 - .../src/libpfm-3.y/lib/pfmlib_os_linux_v3.c | 131 - .../src/libpfm-3.y/lib/pfmlib_os_macos.c | 105 - .../src/libpfm-3.y/lib/pfmlib_pentium4.c | 744 - .../src/libpfm-3.y/lib/pfmlib_pentium4_priv.h | 176 - .../src/libpfm-3.y/lib/pfmlib_power4_priv.h | 30 - .../src/libpfm-3.y/lib/pfmlib_power5+_priv.h | 30 - .../src/libpfm-3.y/lib/pfmlib_power5_priv.h | 30 - .../src/libpfm-3.y/lib/pfmlib_power6_priv.h | 30 - .../src/libpfm-3.y/lib/pfmlib_power7_priv.h | 30 - .../src/libpfm-3.y/lib/pfmlib_power_priv.h | 43 - .../src/libpfm-3.y/lib/pfmlib_powerpc_priv.h | 29 - .../src/libpfm-3.y/lib/pfmlib_ppc970_priv.h | 30 - .../src/libpfm-3.y/lib/pfmlib_ppc970mp_priv.h | 30 - .../src/libpfm-3.y/lib/pfmlib_priv.c | 93 - .../src/libpfm-3.y/lib/pfmlib_priv.h | 146 - .../src/libpfm-3.y/lib/pfmlib_priv_comp.h | 38 - .../libpfm-3.y/lib/pfmlib_priv_comp_ia64.h | 58 - .../src/libpfm-3.y/lib/pfmlib_priv_ia64.h | 66 - .../src/libpfm-3.y/lib/pfmlib_sicortex.c | 731 - .../src/libpfm-3.y/lib/pfmlib_sicortex_priv.h | 64 - .../src/libpfm-3.y/lib/pfmlib_sparc.c | 545 - .../src/libpfm-3.y/lib/pfmlib_sparc_priv.h | 25 - .../src/libpfm-3.y/lib/power4_events.h | 3781 --- .../src/libpfm-3.y/lib/power5+_events.h | 8979 ----- .../src/libpfm-3.y/lib/power5_events.h | 8457 ----- .../src/libpfm-3.y/lib/power6_events.h | 10672 ------ .../src/libpfm-3.y/lib/power7_events.h | 10618 ------ .../src/libpfm-3.y/lib/powerpc_events.h | 29 - .../src/libpfm-3.y/lib/powerpc_reg.h | 87 - .../src/libpfm-3.y/lib/ppc970_events.h | 3215 -- .../src/libpfm-3.y/lib/ppc970mp_events.h | 3491 -- .../src/libpfm-3.y/lib/ultra12_events.h | 138 - .../src/libpfm-3.y/lib/ultra3_events.h | 401 - .../src/libpfm-3.y/lib/ultra3i_events.h | 391 - .../src/libpfm-3.y/lib/ultra3plus_events.h | 443 - .../src/libpfm-3.y/lib/ultra4plus_events.h | 621 - .../src/libpfm-3.y/libpfms/Makefile | 54 - .../src/libpfm-3.y/libpfms/include/libpfms.h | 47 - .../src/libpfm-3.y/libpfms/lib/Makefile | 96 - .../src/libpfm-3.y/libpfms/lib/libpfms.c | 932 - .../src/libpfm-3.y/libpfms/syst_smp.c | 277 - .../papi_7_0_1/src/libpfm-3.y/python/Makefile | 31 - .../papi_7_0_1/src/libpfm-3.y/python/README | 8 - .../papi_7_0_1/src/libpfm-3.y/python/self.py | 58 - .../papi_7_0_1/src/libpfm-3.y/python/setup.py | 19 - .../src/libpfm-3.y/python/src/__init__.py | 3 - .../src/libpfm-3.y/python/src/perfmon_int.i | 228 - .../src/libpfm-3.y/python/src/pmu.py | 111 - .../src/libpfm-3.y/python/src/session.py | 260 - .../papi_7_0_1/src/libpfm-3.y/python/sys.py | 67 - thirdparty/papi_7_0_1/src/libpfm-3.y/rules.mk | 38 - thirdparty/papi_7_0_1/src/libpfm4/.gitignore | 62 - thirdparty/papi_7_0_1/src/libpfm4/COPYING | 20 - thirdparty/papi_7_0_1/src/libpfm4/Makefile | 87 - thirdparty/papi_7_0_1/src/libpfm4/README | 195 - thirdparty/papi_7_0_1/src/libpfm4/config.mk | 253 - .../papi_7_0_1/src/libpfm4/debian/README | 6 - .../src/libpfm4/debian/README.source | 3 - .../papi_7_0_1/src/libpfm4/debian/changelog | 195 - .../papi_7_0_1/src/libpfm4/debian/compat | 1 - .../papi_7_0_1/src/libpfm4/debian/control | 41 - .../papi_7_0_1/src/libpfm4/debian/copyright | 35 - thirdparty/papi_7_0_1/src/libpfm4/debian/docs | 1 - .../src/libpfm4/debian/libpfm4-dev.dirs | 2 - .../src/libpfm4/debian/libpfm4-dev.install | 2 - .../src/libpfm4/debian/libpfm4-dev.manpages | 1 - .../src/libpfm4/debian/libpfm4.install | 1 - .../src/libpfm4/debian/python-libpfm4.install | 2 - .../papi_7_0_1/src/libpfm4/debian/pyversions | 1 - .../papi_7_0_1/src/libpfm4/debian/rules | 18 - .../src/libpfm4/debian/source/format | 1 - .../papi_7_0_1/src/libpfm4/docs/Makefile | 178 - .../papi_7_0_1/src/libpfm4/docs/man3/libpfm.3 | 137 - .../src/libpfm4/docs/man3/libpfm_amd64.3 | 28 - .../libpfm4/docs/man3/libpfm_amd64_fam10h.3 | 50 - .../libpfm4/docs/man3/libpfm_amd64_fam15h.3 | 55 - .../libpfm4/docs/man3/libpfm_amd64_fam16h.3 | 49 - .../libpfm4/docs/man3/libpfm_amd64_fam17h.3 | 51 - .../docs/man3/libpfm_amd64_fam17h_zen2.3 | 49 - .../docs/man3/libpfm_amd64_fam19h_zen3.3 | 49 - .../docs/man3/libpfm_amd64_fam19h_zen3_l3.3 | 19 - .../docs/man3/libpfm_amd64_fam19h_zen4.3 | 49 - .../src/libpfm4/docs/man3/libpfm_amd64_k7.3 | 42 - .../src/libpfm4/docs/man3/libpfm_amd64_k8.3 | 42 - .../src/libpfm4/docs/man3/libpfm_arm_a64fx.3 | 36 - .../src/libpfm4/docs/man3/libpfm_arm_ac15.3 | 35 - .../src/libpfm4/docs/man3/libpfm_arm_ac53.3 | 36 - .../src/libpfm4/docs/man3/libpfm_arm_ac57.3 | 36 - .../src/libpfm4/docs/man3/libpfm_arm_ac7.3 | 35 - .../src/libpfm4/docs/man3/libpfm_arm_ac8.3 | 21 - .../src/libpfm4/docs/man3/libpfm_arm_ac9.3 | 21 - .../docs/man3/libpfm_arm_neoverse_n1.3 | 36 - .../docs/man3/libpfm_arm_neoverse_n2.3 | 36 - .../docs/man3/libpfm_arm_neoverse_v1.3 | 37 - .../docs/man3/libpfm_arm_neoverse_v2.3 | 37 - .../libpfm4/docs/man3/libpfm_arm_qcom_krait.3 | 35 - .../src/libpfm4/docs/man3/libpfm_arm_xgene.3 | 39 - .../src/libpfm4/docs/man3/libpfm_intel_atom.3 | 43 - .../src/libpfm4/docs/man3/libpfm_intel_bdw.3 | 105 - .../docs/man3/libpfm_intel_bdx_unc_cbo.3 | 79 - .../docs/man3/libpfm_intel_bdx_unc_ha.3 | 35 - .../docs/man3/libpfm_intel_bdx_unc_imc.3 | 34 - .../docs/man3/libpfm_intel_bdx_unc_irp.3 | 36 - .../docs/man3/libpfm_intel_bdx_unc_pcu.3 | 50 - .../docs/man3/libpfm_intel_bdx_unc_qpi.3 | 36 - .../docs/man3/libpfm_intel_bdx_unc_r2pcie.3 | 36 - .../docs/man3/libpfm_intel_bdx_unc_r3qpi.3 | 36 - .../docs/man3/libpfm_intel_bdx_unc_sbo.3 | 42 - .../docs/man3/libpfm_intel_bdx_unc_ubo.3 | 36 - .../src/libpfm4/docs/man3/libpfm_intel_core.3 | 43 - .../libpfm4/docs/man3/libpfm_intel_coreduo.3 | 45 - .../src/libpfm4/docs/man3/libpfm_intel_emr.3 | 84 - .../src/libpfm4/docs/man3/libpfm_intel_glm.3 | 97 - .../src/libpfm4/docs/man3/libpfm_intel_hsw.3 | 107 - .../docs/man3/libpfm_intel_hswep_unc_cbo.3 | 79 - .../docs/man3/libpfm_intel_hswep_unc_ha.3 | 35 - .../docs/man3/libpfm_intel_hswep_unc_imc.3 | 34 - .../docs/man3/libpfm_intel_hswep_unc_irp.3 | 36 - .../docs/man3/libpfm_intel_hswep_unc_pcu.3 | 50 - .../docs/man3/libpfm_intel_hswep_unc_qpi.3 | 36 - .../docs/man3/libpfm_intel_hswep_unc_r2pcie.3 | 36 - .../docs/man3/libpfm_intel_hswep_unc_r3qpi.3 | 36 - .../docs/man3/libpfm_intel_hswep_unc_sbo.3 | 42 - .../docs/man3/libpfm_intel_hswep_unc_ubo.3 | 36 - .../src/libpfm4/docs/man3/libpfm_intel_icl.3 | 84 - .../src/libpfm4/docs/man3/libpfm_intel_icx.3 | 84 - .../src/libpfm4/docs/man3/libpfm_intel_ivb.3 | 99 - .../libpfm4/docs/man3/libpfm_intel_ivb_unc.3 | 48 - .../docs/man3/libpfm_intel_ivbep_unc_cbo.3 | 78 - .../docs/man3/libpfm_intel_ivbep_unc_ha.3 | 30 - .../docs/man3/libpfm_intel_ivbep_unc_imc.3 | 30 - .../docs/man3/libpfm_intel_ivbep_unc_irp.3 | 30 - .../docs/man3/libpfm_intel_ivbep_unc_pcu.3 | 44 - .../docs/man3/libpfm_intel_ivbep_unc_qpi.3 | 30 - .../docs/man3/libpfm_intel_ivbep_unc_r2pcie.3 | 30 - .../docs/man3/libpfm_intel_ivbep_unc_r3qpi.3 | 30 - .../docs/man3/libpfm_intel_ivbep_unc_ubo.3 | 30 - .../src/libpfm4/docs/man3/libpfm_intel_knc.3 | 43 - .../src/libpfm4/docs/man3/libpfm_intel_knl.3 | 100 - .../src/libpfm4/docs/man3/libpfm_intel_knm.3 | 100 - .../src/libpfm4/docs/man3/libpfm_intel_nhm.3 | 73 - .../libpfm4/docs/man3/libpfm_intel_nhm_unc.3 | 41 - .../src/libpfm4/docs/man3/libpfm_intel_p6.3 | 41 - .../src/libpfm4/docs/man3/libpfm_intel_rapl.3 | 39 - .../src/libpfm4/docs/man3/libpfm_intel_skl.3 | 110 - .../docs/man3/libpfm_intel_skx_unc_cha.3 | 79 - .../docs/man3/libpfm_intel_skx_unc_iio.3 | 38 - .../docs/man3/libpfm_intel_skx_unc_imc.3 | 33 - .../docs/man3/libpfm_intel_skx_unc_irp.3 | 35 - .../docs/man3/libpfm_intel_skx_unc_m2m.3 | 35 - .../docs/man3/libpfm_intel_skx_unc_m3upi.3 | 35 - .../docs/man3/libpfm_intel_skx_unc_pcu.3 | 43 - .../docs/man3/libpfm_intel_skx_unc_ubo.3 | 35 - .../docs/man3/libpfm_intel_skx_unc_upi.3 | 46 - .../src/libpfm4/docs/man3/libpfm_intel_slm.3 | 84 - .../src/libpfm4/docs/man3/libpfm_intel_snb.3 | 103 - .../libpfm4/docs/man3/libpfm_intel_snb_unc.3 | 48 - .../docs/man3/libpfm_intel_snbep_unc_cbo.3 | 72 - .../docs/man3/libpfm_intel_snbep_unc_ha.3 | 35 - .../docs/man3/libpfm_intel_snbep_unc_imc.3 | 34 - .../docs/man3/libpfm_intel_snbep_unc_pcu.3 | 49 - .../docs/man3/libpfm_intel_snbep_unc_qpi.3 | 35 - .../docs/man3/libpfm_intel_snbep_unc_r2pcie.3 | 35 - .../docs/man3/libpfm_intel_snbep_unc_r3qpi.3 | 35 - .../docs/man3/libpfm_intel_snbep_unc_ubo.3 | 59 - .../src/libpfm4/docs/man3/libpfm_intel_spr.3 | 84 - .../src/libpfm4/docs/man3/libpfm_intel_tmt.3 | 60 - .../src/libpfm4/docs/man3/libpfm_intel_wsm.3 | 74 - .../libpfm4/docs/man3/libpfm_intel_wsm_unc.3 | 40 - .../libpfm4/docs/man3/libpfm_intel_x86_arch.3 | 49 - .../src/libpfm4/docs/man3/libpfm_mips_74k.3 | 57 - .../libpfm4/docs/man3/libpfm_perf_event_raw.3 | 96 - .../src/libpfm4/docs/man3/pfm_find_event.3 | 106 - .../docs/man3/pfm_get_event_attr_info.3 | 180 - .../docs/man3/pfm_get_event_encoding.3 | 129 - .../libpfm4/docs/man3/pfm_get_event_info.3 | 133 - .../libpfm4/docs/man3/pfm_get_event_next.3 | 75 - .../docs/man3/pfm_get_os_event_encoding.3 | 197 - .../docs/man3/pfm_get_perf_event_encoding.3 | 152 - .../src/libpfm4/docs/man3/pfm_get_pmu_info.3 | 131 - .../src/libpfm4/docs/man3/pfm_get_version.3 | 30 - .../src/libpfm4/docs/man3/pfm_initialize.3 | 30 - .../src/libpfm4/docs/man3/pfm_strerror.3 | 32 - .../src/libpfm4/docs/man3/pfm_terminate.3 | 20 - .../papi_7_0_1/src/libpfm4/examples/Makefile | 62 - .../src/libpfm4/examples/check_events.c | 162 - .../src/libpfm4/examples/showevtinfo.c | 953 - .../papi_7_0_1/src/libpfm4/include/Makefile | 38 - .../src/libpfm4/include/perfmon/err.h | 45 - .../src/libpfm4/include/perfmon/perf_event.h | 717 - .../src/libpfm4/include/perfmon/pfmlib.h | 899 - .../include/perfmon/pfmlib_perf_event.h | 68 - .../papi_7_0_1/src/libpfm4/lib/Makefile | 439 - .../libpfm4/lib/events/amd64_events_fam10h.h | 2418 -- .../libpfm4/lib/events/amd64_events_fam11h.h | 1403 - .../libpfm4/lib/events/amd64_events_fam12h.h | 1758 - .../libpfm4/lib/events/amd64_events_fam14h.h | 1540 - .../libpfm4/lib/events/amd64_events_fam15h.h | 1315 - .../lib/events/amd64_events_fam15h_nb.h | 1310 - .../libpfm4/lib/events/amd64_events_fam16h.h | 1303 - .../lib/events/amd64_events_fam17h_zen1.h | 1171 - .../lib/events/amd64_events_fam17h_zen2.h | 943 - .../lib/events/amd64_events_fam19h_zen3.h | 1023 - .../lib/events/amd64_events_fam19h_zen3_l3.h | 55 - .../lib/events/amd64_events_fam19h_zen4.h | 1815 - .../src/libpfm4/lib/events/amd64_events_k7.h | 228 - .../src/libpfm4/lib/events/amd64_events_k8.h | 1307 - .../src/libpfm4/lib/events/arm_1176_events.h | 136 - .../lib/events/arm_cavium_tx2_events.h | 837 - .../lib/events/arm_cortex_a15_events.h | 364 - .../lib/events/arm_cortex_a53_events.h | 190 - .../lib/events/arm_cortex_a57_events.h | 440 - .../libpfm4/lib/events/arm_cortex_a7_events.h | 231 - .../libpfm4/lib/events/arm_cortex_a8_events.h | 237 - .../libpfm4/lib/events/arm_cortex_a9_events.h | 272 - .../lib/events/arm_fujitsu_a64fx_events.h | 1136 - .../lib/events/arm_hisilicon_kunpeng_events.h | 773 - .../events/arm_hisilicon_kunpeng_unc_events.h | 197 - .../lib/events/arm_marvell_tx2_unc_events.h | 132 - .../lib/events/arm_neoverse_n1_events.h | 601 - .../lib/events/arm_neoverse_n2_events.h | 810 - .../lib/events/arm_neoverse_v1_events.h | 702 - .../lib/events/arm_neoverse_v2_events.h | 833 - .../lib/events/arm_qcom_krait_events.h | 66 - .../src/libpfm4/lib/events/arm_xgene_events.h | 528 - .../src/libpfm4/lib/events/cell_events.h | 3079 -- .../libpfm4/lib/events/intel_atom_events.h | 1364 - .../src/libpfm4/lib/events/intel_bdw_events.h | 2999 -- .../lib/events/intel_bdx_unc_cbo_events.h | 1167 - .../lib/events/intel_bdx_unc_ha_events.h | 1159 - .../lib/events/intel_bdx_unc_imc_events.h | 698 - .../lib/events/intel_bdx_unc_irp_events.h | 384 - .../lib/events/intel_bdx_unc_pcu_events.h | 427 - .../lib/events/intel_bdx_unc_qpi_events.h | 710 - .../lib/events/intel_bdx_unc_r2pcie_events.h | 344 - .../lib/events/intel_bdx_unc_r3qpi_events.h | 752 - .../lib/events/intel_bdx_unc_sbo_events.h | 405 - .../lib/events/intel_bdx_unc_ubo_events.h | 70 - .../libpfm4/lib/events/intel_core_events.h | 1895 -- .../libpfm4/lib/events/intel_coreduo_events.h | 1229 - .../src/libpfm4/lib/events/intel_glm_events.h | 1300 - .../src/libpfm4/lib/events/intel_hsw_events.h | 2919 -- .../lib/events/intel_hswep_unc_cbo_events.h | 1108 - .../lib/events/intel_hswep_unc_ha_events.h | 1106 - .../lib/events/intel_hswep_unc_imc_events.h | 717 - .../lib/events/intel_hswep_unc_irp_events.h | 358 - .../lib/events/intel_hswep_unc_pcu_events.h | 406 - .../lib/events/intel_hswep_unc_qpi_events.h | 646 - .../events/intel_hswep_unc_r2pcie_events.h | 296 - .../lib/events/intel_hswep_unc_r3qpi_events.h | 563 - .../lib/events/intel_hswep_unc_sbo_events.h | 259 - .../lib/events/intel_hswep_unc_ubo_events.h | 69 - .../src/libpfm4/lib/events/intel_icl_events.h | 3212 -- .../src/libpfm4/lib/events/intel_ivb_events.h | 2691 -- .../lib/events/intel_ivbep_unc_cbo_events.h | 958 - .../lib/events/intel_ivbep_unc_ha_events.h | 871 - .../lib/events/intel_ivbep_unc_imc_events.h | 644 - .../lib/events/intel_ivbep_unc_irp_events.h | 267 - .../lib/events/intel_ivbep_unc_pcu_events.h | 461 - .../lib/events/intel_ivbep_unc_qpi_events.h | 696 - .../events/intel_ivbep_unc_r2pcie_events.h | 253 - .../lib/events/intel_ivbep_unc_r3qpi_events.h | 534 - .../lib/events/intel_ivbep_unc_ubo_events.h | 101 - .../src/libpfm4/lib/events/intel_knc_events.h | 383 - .../src/libpfm4/lib/events/intel_knl_events.h | 1150 - .../lib/events/intel_knl_unc_cha_events.h | 1276 - .../lib/events/intel_knl_unc_edc_events.h | 88 - .../lib/events/intel_knl_unc_imc_events.h | 68 - .../lib/events/intel_knl_unc_m2pcie_events.h | 145 - .../lib/events/intel_netburst_events.h | 1549 - .../src/libpfm4/lib/events/intel_nhm_events.h | 2530 -- .../libpfm4/lib/events/intel_nhm_unc_events.h | 1247 - .../src/libpfm4/lib/events/intel_p6_events.h | 716 - .../src/libpfm4/lib/events/intel_pii_events.h | 656 - .../src/libpfm4/lib/events/intel_pm_events.h | 930 - .../libpfm4/lib/events/intel_ppro_events.h | 525 - .../src/libpfm4/lib/events/intel_skl_events.h | 3167 -- .../lib/events/intel_skx_unc_cha_events.h | 3889 --- .../lib/events/intel_skx_unc_iio_events.h | 760 - .../lib/events/intel_skx_unc_imc_events.h | 684 - .../lib/events/intel_skx_unc_irp_events.h | 472 - .../lib/events/intel_skx_unc_m2m_events.h | 2692 -- .../lib/events/intel_skx_unc_m3upi_events.h | 3594 -- .../lib/events/intel_skx_unc_pcu_events.h | 231 - .../lib/events/intel_skx_unc_ubo_events.h | 115 - .../lib/events/intel_skx_unc_upi_events.h | 1125 - .../src/libpfm4/lib/events/intel_slm_events.h | 922 - .../src/libpfm4/lib/events/intel_snb_events.h | 2776 -- .../libpfm4/lib/events/intel_snb_unc_events.h | 183 - .../lib/events/intel_snbep_unc_cbo_events.h | 778 - .../lib/events/intel_snbep_unc_ha_events.h | 505 - .../lib/events/intel_snbep_unc_imc_events.h | 344 - .../lib/events/intel_snbep_unc_pcu_events.h | 307 - .../lib/events/intel_snbep_unc_qpi_events.h | 429 - .../events/intel_snbep_unc_r2pcie_events.h | 188 - .../lib/events/intel_snbep_unc_r3qpi_events.h | 323 - .../lib/events/intel_snbep_unc_ubo_events.h | 72 - .../src/libpfm4/lib/events/intel_spr_events.h | 2785 -- .../src/libpfm4/lib/events/intel_tmt_events.h | 423 - .../src/libpfm4/lib/events/intel_wsm_events.h | 2638 -- .../libpfm4/lib/events/intel_wsm_unc_events.h | 1372 - .../lib/events/intel_x86_arch_events.h | 63 - .../src/libpfm4/lib/events/itanium2_events.h | 1027 - .../src/libpfm4/lib/events/itanium_events.h | 495 - .../src/libpfm4/lib/events/mips_74k_events.h | 639 - .../src/libpfm4/lib/events/montecito_events.h | 1307 - .../src/libpfm4/lib/events/perf_events.h | 426 - .../src/libpfm4/lib/events/power10_events.h | 4780 --- .../src/libpfm4/lib/events/power4_events.h | 1735 - .../src/libpfm4/lib/events/power5+_events.h | 3408 -- .../src/libpfm4/lib/events/power5_events.h | 3345 -- .../src/libpfm4/lib/events/power6_events.h | 3898 --- .../src/libpfm4/lib/events/power7_events.h | 3858 --- .../src/libpfm4/lib/events/power8_events.h | 7470 ---- .../src/libpfm4/lib/events/power9_events.h | 6743 ---- .../src/libpfm4/lib/events/powerpc_events.h | 29 - .../libpfm4/lib/events/powerpc_nest_events.h | 62 - .../src/libpfm4/lib/events/ppc970_events.h | 1532 - .../src/libpfm4/lib/events/ppc970mp_events.h | 1637 - .../libpfm4/lib/events/s390x_cpumf_events.h | 2862 -- .../lib/events/sparc_niagara1_events.h | 52 - .../lib/events/sparc_niagara2_events.h | 253 - .../libpfm4/lib/events/sparc_ultra12_events.h | 138 - .../libpfm4/lib/events/sparc_ultra3_events.h | 401 - .../libpfm4/lib/events/sparc_ultra3i_events.h | 391 - .../lib/events/sparc_ultra3plus_events.h | 443 - .../lib/events/sparc_ultra4plus_events.h | 621 - .../src/libpfm4/lib/events/torrent_events.h | 1053 - .../papi_7_0_1/src/libpfm4/lib/pfmlib_amd64.c | 859 - .../src/libpfm4/lib/pfmlib_amd64_fam10h.c | 63 - .../src/libpfm4/lib/pfmlib_amd64_fam11h.c | 61 - .../src/libpfm4/lib/pfmlib_amd64_fam12h.c | 61 - .../src/libpfm4/lib/pfmlib_amd64_fam14h.c | 60 - .../src/libpfm4/lib/pfmlib_amd64_fam15h.c | 85 - .../src/libpfm4/lib/pfmlib_amd64_fam16h.c | 55 - .../src/libpfm4/lib/pfmlib_amd64_fam17h.c | 132 - .../src/libpfm4/lib/pfmlib_amd64_fam19h.c | 84 - .../src/libpfm4/lib/pfmlib_amd64_fam19h_l3.c | 76 - .../src/libpfm4/lib/pfmlib_amd64_k7.c | 60 - .../src/libpfm4/lib/pfmlib_amd64_k8.c | 66 - .../src/libpfm4/lib/pfmlib_amd64_perf_event.c | 194 - .../src/libpfm4/lib/pfmlib_amd64_priv.h | 243 - .../src/libpfm4/lib/pfmlib_amd64_rapl.c | 121 - .../papi_7_0_1/src/libpfm4/lib/pfmlib_arm.c | 361 - .../src/libpfm4/lib/pfmlib_arm_armv6.c | 77 - .../src/libpfm4/lib/pfmlib_arm_armv7_pmuv1.c | 259 - .../src/libpfm4/lib/pfmlib_arm_armv8.c | 615 - .../src/libpfm4/lib/pfmlib_arm_armv9.c | 120 - .../src/libpfm4/lib/pfmlib_arm_perf_event.c | 107 - .../src/libpfm4/lib/pfmlib_arm_priv.h | 107 - .../papi_7_0_1/src/libpfm4/lib/pfmlib_cell.c | 692 - .../src/libpfm4/lib/pfmlib_cell_priv.h | 84 - .../src/libpfm4/lib/pfmlib_common.c | 2495 -- .../src/libpfm4/lib/pfmlib_gen_ia64.c | 511 - .../src/libpfm4/lib/pfmlib_ia64_priv.h | 852 - .../src/libpfm4/lib/pfmlib_intel_atom.c | 86 - .../src/libpfm4/lib/pfmlib_intel_bdw.c | 108 - .../libpfm4/lib/pfmlib_intel_bdx_unc_cbo.c | 134 - .../src/libpfm4/lib/pfmlib_intel_bdx_unc_ha.c | 97 - .../libpfm4/lib/pfmlib_intel_bdx_unc_imc.c | 71 - .../libpfm4/lib/pfmlib_intel_bdx_unc_irp.c | 79 - .../libpfm4/lib/pfmlib_intel_bdx_unc_pcu.c | 98 - .../libpfm4/lib/pfmlib_intel_bdx_unc_qpi.c | 85 - .../libpfm4/lib/pfmlib_intel_bdx_unc_r2pcie.c | 80 - .../libpfm4/lib/pfmlib_intel_bdx_unc_r3qpi.c | 84 - .../libpfm4/lib/pfmlib_intel_bdx_unc_sbo.c | 86 - .../libpfm4/lib/pfmlib_intel_bdx_unc_ubo.c | 81 - .../src/libpfm4/lib/pfmlib_intel_core.c | 81 - .../src/libpfm4/lib/pfmlib_intel_coreduo.c | 83 - .../src/libpfm4/lib/pfmlib_intel_glm.c | 73 - .../src/libpfm4/lib/pfmlib_intel_hsw.c | 108 - .../libpfm4/lib/pfmlib_intel_hswep_unc_cbo.c | 128 - .../libpfm4/lib/pfmlib_intel_hswep_unc_ha.c | 97 - .../libpfm4/lib/pfmlib_intel_hswep_unc_imc.c | 71 - .../libpfm4/lib/pfmlib_intel_hswep_unc_irp.c | 79 - .../libpfm4/lib/pfmlib_intel_hswep_unc_pcu.c | 98 - .../libpfm4/lib/pfmlib_intel_hswep_unc_qpi.c | 84 - .../lib/pfmlib_intel_hswep_unc_r2pcie.c | 80 - .../lib/pfmlib_intel_hswep_unc_r3qpi.c | 84 - .../libpfm4/lib/pfmlib_intel_hswep_unc_sbo.c | 86 - .../libpfm4/lib/pfmlib_intel_hswep_unc_ubo.c | 81 - .../src/libpfm4/lib/pfmlib_intel_icl.c | 119 - .../src/libpfm4/lib/pfmlib_intel_ivb.c | 106 - .../src/libpfm4/lib/pfmlib_intel_ivb_unc.c | 86 - .../libpfm4/lib/pfmlib_intel_ivbep_unc_cbo.c | 125 - .../libpfm4/lib/pfmlib_intel_ivbep_unc_ha.c | 97 - .../libpfm4/lib/pfmlib_intel_ivbep_unc_imc.c | 71 - .../libpfm4/lib/pfmlib_intel_ivbep_unc_irp.c | 79 - .../libpfm4/lib/pfmlib_intel_ivbep_unc_pcu.c | 98 - .../libpfm4/lib/pfmlib_intel_ivbep_unc_qpi.c | 85 - .../lib/pfmlib_intel_ivbep_unc_r2pcie.c | 61 - .../lib/pfmlib_intel_ivbep_unc_r3qpi.c | 65 - .../libpfm4/lib/pfmlib_intel_ivbep_unc_ubo.c | 61 - .../src/libpfm4/lib/pfmlib_intel_knc.c | 61 - .../src/libpfm4/lib/pfmlib_intel_knl.c | 117 - .../libpfm4/lib/pfmlib_intel_knl_unc_cha.c | 134 - .../libpfm4/lib/pfmlib_intel_knl_unc_edc.c | 169 - .../libpfm4/lib/pfmlib_intel_knl_unc_imc.c | 159 - .../libpfm4/lib/pfmlib_intel_knl_unc_m2pcie.c | 112 - .../src/libpfm4/lib/pfmlib_intel_netburst.c | 498 - .../lib/pfmlib_intel_netburst_perf_event.c | 106 - .../libpfm4/lib/pfmlib_intel_netburst_priv.h | 233 - .../src/libpfm4/lib/pfmlib_intel_nhm.c | 173 - .../src/libpfm4/lib/pfmlib_intel_nhm_unc.c | 347 - .../src/libpfm4/lib/pfmlib_intel_p6.c | 178 - .../src/libpfm4/lib/pfmlib_intel_rapl.c | 215 - .../src/libpfm4/lib/pfmlib_intel_skl.c | 174 - .../libpfm4/lib/pfmlib_intel_skx_unc_cha.c | 143 - .../libpfm4/lib/pfmlib_intel_skx_unc_iio.c | 91 - .../libpfm4/lib/pfmlib_intel_skx_unc_imc.c | 69 - .../libpfm4/lib/pfmlib_intel_skx_unc_irp.c | 79 - .../libpfm4/lib/pfmlib_intel_skx_unc_m2m.c | 83 - .../libpfm4/lib/pfmlib_intel_skx_unc_m3upi.c | 84 - .../libpfm4/lib/pfmlib_intel_skx_unc_pcu.c | 98 - .../libpfm4/lib/pfmlib_intel_skx_unc_ubo.c | 81 - .../libpfm4/lib/pfmlib_intel_skx_unc_upi.c | 85 - .../src/libpfm4/lib/pfmlib_intel_slm.c | 76 - .../src/libpfm4/lib/pfmlib_intel_snb.c | 106 - .../src/libpfm4/lib/pfmlib_intel_snb_unc.c | 72 - .../src/libpfm4/lib/pfmlib_intel_snbep_unc.c | 906 - .../libpfm4/lib/pfmlib_intel_snbep_unc_cbo.c | 107 - .../libpfm4/lib/pfmlib_intel_snbep_unc_ha.c | 93 - .../libpfm4/lib/pfmlib_intel_snbep_unc_imc.c | 67 - .../libpfm4/lib/pfmlib_intel_snbep_unc_pcu.c | 96 - .../lib/pfmlib_intel_snbep_unc_perf_event.c | 171 - .../libpfm4/lib/pfmlib_intel_snbep_unc_priv.h | 539 - .../libpfm4/lib/pfmlib_intel_snbep_unc_qpi.c | 84 - .../lib/pfmlib_intel_snbep_unc_r2pcie.c | 61 - .../lib/pfmlib_intel_snbep_unc_r3qpi.c | 64 - .../libpfm4/lib/pfmlib_intel_snbep_unc_ubo.c | 61 - .../src/libpfm4/lib/pfmlib_intel_spr.c | 114 - .../src/libpfm4/lib/pfmlib_intel_tmt.c | 73 - .../src/libpfm4/lib/pfmlib_intel_wsm.c | 111 - .../src/libpfm4/lib/pfmlib_intel_x86.c | 1240 - .../src/libpfm4/lib/pfmlib_intel_x86_arch.c | 217 - .../libpfm4/lib/pfmlib_intel_x86_perf_event.c | 367 - .../src/libpfm4/lib/pfmlib_intel_x86_priv.h | 391 - .../src/libpfm4/lib/pfmlib_itanium.c | 1214 - .../src/libpfm4/lib/pfmlib_itanium2.c | 2153 -- .../src/libpfm4/lib/pfmlib_itanium2_priv.h | 113 - .../src/libpfm4/lib/pfmlib_itanium_priv.h | 94 - .../lib/pfmlib_kunpeng_unc_perf_event.c | 134 - .../papi_7_0_1/src/libpfm4/lib/pfmlib_mips.c | 374 - .../src/libpfm4/lib/pfmlib_mips_74k.c | 82 - .../src/libpfm4/lib/pfmlib_mips_perf_event.c | 117 - .../src/libpfm4/lib/pfmlib_mips_priv.h | 117 - .../src/libpfm4/lib/pfmlib_montecito.c | 2464 -- .../src/libpfm4/lib/pfmlib_montecito_priv.h | 118 - .../src/libpfm4/lib/pfmlib_perf_event.c | 453 - .../src/libpfm4/lib/pfmlib_perf_event_pmu.c | 1129 - .../src/libpfm4/lib/pfmlib_perf_event_priv.h | 57 - .../src/libpfm4/lib/pfmlib_perf_event_raw.c | 179 - .../src/libpfm4/lib/pfmlib_power10.c | 59 - .../src/libpfm4/lib/pfmlib_power4.c | 57 - .../src/libpfm4/lib/pfmlib_power5.c | 88 - .../src/libpfm4/lib/pfmlib_power6.c | 57 - .../src/libpfm4/lib/pfmlib_power7.c | 57 - .../src/libpfm4/lib/pfmlib_power8.c | 60 - .../src/libpfm4/lib/pfmlib_power9.c | 58 - .../src/libpfm4/lib/pfmlib_power_priv.h | 120 - .../src/libpfm4/lib/pfmlib_powerpc.c | 124 - .../src/libpfm4/lib/pfmlib_powerpc_nest.c | 60 - .../libpfm4/lib/pfmlib_powerpc_perf_event.c | 150 - .../src/libpfm4/lib/pfmlib_ppc970.c | 84 - .../papi_7_0_1/src/libpfm4/lib/pfmlib_priv.h | 843 - .../src/libpfm4/lib/pfmlib_s390x_cpumf.c | 413 - .../src/libpfm4/lib/pfmlib_s390x_perf_event.c | 157 - .../src/libpfm4/lib/pfmlib_s390x_priv.h | 16 - .../src/libpfm4/lib/pfmlib_sicortex.c | 731 - .../src/libpfm4/lib/pfmlib_sicortex_priv.h | 138 - .../papi_7_0_1/src/libpfm4/lib/pfmlib_sparc.c | 325 - .../src/libpfm4/lib/pfmlib_sparc_niagara.c | 83 - .../src/libpfm4/lib/pfmlib_sparc_perf_event.c | 89 - .../src/libpfm4/lib/pfmlib_sparc_priv.h | 54 - .../src/libpfm4/lib/pfmlib_sparc_ultra12.c | 56 - .../src/libpfm4/lib/pfmlib_sparc_ultra3.c | 110 - .../src/libpfm4/lib/pfmlib_sparc_ultra4.c | 54 - .../src/libpfm4/lib/pfmlib_torrent.c | 230 - .../libpfm4/lib/pfmlib_tx2_unc_perf_event.c | 115 - thirdparty/papi_7_0_1/src/libpfm4/libpfm.spec | 132 - .../src/libpfm4/perf_examples/Makefile | 86 - .../src/libpfm4/perf_examples/branch_smpl.c | 472 - .../src/libpfm4/perf_examples/evt2raw.c | 102 - .../src/libpfm4/perf_examples/notify_group.c | 222 - .../src/libpfm4/perf_examples/notify_self.c | 276 - .../src/libpfm4/perf_examples/perf_util.c | 808 - .../src/libpfm4/perf_examples/perf_util.h | 163 - .../src/libpfm4/perf_examples/rtop.c | 540 - .../src/libpfm4/perf_examples/self.c | 174 - .../src/libpfm4/perf_examples/self_basic.c | 146 - .../src/libpfm4/perf_examples/self_count.c | 243 - .../src/libpfm4/perf_examples/self_pipe.c | 266 - .../libpfm4/perf_examples/self_smpl_multi.c | 494 - .../src/libpfm4/perf_examples/syst.c | 223 - .../src/libpfm4/perf_examples/syst_count.c | 463 - .../src/libpfm4/perf_examples/syst_smpl.c | 438 - .../src/libpfm4/perf_examples/task.c | 393 - .../perf_examples/task_attach_timeout.c | 196 - .../src/libpfm4/perf_examples/task_cpu.c | 424 - .../src/libpfm4/perf_examples/task_smpl.c | 418 - .../src/libpfm4/perf_examples/x86/Makefile | 60 - .../src/libpfm4/perf_examples/x86/bts_smpl.c | 300 - .../papi_7_0_1/src/libpfm4/python/Makefile | 38 - .../papi_7_0_1/src/libpfm4/python/README | 8 - .../papi_7_0_1/src/libpfm4/python/self.py | 59 - .../papi_7_0_1/src/libpfm4/python/setup.py | 19 - .../src/libpfm4/python/src/__init__.py | 5 - .../papi_7_0_1/src/libpfm4/python/src/pmu.py | 102 - .../src/libpfm4/python/src/session.py | 80 - .../papi_7_0_1/src/libpfm4/python/sys.py | 64 - thirdparty/papi_7_0_1/src/libpfm4/rules.mk | 36 - .../papi_7_0_1/src/libpfm4/tests/Makefile | 78 - .../papi_7_0_1/src/libpfm4/tests/validate.c | 374 - .../src/libpfm4/tests/validate_arm.c | 324 - .../src/libpfm4/tests/validate_arm64.c | 470 - .../src/libpfm4/tests/validate_mips.c | 224 - .../src/libpfm4/tests/validate_perf.c | 130 - .../src/libpfm4/tests/validate_power.c | 328 - .../src/libpfm4/tests/validate_x86.c | 8402 ----- thirdparty/papi_7_0_1/src/linux-bgp-context.h | 14 - thirdparty/papi_7_0_1/src/linux-bgp-lock.h | 4 - thirdparty/papi_7_0_1/src/linux-bgp-memory.c | 72 - .../papi_7_0_1/src/linux-bgp-native-events.h | 472 - thirdparty/papi_7_0_1/src/linux-bgp.c | 966 - thirdparty/papi_7_0_1/src/linux-bgp.h | 70 - thirdparty/papi_7_0_1/src/linux-bgq-common.c | 166 - thirdparty/papi_7_0_1/src/linux-bgq-common.h | 49 - thirdparty/papi_7_0_1/src/linux-bgq-lock.h | 2 - thirdparty/papi_7_0_1/src/linux-bgq-memory.c | 94 - thirdparty/papi_7_0_1/src/linux-bgq.c | 1359 - thirdparty/papi_7_0_1/src/linux-bgq.h | 137 - thirdparty/papi_7_0_1/src/linux-common.c | 821 - thirdparty/papi_7_0_1/src/linux-common.h | 54 - thirdparty/papi_7_0_1/src/linux-context.h | 48 - thirdparty/papi_7_0_1/src/linux-generic.c | 0 thirdparty/papi_7_0_1/src/linux-generic.h | 2 - thirdparty/papi_7_0_1/src/linux-lock.h | 266 - thirdparty/papi_7_0_1/src/linux-memory.c | 1616 - thirdparty/papi_7_0_1/src/linux-memory.h | 4 - thirdparty/papi_7_0_1/src/linux-timer.c | 568 - thirdparty/papi_7_0_1/src/linux-timer.h | 16 - .../papi_7_0_1/src/maint/genpapifdef.pl | 330 - thirdparty/papi_7_0_1/src/mb.h | 71 - thirdparty/papi_7_0_1/src/papi.c | 7507 ----- thirdparty/papi_7_0_1/src/papi.h | 1256 - thirdparty/papi_7_0_1/src/papi.pc.in | 11 - thirdparty/papi_7_0_1/src/papiStdEventDefs.h | 282 - thirdparty/papi_7_0_1/src/papi_bipartite.h | 189 - .../papi_7_0_1/src/papi_common_strings.h | 599 - thirdparty/papi_7_0_1/src/papi_debug.h | 312 - thirdparty/papi_7_0_1/src/papi_events.csv | 2511 -- thirdparty/papi_7_0_1/src/papi_events.xml | 2464 -- .../papi_7_0_1/src/papi_events_table.sh | 19 - thirdparty/papi_7_0_1/src/papi_fwrappers.c | 1871 - thirdparty/papi_7_0_1/src/papi_internal.c | 2797 -- thirdparty/papi_7_0_1/src/papi_internal.h | 525 - .../papi_7_0_1/src/papi_libpfm3_events.c | 840 - .../papi_7_0_1/src/papi_libpfm4_events.c | 157 - .../papi_7_0_1/src/papi_libpfm4_events.h | 46 - .../papi_7_0_1/src/papi_libpfm_events.h | 55 - thirdparty/papi_7_0_1/src/papi_lock.h | 23 - thirdparty/papi_7_0_1/src/papi_memory.c | 486 - thirdparty/papi_7_0_1/src/papi_memory.h | 62 - thirdparty/papi_7_0_1/src/papi_preset.c | 1505 - thirdparty/papi_7_0_1/src/papi_preset.h | 55 - thirdparty/papi_7_0_1/src/papi_vector.c | 350 - thirdparty/papi_7_0_1/src/papi_vector.h | 80 - thirdparty/papi_7_0_1/src/papivi.h | 841 - .../papi_7_0_1/src/perfctr-2.6.x/CHANGES | 1379 - .../papi_7_0_1/src/perfctr-2.6.x/COPYING | 504 - .../papi_7_0_1/src/perfctr-2.6.x/INSTALL | 168 - .../papi_7_0_1/src/perfctr-2.6.x/Makefile | 35 - thirdparty/papi_7_0_1/src/perfctr-2.6.x/OTHER | 95 - .../papi_7_0_1/src/perfctr-2.6.x/README | 116 - thirdparty/papi_7_0_1/src/perfctr-2.6.x/TODO | 42 - .../papi_7_0_1/src/perfctr-2.6.x/etc/Makefile | 19 - .../src/perfctr-2.6.x/etc/costs/Athlon-1.2 | 14 - .../src/perfctr-2.6.x/etc/costs/Athlon-1.46 | 14 - .../src/perfctr-2.6.x/etc/costs/Athlon-1.66 | 15 - .../src/perfctr-2.6.x/etc/costs/Athlon-1000 | 30 - .../src/perfctr-2.6.x/etc/costs/Athlon-500 | 14 - .../src/perfctr-2.6.x/etc/costs/Athlon-700 | 14 - .../src/perfctr-2.6.x/etc/costs/Athlon-850 | 14 - .../src/perfctr-2.6.x/etc/costs/Athlon64-2.0 | 33 - .../perfctr-2.6.x/etc/costs/Core-i7-920-2.66 | 18 - .../src/perfctr-2.6.x/etc/costs/Core2-2.4 | 18 - .../perfctr-2.6.x/etc/costs/Core2-E8400-3.0 | 18 - .../src/perfctr-2.6.x/etc/costs/Duron-750 | 14 - .../src/perfctr-2.6.x/etc/costs/K6-III-400 | 9 - .../src/perfctr-2.6.x/etc/costs/MPC7400-400 | 22 - .../src/perfctr-2.6.x/etc/costs/MPC7447A-1.25 | 22 - .../src/perfctr-2.6.x/etc/costs/MPC7455-1.0 | 22 - .../src/perfctr-2.6.x/etc/costs/Opteron-1.4 | 15 - .../src/perfctr-2.6.x/etc/costs/Opteron-2.4 | 15 - .../perfctr-2.6.x/etc/costs/Opteron-2352-2.1 | 16 - .../perfctr-2.6.x/etc/costs/Opteron-8354-2.2 | 16 - .../perfctr-2.6.x/etc/costs/Opteron-8384-2.7 | 16 - .../src/perfctr-2.6.x/etc/costs/PPC750-300 | 22 - .../src/perfctr-2.6.x/etc/costs/Pentium-133 | 13 - .../src/perfctr-2.6.x/etc/costs/Pentium4-1.5 | 17 - .../src/perfctr-2.6.x/etc/costs/Pentium4-1.6 | 17 - .../src/perfctr-2.6.x/etc/costs/Pentium4-1.7 | 17 - .../src/perfctr-2.6.x/etc/costs/Pentium4-2.0 | 18 - .../src/perfctr-2.6.x/etc/costs/Pentium4-2.26 | 17 - .../src/perfctr-2.6.x/etc/costs/Pentium4-3.0 | 17 - .../perfctr-2.6.x/etc/costs/Pentium4Xeon-2.2 | 17 - .../perfctr-2.6.x/etc/costs/Pentium4Xeon-2.4 | 17 - .../perfctr-2.6.x/etc/costs/Pentium4Xeon-2.8 | 17 - .../perfctr-2.6.x/etc/costs/Pentium4Xeon-3.0 | 19 - .../perfctr-2.6.x/etc/costs/PentiumII-266a | 14 - .../perfctr-2.6.x/etc/costs/PentiumII-266b | 14 - .../src/perfctr-2.6.x/etc/costs/PentiumII-300 | 12 - .../src/perfctr-2.6.x/etc/costs/PentiumII-350 | 14 - .../perfctr-2.6.x/etc/costs/PentiumIII-1.0 | 14 - .../perfctr-2.6.x/etc/costs/PentiumIII-1.4 | 14 - .../perfctr-2.6.x/etc/costs/PentiumIII-450 | 14 - .../perfctr-2.6.x/etc/costs/PentiumIII-800 | 14 - .../perfctr-2.6.x/etc/costs/PentiumIII-933 | 14 - .../etc/costs/PentiumIIIXeon-700 | 14 - .../src/perfctr-2.6.x/etc/costs/PentiumM-2.0 | 15 - .../perfctr-2.6.x/etc/costs/PentiumMMX-166 | 14 - .../perfctr-2.6.x/etc/costs/PentiumMMX-233 | 14 - .../perfctr-2.6.x/etc/costs/PentiumPro-200 | 14 - .../src/perfctr-2.6.x/etc/install.sh | 37 - .../papi_7_0_1/src/perfctr-2.6.x/etc/p4.c | 509 - .../src/perfctr-2.6.x/etc/perfctr.rc | 66 - .../src/perfctr-2.6.x/etc/perfctr.rules | 1 - .../src/perfctr-2.6.x/examples/Makefile | 19 - .../src/perfctr-2.6.x/examples/README | 21 - .../perfctr-2.6.x/examples/global/Makefile | 28 - .../src/perfctr-2.6.x/examples/global/arch.h | 10 - .../src/perfctr-2.6.x/examples/global/arm.c | 24 - .../perfctr-2.6.x/examples/global/global.c | 245 - .../src/perfctr-2.6.x/examples/global/ppc.c | 23 - .../src/perfctr-2.6.x/examples/global/x86.c | 111 - .../perfctr-2.6.x/examples/perfex/Makefile | 30 - .../src/perfctr-2.6.x/examples/perfex/arch.h | 33 - .../src/perfctr-2.6.x/examples/perfex/arm.c | 86 - .../src/perfctr-2.6.x/examples/perfex/arm.h | 7 - .../perfctr-2.6.x/examples/perfex/perfex.c | 551 - .../src/perfctr-2.6.x/examples/perfex/ppc.c | 120 - .../src/perfctr-2.6.x/examples/perfex/ppc.h | 9 - .../src/perfctr-2.6.x/examples/perfex/x86.c | 188 - .../src/perfctr-2.6.x/examples/perfex/x86.h | 11 - .../src/perfctr-2.6.x/examples/self/Makefile | 28 - .../src/perfctr-2.6.x/examples/self/arch.h | 8 - .../src/perfctr-2.6.x/examples/self/arm.c | 24 - .../src/perfctr-2.6.x/examples/self/ppc.c | 23 - .../src/perfctr-2.6.x/examples/self/self.c | 112 - .../src/perfctr-2.6.x/examples/self/x86.c | 85 - .../perfctr-2.6.x/examples/signal/Makefile | 27 - .../src/perfctr-2.6.x/examples/signal/arch.h | 10 - .../src/perfctr-2.6.x/examples/signal/ppc.c | 41 - .../perfctr-2.6.x/examples/signal/signal.c | 157 - .../src/perfctr-2.6.x/examples/signal/x86.c | 124 - .../linux/drivers/perfctr/Kconfig | 91 - .../linux/drivers/perfctr/Makefile | 43 - .../linux/drivers/perfctr/RELEASE-NOTES | 1731 - .../perfctr-2.6.x/linux/drivers/perfctr/arm.c | 905 - .../linux/drivers/perfctr/arm_setup.c | 16 - .../linux/drivers/perfctr/compat.h | 111 - .../linux/drivers/perfctr/cpumask.h | 51 - .../linux/drivers/perfctr/global.c | 261 - .../linux/drivers/perfctr/global.h | 16 - .../linux/drivers/perfctr/init.c | 222 - .../linux/drivers/perfctr/marshal.c | 657 - .../linux/drivers/perfctr/marshal.h | 104 - .../perfctr-2.6.x/linux/drivers/perfctr/ppc.c | 1144 - .../linux/drivers/perfctr/ppc_compat.h | 101 - .../linux/drivers/perfctr/ppc_setup.c | 49 - .../linux/drivers/perfctr/ppc_tests.c | 296 - .../linux/drivers/perfctr/ppc_tests.h | 12 - .../linux/drivers/perfctr/version.h | 1 - .../linux/drivers/perfctr/virtual.c | 1189 - .../linux/drivers/perfctr/virtual.h | 15 - .../linux/drivers/perfctr/virtual_stub.c | 84 - .../perfctr-2.6.x/linux/drivers/perfctr/x86.c | 2527 -- .../linux/drivers/perfctr/x86_compat.h | 55 - .../linux/drivers/perfctr/x86_setup.c | 97 - .../linux/drivers/perfctr/x86_tests.c | 325 - .../linux/drivers/perfctr/x86_tests.h | 31 - .../linux/include/asm-arm/perfctr.h | 170 - .../linux/include/asm-i386/perfctr.h | 1 - .../linux/include/asm-powerpc/perfctr.h | 172 - .../linux/include/asm-ppc/perfctr.h | 1 - .../linux/include/asm-x86/perfctr.h | 235 - .../linux/include/asm-x86_64/perfctr.h | 1 - .../linux/include/linux/perfctr.h | 241 - .../src/perfctr-2.6.x/patches/aliases | 42 - .../perfctr-2.6.x/patches/patch-kernel-2.6.10 | 486 - .../perfctr-2.6.x/patches/patch-kernel-2.6.11 | 488 - .../perfctr-2.6.x/patches/patch-kernel-2.6.12 | 487 - .../perfctr-2.6.x/patches/patch-kernel-2.6.13 | 487 - .../perfctr-2.6.x/patches/patch-kernel-2.6.14 | 487 - .../perfctr-2.6.x/patches/patch-kernel-2.6.15 | 553 - .../perfctr-2.6.x/patches/patch-kernel-2.6.16 | 477 - .../patches/patch-kernel-2.6.16.46-0.12-suse | 495 - .../perfctr-2.6.x/patches/patch-kernel-2.6.17 | 477 - .../perfctr-2.6.x/patches/patch-kernel-2.6.18 | 484 - .../patch-kernel-2.6.18-128.el5-redhat | 495 - .../patch-kernel-2.6.18-164.el5-redhat | 495 - .../patch-kernel-2.6.18-194.el5-redhat | 495 - .../patches/patch-kernel-2.6.18-53.el5-redhat | 495 - .../patch-kernel-2.6.18-8.1.1.el5-redhat | 495 - .../patches/patch-kernel-2.6.18-92.el5-redhat | 495 - .../perfctr-2.6.x/patches/patch-kernel-2.6.19 | 485 - .../perfctr-2.6.x/patches/patch-kernel-2.6.20 | 550 - .../perfctr-2.6.x/patches/patch-kernel-2.6.21 | 549 - .../perfctr-2.6.x/patches/patch-kernel-2.6.22 | 549 - .../perfctr-2.6.x/patches/patch-kernel-2.6.23 | 546 - .../perfctr-2.6.x/patches/patch-kernel-2.6.24 | 532 - .../perfctr-2.6.x/patches/patch-kernel-2.6.25 | 520 - .../perfctr-2.6.x/patches/patch-kernel-2.6.26 | 520 - .../perfctr-2.6.x/patches/patch-kernel-2.6.27 | 463 - .../perfctr-2.6.x/patches/patch-kernel-2.6.28 | 463 - .../perfctr-2.6.x/patches/patch-kernel-2.6.29 | 462 - .../perfctr-2.6.x/patches/patch-kernel-2.6.30 | 476 - .../perfctr-2.6.x/patches/patch-kernel-2.6.31 | 459 - .../perfctr-2.6.x/patches/patch-kernel-2.6.32 | 459 - .../perfctr-2.6.x/patches/patch-kernel-2.6.5 | 528 - .../patches/patch-kernel-2.6.5-7.276-suse | 540 - .../perfctr-2.6.x/patches/patch-kernel-2.6.6 | 529 - .../perfctr-2.6.x/patches/patch-kernel-2.6.7 | 506 - .../patches/patch-kernel-2.6.8.1 | 487 - .../perfctr-2.6.x/patches/patch-kernel-2.6.9 | 486 - .../patches/patch-kernel-2.6.9-55.EL-redhat | 487 - .../patches/patch-kernel-2.6.9-67.EL-redhat | 487 - .../patches/patch-kernel-2.6.9-78.EL-redhat | 487 - .../patches/patch-kernel-2.6.9-89.EL-redhat | 488 - .../papi_7_0_1/src/perfctr-2.6.x/perfctr.spec | 123 - .../src/perfctr-2.6.x/update-kernel | 280 - .../papi_7_0_1/src/perfctr-2.7.x/CHANGES | 1227 - .../papi_7_0_1/src/perfctr-2.7.x/COPYING | 504 - .../papi_7_0_1/src/perfctr-2.7.x/INSTALL | 127 - .../papi_7_0_1/src/perfctr-2.7.x/Makefile | 36 - thirdparty/papi_7_0_1/src/perfctr-2.7.x/OTHER | 95 - .../papi_7_0_1/src/perfctr-2.7.x/README | 127 - thirdparty/papi_7_0_1/src/perfctr-2.7.x/TODO | 44 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.1 | 16 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.133 | 16 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.2 | 14 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.3 | 16 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.33 | 16 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.46 | 14 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.53 | 16 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.64 | 15 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.66 | 29 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.75 | 16 - .../src/perfctr-2.7.x/etc/costs/Athlon-1.8 | 15 - .../src/perfctr-2.7.x/etc/costs/Athlon-1000 | 16 - .../src/perfctr-2.7.x/etc/costs/Athlon-2.0 | 15 - .../src/perfctr-2.7.x/etc/costs/Athlon-500 | 14 - .../src/perfctr-2.7.x/etc/costs/Athlon-700 | 14 - .../src/perfctr-2.7.x/etc/costs/Athlon-800 | 15 - .../src/perfctr-2.7.x/etc/costs/Athlon-850 | 14 - .../src/perfctr-2.7.x/etc/costs/Athlon64-2.0 | 15 - .../src/perfctr-2.7.x/etc/costs/Athlon64-2.2 | 15 - .../perfctr-2.7.x/etc/costs/Athlon64FX-2.2 | 15 - .../src/perfctr-2.7.x/etc/costs/AthlonXP-1800 | 15 - .../perfctr-2.7.x/etc/costs/AthlonXPM-2500 | 15 - .../src/perfctr-2.7.x/etc/costs/C3-1.2 | 15 - .../src/perfctr-2.7.x/etc/costs/Celeron-466 | 16 - .../src/perfctr-2.7.x/etc/costs/Celeron-500 | 15 - .../src/perfctr-2.7.x/etc/costs/CyrixMII-233 | 15 - .../src/perfctr-2.7.x/etc/costs/Duron-1.0 | 15 - .../src/perfctr-2.7.x/etc/costs/Duron-600 | 15 - .../src/perfctr-2.7.x/etc/costs/Duron-700 | 15 - .../src/perfctr-2.7.x/etc/costs/Duron-750 | 14 - .../src/perfctr-2.7.x/etc/costs/K6-III-400 | 9 - .../src/perfctr-2.7.x/etc/costs/MPC7400-400 | 22 - .../src/perfctr-2.7.x/etc/costs/MPC7447A-1.35 | 22 - .../src/perfctr-2.7.x/etc/costs/Opteron-1.4 | 15 - .../src/perfctr-2.7.x/etc/costs/Opteron-1.6 | 16 - .../src/perfctr-2.7.x/etc/costs/Opteron-2.0 | 15 - .../src/perfctr-2.7.x/etc/costs/PPC750-300 | 22 - .../src/perfctr-2.7.x/etc/costs/Pentium-133 | 13 - .../src/perfctr-2.7.x/etc/costs/Pentium4-1.5 | 17 - .../src/perfctr-2.7.x/etc/costs/Pentium4-1.6 | 17 - .../src/perfctr-2.7.x/etc/costs/Pentium4-1.7 | 36 - .../src/perfctr-2.7.x/etc/costs/Pentium4-1.8 | 18 - .../src/perfctr-2.7.x/etc/costs/Pentium4-2.2 | 17 - .../src/perfctr-2.7.x/etc/costs/Pentium4-2.26 | 17 - .../src/perfctr-2.7.x/etc/costs/Pentium4-2.66 | 18 - .../src/perfctr-2.7.x/etc/costs/Pentium4-2.8 | 55 - .../src/perfctr-2.7.x/etc/costs/Pentium4-3.0 | 58 - .../src/perfctr-2.7.x/etc/costs/Pentium4-3.4 | 19 - .../src/perfctr-2.7.x/etc/costs/Pentium4M-1.8 | 17 - .../perfctr-2.7.x/etc/costs/Pentium4Xeon-2.2 | 17 - .../perfctr-2.7.x/etc/costs/Pentium4Xeon-2.4 | 51 - .../perfctr-2.7.x/etc/costs/Pentium4Xeon-2.8 | 35 - .../perfctr-2.7.x/etc/costs/Pentium4Xeon-3.4 | 18 - .../perfctr-2.7.x/etc/costs/PentiumII-266a | 14 - .../perfctr-2.7.x/etc/costs/PentiumII-266b | 14 - .../src/perfctr-2.7.x/etc/costs/PentiumII-300 | 12 - .../src/perfctr-2.7.x/etc/costs/PentiumII-350 | 14 - .../perfctr-2.7.x/etc/costs/PentiumIII-1.0 | 15 - .../perfctr-2.7.x/etc/costs/PentiumIII-1.4 | 14 - .../perfctr-2.7.x/etc/costs/PentiumIII-450 | 28 - .../perfctr-2.7.x/etc/costs/PentiumIII-500 | 27 - .../perfctr-2.7.x/etc/costs/PentiumIII-700 | 31 - .../perfctr-2.7.x/etc/costs/PentiumIII-733 | 15 - .../perfctr-2.7.x/etc/costs/PentiumIII-800 | 15 - .../perfctr-2.7.x/etc/costs/PentiumIII-866 | 14 - .../perfctr-2.7.x/etc/costs/PentiumIII-900 | 29 - .../perfctr-2.7.x/etc/costs/PentiumIII-933 | 28 - .../src/perfctr-2.7.x/etc/costs/PentiumM-1.3 | 46 - .../src/perfctr-2.7.x/etc/costs/PentiumM-1.4 | 15 - .../src/perfctr-2.7.x/etc/costs/PentiumM-1.5 | 31 - .../src/perfctr-2.7.x/etc/costs/PentiumM-1.6 | 16 - .../src/perfctr-2.7.x/etc/costs/PentiumM-1.7 | 15 - .../perfctr-2.7.x/etc/costs/PentiumMMX-150 | 15 - .../perfctr-2.7.x/etc/costs/PentiumMMX-166 | 14 - .../perfctr-2.7.x/etc/costs/PentiumMMX-233 | 14 - .../perfctr-2.7.x/etc/costs/PentiumPro-200 | 14 - .../src/perfctr-2.7.x/etc/costs/Sempron-3100+ | 16 - .../src/perfctr-2.7.x/etc/install.sh | 36 - .../papi_7_0_1/src/perfctr-2.7.x/etc/p4.c | 509 - .../src/perfctr-2.7.x/examples/Makefile | 19 - .../src/perfctr-2.7.x/examples/README | 22 - .../perfctr-2.7.x/examples/global/Makefile | 28 - .../src/perfctr-2.7.x/examples/global/arch.h | 10 - .../perfctr-2.7.x/examples/global/global.c | 245 - .../src/perfctr-2.7.x/examples/global/ppc.c | 23 - .../src/perfctr-2.7.x/examples/global/x86.c | 92 - .../perfctr-2.7.x/examples/perfex/Makefile | 34 - .../src/perfctr-2.7.x/examples/perfex/arch.h | 33 - .../perfctr-2.7.x/examples/perfex/perfex.c | 548 - .../src/perfctr-2.7.x/examples/perfex/ppc.c | 120 - .../src/perfctr-2.7.x/examples/perfex/ppc.h | 9 - .../src/perfctr-2.7.x/examples/perfex/ppc64.c | 125 - .../src/perfctr-2.7.x/examples/perfex/ppc64.h | 4 - .../src/perfctr-2.7.x/examples/perfex/x86.c | 139 - .../src/perfctr-2.7.x/examples/perfex/x86.h | 9 - .../src/perfctr-2.7.x/examples/self/Makefile | 32 - .../src/perfctr-2.7.x/examples/self/arch.h | 8 - .../src/perfctr-2.7.x/examples/self/ppc.c | 23 - .../src/perfctr-2.7.x/examples/self/ppc64.c | 36 - .../src/perfctr-2.7.x/examples/self/self.c | 112 - .../src/perfctr-2.7.x/examples/self/x86.c | 79 - .../perfctr-2.7.x/examples/signal/Makefile | 32 - .../src/perfctr-2.7.x/examples/signal/arch.h | 10 - .../src/perfctr-2.7.x/examples/signal/ppc.c | 41 - .../src/perfctr-2.7.x/examples/signal/ppc64.c | 58 - .../perfctr-2.7.x/examples/signal/signal.c | 148 - .../src/perfctr-2.7.x/examples/signal/x86.c | 100 - .../Documentation/perfctr/low-level-api.txt | 216 - .../Documentation/perfctr/low-level-ppc32.txt | 164 - .../Documentation/perfctr/low-level-x86.txt | 360 - .../linux/Documentation/perfctr/overview.txt | 129 - .../linux/Documentation/perfctr/virtual.txt | 357 - .../linux/drivers/perfctr/Kconfig | 64 - .../linux/drivers/perfctr/Makefile | 26 - .../linux/drivers/perfctr/RELEASE-NOTES | 1650 - .../linux/drivers/perfctr/cpumask.h | 25 - .../linux/drivers/perfctr/init.c | 118 - .../perfctr-2.7.x/linux/drivers/perfctr/ppc.c | 1121 - .../linux/drivers/perfctr/ppc64.c | 750 - .../linux/drivers/perfctr/ppc64_tests.c | 325 - .../linux/drivers/perfctr/ppc64_tests.h | 12 - .../linux/drivers/perfctr/ppc_tests.c | 291 - .../linux/drivers/perfctr/ppc_tests.h | 12 - .../linux/drivers/perfctr/version.h | 1 - .../linux/drivers/perfctr/virtual.c | 1296 - .../linux/drivers/perfctr/virtual.h | 13 - .../perfctr-2.7.x/linux/drivers/perfctr/x86.c | 2131 -- .../linux/drivers/perfctr/x86_tests.c | 302 - .../linux/drivers/perfctr/x86_tests.h | 30 - .../linux/include/asm-i386/perfctr.h | 200 - .../linux/include/asm-ppc/perfctr.h | 174 - .../linux/include/asm-ppc64/perfctr.h | 167 - .../linux/include/asm-x86_64/perfctr.h | 1 - .../linux/include/linux/perfctr.h | 176 - .../perfctr-2.7.x/patches/patch-kernel-2.6.11 | 708 - .../patches/patch-kernel-2.6.12-rc1 | 807 - .../patches/patch-kernel-2.6.12-rc1-mm1 | 106 - .../patches/patch-kernel-2.6.12-rc1-mm3 | 101 - .../patches/patch-kernel-2.6.12-rc1-mm4 | 106 - .../patches/patch-kernel-2.6.12-rc2 | 808 - .../patches/patch-kernel-2.6.12-rc5 | 817 - .../perfctr-2.7.x/patches/patch-kernel-2.6.14 | 848 - .../patches/patch-kernel-2.6.14-mm1 | 799 - .../patches/patch-kernel-2.6.14-rc5-mm1 | 846 - .../perfctr-2.7.x/patches/patch-kernel-2.6.16 | 786 - .../patches/patch-kernel-2.6.16.21-SLES10 | 787 - .../perfctr-2.7.x/patches/patch-kernel-2.6.17 | 745 - .../perfctr-2.7.x/patches/patch-kernel-2.6.18 | 771 - .../patches/patch-kernel-2.6.18-rc4 | 735 - .../perfctr-2.7.x/patches/patch-kernel-2.6.19 | 766 - .../perfctr-2.7.x/patches/patch-kernel-2.6.20 | 766 - .../perfctr-2.7.x/patches/patch-kernel-2.6.21 | 759 - .../perfctr-2.7.x/patches/patch-kernel-2.6.22 | 738 - .../papi_7_0_1/src/perfctr-2.7.x/perfctr.spec | 101 - .../src/perfctr-2.7.x/update-kernel | 232 - thirdparty/papi_7_0_1/src/run_tests.sh | 234 - .../papi_7_0_1/src/run_tests_exclude.txt | 67 - .../papi_7_0_1/src/run_tests_exclude_cuda.txt | 39 - thirdparty/papi_7_0_1/src/sde_lib/Makefile | 26 - thirdparty/papi_7_0_1/src/sde_lib/sde_lib.c | 1267 - thirdparty/papi_7_0_1/src/sde_lib/sde_lib.h | 172 - thirdparty/papi_7_0_1/src/sde_lib/sde_lib.hpp | 200 - .../src/sde_lib/sde_lib_datastructures.c | 563 - .../papi_7_0_1/src/sde_lib/sde_lib_internal.h | 284 - .../papi_7_0_1/src/sde_lib/sde_lib_lock.h | 38 - .../papi_7_0_1/src/sde_lib/sde_lib_misc.c | 584 - .../papi_7_0_1/src/sde_lib/sde_lib_ti.c | 448 - .../papi_7_0_1/src/sde_lib/sde_lib_ti.h | 24 - .../papi_7_0_1/src/smoke_tests/Makefile | 22 - .../papi_7_0_1/src/smoke_tests/simple.c | 69 - .../papi_7_0_1/src/smoke_tests/threads.c | 124 - thirdparty/papi_7_0_1/src/solaris-common.c | 784 - thirdparty/papi_7_0_1/src/solaris-common.h | 68 - thirdparty/papi_7_0_1/src/solaris-context.h | 13 - thirdparty/papi_7_0_1/src/solaris-lock.h | 10 - thirdparty/papi_7_0_1/src/solaris-memory.c | 194 - thirdparty/papi_7_0_1/src/solaris-memory.h | 3 - thirdparty/papi_7_0_1/src/solaris-niagara2.c | 2289 -- thirdparty/papi_7_0_1/src/solaris-niagara2.h | 158 - thirdparty/papi_7_0_1/src/solaris-ultra.c | 1179 - thirdparty/papi_7_0_1/src/solaris-ultra.h | 92 - thirdparty/papi_7_0_1/src/sw_multiplex.c | 1431 - thirdparty/papi_7_0_1/src/sw_multiplex.h | 51 - thirdparty/papi_7_0_1/src/testlib/Makefile | 45 - .../papi_7_0_1/src/testlib/Makefile.target.in | 12 - thirdparty/papi_7_0_1/src/testlib/clockcore.c | 134 - thirdparty/papi_7_0_1/src/testlib/clockcore.h | 5 - thirdparty/papi_7_0_1/src/testlib/do_loops.c | 349 - thirdparty/papi_7_0_1/src/testlib/do_loops.h | 63 - .../papi_7_0_1/src/testlib/fpapi_test.h | 3 - .../papi_7_0_1/src/testlib/ftests_util.F | 305 - thirdparty/papi_7_0_1/src/testlib/papi_test.h | 114 - .../papi_7_0_1/src/testlib/test_utils.c | 842 - thirdparty/papi_7_0_1/src/threads.c | 637 - thirdparty/papi_7_0_1/src/threads.h | 175 - thirdparty/papi_7_0_1/src/utils/Makefile | 82 - .../papi_7_0_1/src/utils/Makefile.target.in | 21 - thirdparty/papi_7_0_1/src/utils/cost_utils.c | 130 - thirdparty/papi_7_0_1/src/utils/cost_utils.h | 11 - thirdparty/papi_7_0_1/src/utils/papi_avail.c | 588 - .../papi_7_0_1/src/utils/papi_clockres.c | 59 - .../papi_7_0_1/src/utils/papi_command_line.c | 175 - .../src/utils/papi_component_avail.c | 191 - thirdparty/papi_7_0_1/src/utils/papi_cost.c | 500 - thirdparty/papi_7_0_1/src/utils/papi_decode.c | 124 - .../papi_7_0_1/src/utils/papi_error_codes.c | 71 - .../papi_7_0_1/src/utils/papi_event_chooser.c | 259 - .../src/utils/papi_hardware_avail.c | 332 - .../src/utils/papi_hybrid_native_avail.c | 548 - .../papi_7_0_1/src/utils/papi_mem_info.c | 124 - .../src/utils/papi_multiplex_cost.c | 688 - .../papi_7_0_1/src/utils/papi_native_avail.c | 702 - .../papi_7_0_1/src/utils/papi_version.c | 35 - .../src/utils/papi_xml_event_info.c | 429 - .../papi_7_0_1/src/utils/print_header.c | 89 - .../papi_7_0_1/src/utils/print_header.h | 2 - .../papi_7_0_1/src/validation_tests/Makefile | 26 - .../src/validation_tests/Makefile.recipies | 127 - .../src/validation_tests/Makefile.target.in | 20 - .../src/validation_tests/branches_testcode.c | 148 - .../src/validation_tests/busy_work.c | 31 - .../src/validation_tests/cache_helper.c | 123 - .../src/validation_tests/cache_helper.h | 9 - .../src/validation_tests/cache_testcode.c | 48 - .../src/validation_tests/cycles_validation.c | 162 - .../src/validation_tests/display_error.c | 31 - .../src/validation_tests/display_error.h | 5 - .../src/validation_tests/flops_testcode.c | 197 - .../src/validation_tests/flops_validation.c | 369 - .../src/validation_tests/fp_validation_hl.c | 52 - .../validation_tests/instructions_testcode.c | 166 - .../src/validation_tests/matrix_multiply.c | 110 - .../src/validation_tests/matrix_multiply.h | 6 - .../src/validation_tests/memleak_check.c | 18 - .../src/validation_tests/papi_br_cn.c | 94 - .../src/validation_tests/papi_br_ins.c | 103 - .../src/validation_tests/papi_br_msp.c | 202 - .../src/validation_tests/papi_br_ntk.c | 94 - .../src/validation_tests/papi_br_prc.c | 226 - .../src/validation_tests/papi_br_tkn.c | 202 - .../src/validation_tests/papi_br_ucn.c | 94 - .../src/validation_tests/papi_dp_ops.c | 200 - .../src/validation_tests/papi_fp_ops.c | 198 - .../src/validation_tests/papi_hw_int.c | 107 - .../src/validation_tests/papi_l1_dca.c | 161 - .../src/validation_tests/papi_l1_dcm.c | 212 - .../src/validation_tests/papi_l2_dca.c | 215 - .../src/validation_tests/papi_l2_dcm.c | 214 - .../src/validation_tests/papi_l2_dcr.c | 194 - .../src/validation_tests/papi_l2_dcw.c | 205 - .../src/validation_tests/papi_ld_ins.c | 186 - .../src/validation_tests/papi_ref_cyc.c | 215 - .../src/validation_tests/papi_sp_ops.c | 200 - .../src/validation_tests/papi_sr_ins.c | 186 - .../src/validation_tests/papi_tot_cyc.c | 201 - .../src/validation_tests/papi_tot_ins.c | 258 - .../src/validation_tests/testcode.h | 31 - .../src/validation_tests/vector_testcode.c | 177 - thirdparty/papi_7_0_1/src/x86_cpuid_info.c | 1530 - thirdparty/papi_7_0_1/src/x86_cpuid_info.h | 6 - 2798 files changed, 78 insertions(+), 972193 deletions(-) delete mode 100644 CMakeLists.txt delete mode 100755 Doxyfile delete mode 100755 buildCPUOnly.sh delete mode 100755 buildWithCuda.sh delete mode 100644 cmake/FindCuda.cmake delete mode 100644 cmake/FindLog4cxx.cmake delete mode 100644 cmake/FindTorch.cmake delete mode 100644 cmake/default.cmake delete mode 100644 cmake/macros.cmake delete mode 100755 commit.sh delete mode 100644 commit_info delete mode 100755 genDoc.sh delete mode 100644 include/CL/CLContainer.hpp delete mode 100644 include/CL/cl.h delete mode 100644 include/CL/cl_d3d10.h delete mode 100644 include/CL/cl_d3d11.h delete mode 100644 include/CL/cl_dx9_media_sharing.h delete mode 100644 include/CL/cl_dx9_media_sharing_intel.h delete mode 100644 include/CL/cl_egl.h delete mode 100644 include/CL/cl_ext.h delete mode 100644 include/CL/cl_ext_intel.h delete mode 100644 include/CL/cl_gl.h delete mode 100644 include/CL/cl_gl_ext.h delete mode 100644 include/CL/cl_half.h delete mode 100644 include/CL/cl_icd.h delete mode 100644 include/CL/cl_layer.h delete mode 100644 include/CL/cl_platform.h delete mode 100644 include/CL/cl_va_api_media_sharing_intel.h delete mode 100644 include/CL/cl_version.h delete mode 100644 include/CL/opencl.h delete mode 100644 include/CPPAlgos/AbstractCPPAlgo.h delete mode 100644 include/CPPAlgos/BCRSCPPAlgo.h delete mode 100644 include/CPPAlgos/BetaCoOFDCPPAlgo.h delete mode 100644 include/CPPAlgos/BlockLRACPPAlgo.h delete mode 100644 include/CPPAlgos/CLMMCPPAlgo.h delete mode 100644 include/CPPAlgos/CPPAlgoTable.h delete mode 100644 include/CPPAlgos/CRSCPPAlgo.h delete mode 100644 include/CPPAlgos/CRSV2CPPAlgo.h delete mode 100644 include/CPPAlgos/CoOccurringFDCPPAlgo.h delete mode 100644 include/CPPAlgos/CountSketchCPPAlgo.h delete mode 100644 include/CPPAlgos/EWSCPPAlgo.h delete mode 100644 include/CPPAlgos/FastJLTCPPAlgo.h delete mode 100644 include/CPPAlgos/INT8CPPAlgo.h delete mode 100644 include/CPPAlgos/ProductQuantizationHash.h delete mode 100644 include/CPPAlgos/ProductQuantizationRaw.h delete mode 100644 include/CPPAlgos/RIPCPPAlgo.h delete mode 100644 include/CPPAlgos/SMPPCACPPAlgo.h delete mode 100644 include/CPPAlgos/TugOfWarCPPAlgo.h delete mode 100644 include/CPPAlgos/VectorQuantization.h delete mode 100644 include/CPPAlgos/WeightedCRCPPAlgo.h delete mode 100755 include/LibAMM.h delete mode 100644 include/MatrixLoader/AbstractMatrixLoader.h delete mode 100644 include/MatrixLoader/BetaMatrixLoader.h delete mode 100644 include/MatrixLoader/BinomialMatrixLoader.h delete mode 100644 include/MatrixLoader/CCAMatrixLoader.h delete mode 100644 include/MatrixLoader/ExponentialMatrixLoader.h delete mode 100644 include/MatrixLoader/GaussianMatrixLoader.h delete mode 100644 include/MatrixLoader/MNISTMatrixLoader.h delete mode 100644 include/MatrixLoader/MatrixLoaderTable.h delete mode 100644 include/MatrixLoader/MediaMillMatrixLoader.h delete mode 100644 include/MatrixLoader/MtxMatrixLoader.h delete mode 100644 include/MatrixLoader/PoissonMatrixLoader.h delete mode 100644 include/MatrixLoader/RandomMatrixLoader.h delete mode 100644 include/MatrixLoader/SIFTMatrixLoader.h delete mode 100644 include/MatrixLoader/SparseMatrixLoader.h delete mode 100644 include/MatrixLoader/ZeroMaskedMatrixLoader.h delete mode 100644 include/MatrixLoader/ZipfMatrixLoader.h delete mode 100644 include/Parallelization/BlockPartitionRunner.h delete mode 100644 include/Streaming/BlockPartitionStreamer.h delete mode 100644 include/Streaming/SingleThreadStreamer.h delete mode 100644 include/Streaming/Streamer.h delete mode 100644 include/Streaming/TimeStamper.h delete mode 100644 include/Utils/AbstractC20Thread.hpp delete mode 100644 include/Utils/BS_thread_pool.hpp delete mode 100644 include/Utils/C20Buffers.hpp delete mode 100644 include/Utils/ConfigMap.hpp delete mode 100755 include/Utils/IntelliLog.h delete mode 100644 include/Utils/Meters/AbstractMeter.hpp delete mode 100644 include/Utils/Meters/EspMeterUart/EspMeterUart.hpp delete mode 100644 include/Utils/Meters/IntelMeter/IntelMeter.hpp delete mode 100644 include/Utils/Meters/MeterTable.h delete mode 100644 include/Utils/MicroDataSet.hpp delete mode 100644 include/Utils/SPSCQueue.hpp delete mode 100644 include/Utils/ThreadPerf.hpp delete mode 100644 include/Utils/ThreadPerfPAPI.hpp delete mode 100755 include/Utils/UtilityFunctions.h delete mode 100644 include/opencl_config.h.in delete mode 100644 include/papi_config.h.in delete mode 100644 include/pybind_config.h.in delete mode 100644 pyproject.toml delete mode 100644 setup.py delete mode 100644 src/CL/CLCRS.cl delete mode 100644 src/CL/CLINT8.cl delete mode 100644 src/CL/CLMM.cl delete mode 100644 src/CLContainer.cpp delete mode 100644 src/CMakeLists.txt delete mode 100644 src/CPPAlgos/AbstractCPPAlgo.cpp delete mode 100644 src/CPPAlgos/BCRSCPPAlgo.cpp delete mode 100644 src/CPPAlgos/BetaCoOFDCPPAlgo.cpp delete mode 100644 src/CPPAlgos/BlockLRACPPAlgo.cpp delete mode 100644 src/CPPAlgos/CLMMCPPAlgo.cpp delete mode 100644 src/CPPAlgos/CMakeLists.txt delete mode 100644 src/CPPAlgos/CPPAlgoTable.cpp delete mode 100644 src/CPPAlgos/CRSCPPAlgo.cpp delete mode 100644 src/CPPAlgos/CRSV2CPPAlgo.cpp delete mode 100644 src/CPPAlgos/CoOccurringFDCPPAlgo.cpp delete mode 100644 src/CPPAlgos/CountSketchCPPAlgo.cpp delete mode 100644 src/CPPAlgos/EWSCPPAlgo.cpp delete mode 100644 src/CPPAlgos/FastJLTCPPAlgo.cpp delete mode 100644 src/CPPAlgos/INT8CPPAlgo.cpp delete mode 100644 src/CPPAlgos/ProductQuantizationHash.cpp delete mode 100644 src/CPPAlgos/ProductQuantizationRaw.cpp delete mode 100644 src/CPPAlgos/RIPCPPAlgo.cpp delete mode 100644 src/CPPAlgos/SMPPCACPPAlgo.cpp delete mode 100644 src/CPPAlgos/TugOfWarCPPAlgo.cpp delete mode 100644 src/CPPAlgos/VectorQuantization.cpp delete mode 100644 src/CPPAlgos/WeightedCRCPPAlgo.cpp delete mode 100644 src/MatrixLoader/AbstractMatrixLoader.cpp delete mode 100644 src/MatrixLoader/BetaMatrixLoader.cpp delete mode 100644 src/MatrixLoader/BinomialMatrixLoader.cpp delete mode 100644 src/MatrixLoader/CCAMatrixLoader.cpp delete mode 100644 src/MatrixLoader/CMakeLists.txt delete mode 100644 src/MatrixLoader/ExponentialMatrixLoader.cpp delete mode 100644 src/MatrixLoader/GaussianMatrixLoader.cpp delete mode 100644 src/MatrixLoader/MNISTMatrixLoader.cpp delete mode 100644 src/MatrixLoader/MatrixLoaderTable.cpp delete mode 100644 src/MatrixLoader/MediaMillMatrixLoader.cpp delete mode 100644 src/MatrixLoader/MtxMatrixLoader.cpp delete mode 100644 src/MatrixLoader/PoissonMatrixLoader.cpp delete mode 100644 src/MatrixLoader/RandomMatrixLoader.cpp delete mode 100644 src/MatrixLoader/SIFTMatrixLoader.cpp delete mode 100644 src/MatrixLoader/SparseMatrixLoader.cpp delete mode 100644 src/MatrixLoader/ZeroMaskedMatrixLoader.cpp delete mode 100644 src/MatrixLoader/ZipfMatrixLoader.cpp delete mode 100644 src/Parallelization/BlockPartitionRunner.cpp delete mode 100644 src/Parallelization/CMakeLists.txt delete mode 100644 src/PyAMM.cpp delete mode 100644 src/Streaming/BlockPartitionStreamer.cpp delete mode 100644 src/Streaming/CMakeLists.txt delete mode 100644 src/Streaming/SingleThreadStreamer.cpp delete mode 100644 src/Streaming/Streamer.cpp delete mode 100644 src/Streaming/TimeStamper.cpp delete mode 100644 src/Utils/CMakeLists.txt delete mode 100755 src/Utils/IntelliLog.cpp delete mode 100644 src/Utils/Meters/AbstractMeter.cpp delete mode 100644 src/Utils/Meters/CMakeLists.txt delete mode 100644 src/Utils/Meters/EspMeterUart/CMakeLists.txt delete mode 100644 src/Utils/Meters/EspMeterUart/EspMeterUart.cpp delete mode 100644 src/Utils/Meters/IntelMeter/CMakeLists.txt delete mode 100644 src/Utils/Meters/IntelMeter/IntelMeter.cpp delete mode 100644 src/Utils/Meters/MeterTable.cpp delete mode 100755 src/Utils/UtilityFunctions.cpp delete mode 100644 src/myVecAdd.cpp delete mode 100644 src/pythonBoundings.cpp delete mode 100644 test/CMakeLists.txt delete mode 100644 test/SystemTest/BlockLRATest.cpp delete mode 100644 test/SystemTest/BlockPartitionTest.cpp delete mode 100644 test/SystemTest/CLTest.cpp delete mode 100644 test/SystemTest/CRSTest.cpp delete mode 100644 test/SystemTest/EWSTest.cpp delete mode 100644 test/SystemTest/FastJLTTest.cpp delete mode 100644 test/SystemTest/INT8Test.cpp delete mode 100644 test/SystemTest/MtxMatrixLoaderTest.cpp delete mode 100644 test/SystemTest/PQTest.cpp delete mode 100644 test/SystemTest/RIPTest.cpp delete mode 100644 test/SystemTest/SMPPCATest.cpp delete mode 100644 test/SystemTest/SRHTTest.cpp delete mode 100644 test/SystemTest/SimpleTest.cpp delete mode 100644 test/SystemTest/SketchTest.cpp delete mode 100644 test/SystemTest/StreamingTest.cpp delete mode 100644 test/SystemTest/TugOfWarTest.cpp delete mode 100644 test/SystemTest/WeightedCRTest.cpp delete mode 100644 test/SystemTest/ZeroMaskedMatrixLoaderTest.cpp delete mode 100644 test/SystemTest/ZipfMatrixLoaderTest.cpp delete mode 100644 test/SystemTest/catch.hpp delete mode 100644 test/SystemTest/catch_reporter_automake.hpp delete mode 100644 test/SystemTest/catch_reporter_sonarqube.hpp delete mode 100644 test/SystemTest/catch_reporter_tap.hpp delete mode 100644 test/SystemTest/catch_reporter_teamcity.hpp delete mode 100644 test/config_IMA.csv delete mode 100644 test/config_Normal.csv delete mode 100644 test/config_fileDataLoader.csv delete mode 100644 test/datasets/toy/README.md delete mode 100644 test/datasets/toy/toy.mtx delete mode 100644 test/scripts/config.csv delete mode 100644 test/scripts/config_CRS.csv delete mode 100644 test/scripts/config_CRSV2.csv delete mode 100644 test/scripts/config_EWS.csv delete mode 100644 test/scripts/config_SRHT.csv delete mode 100644 test/scripts/config_WeightedCR.csv delete mode 100644 test/scripts/config_countSketch.csv delete mode 100644 test/scripts/config_fastJLT.csv delete mode 100644 test/scripts/config_tugOfWar.csv delete mode 100644 test/torchscripts/BernoulliCRS.pt delete mode 100644 test/torchscripts/BernoulliCRS.py delete mode 100644 test/torchscripts/BetaCoOccurringFD.pt delete mode 100644 test/torchscripts/BetaCoOccurringFD.py delete mode 100644 test/torchscripts/CRS.pt delete mode 100644 test/torchscripts/CRSV2.pt delete mode 100644 test/torchscripts/CoOccurringFD.pt delete mode 100644 test/torchscripts/CoOccurringFD.py delete mode 100644 test/torchscripts/ColumnRowSampling.py delete mode 100644 test/torchscripts/ColumnRowSamplingVer2.py delete mode 100644 test/torchscripts/CountSketch.pt delete mode 100644 test/torchscripts/CountSketch.py delete mode 100644 test/torchscripts/E2E_Minist.py delete mode 100644 test/torchscripts/EWS.pt delete mode 100644 test/torchscripts/ElementWiseSampling.py delete mode 100644 test/torchscripts/FDAMM.pt delete mode 100644 test/torchscripts/FDAMM.py delete mode 100644 test/torchscripts/FastJLT.pt delete mode 100644 test/torchscripts/FastJLT.py delete mode 100644 test/torchscripts/PQ/PQ.cpp delete mode 100644 test/torchscripts/PQ/PQ.py delete mode 100644 test/torchscripts/PQ/prototypes.pt delete mode 100644 test/torchscripts/RAWMM.pt delete mode 100644 test/torchscripts/SRHT.pt delete mode 100644 test/torchscripts/SRHT.py delete mode 100644 test/torchscripts/TugOfWar.pt delete mode 100644 test/torchscripts/TugOfWar.py delete mode 120000 test/torchscripts/VQ/columnCodeIndexX.txt delete mode 120000 test/torchscripts/VQ/rowCodeIndexY.txt delete mode 100644 test/torchscripts/WeightedCR.pt delete mode 100644 test/torchscripts/WeightedCR.py delete mode 100644 test/torchscripts/prototypes.pt delete mode 100755 thirdparty/installPAPI.sh delete mode 100755 thirdparty/makeClean.sh delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP400.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP410.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP411.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP412.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP4121.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP413.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP414.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP420.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP421.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP440.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP500.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP501.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP510.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP511.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP520.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP530.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP532.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP540.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP541.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP543.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP550.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP551.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP560.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP570.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP600.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP700.txt delete mode 100644 thirdparty/papi_7_0_1/ChangeLogP701.txt delete mode 100644 thirdparty/papi_7_0_1/INSTALL.txt delete mode 100644 thirdparty/papi_7_0_1/LICENSE.txt delete mode 100644 thirdparty/papi_7_0_1/PAPI_FAQ.html delete mode 100644 thirdparty/papi_7_0_1/README.md delete mode 100644 thirdparty/papi_7_0_1/RELEASENOTES.txt delete mode 100644 thirdparty/papi_7_0_1/bitbucket-pipelines.yml delete mode 100755 thirdparty/papi_7_0_1/delete_before_release.sh delete mode 100755 thirdparty/papi_7_0_1/gitlog2changelog.py delete mode 100644 thirdparty/papi_7_0_1/man/Makefile delete mode 100644 thirdparty/papi_7_0_1/man/README delete mode 100644 thirdparty/papi_7_0_1/man/man1/PAPI_derived_event_files.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_avail.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_clockres.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_command_line.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_component_avail.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_cost.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_decode.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_error_codes.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_event_chooser.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_hardware_avail.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_hybrid_native_avail.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_mem_info.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_multiplex_cost.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_native_avail.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_version.1 delete mode 100644 thirdparty/papi_7_0_1/man/man1/papi_xml_event_info.1 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_accum.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_add_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_add_events.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_add_named_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_assign_eventset_component.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_cleanup_eventset.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_create_eventset.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_destroy_eventset.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_enum_dev_type.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_enum_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_epc.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_event_code_to_name.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_event_name_to_code.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_flips_rate.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_flops_rate.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_clockrate.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_dev_attr.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_dev_type_attr.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_dmem_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_domain.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_event_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_exe_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_granularity.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_hardware_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_multiplex.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_preload.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_real_cyc.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_real_nsec.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_real_usec.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_virt_cyc.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_get_virt_usec.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_ipc.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_is_initialized.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_library_init.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_lock.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_multiplex_init.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_num_cmp_hwctrs.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_num_events.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_num_hwctrs.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_perror.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_query_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_query_named_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_rate_stop.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_read.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_read_ts.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_register_thread.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_remove_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_remove_events.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_remove_named_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_reset.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_set_cmp_domain.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_set_cmp_granularity.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_set_debug.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_set_domain.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_set_event_domain.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_set_granularity.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_set_inherit.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_set_multiplex.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_shutdown.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_start.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_state.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_stop.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_thread_id.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_thread_init.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_unlock.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_unregister_thread.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIF_write.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_accum.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_add_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_add_events.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_add_named_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_addr_range_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_address_map_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_all_thr_spec_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_assign_eventset_component.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_attach.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_attach_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_cleanup_eventset.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_component_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_cpu_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_create_eventset.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_debug_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_destroy_eventset.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_detach.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_disable_component.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_disable_component_by_name.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_dmem_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_domain_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_enum_cmp_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_enum_dev_type.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_enum_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_epc.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_event_code_to_name.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_event_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_event_name_to_code.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_exe_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_flips_rate.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_flops_rate.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_cmp_opt.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_component_index.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_component_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_dev_attr.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_dev_type_attr.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_dmem_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_event_component.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_event_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_eventset_component.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_executable_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_hardware_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_multiplex.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_opt.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_overflow_event_index.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_real_cyc.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_real_nsec.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_real_usec.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_shared_lib_info.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_thr_specific.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_virt_cyc.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_virt_nsec.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_get_virt_usec.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_granularity_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_hl_read.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_hl_region_begin.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_hl_region_end.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_hl_stop.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_hw_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_inherit_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_ipc.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_is_initialized.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_itimer_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_library_init.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_list_events.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_list_threads.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_lock.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_mh_cache_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_mh_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_mh_level_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_mh_tlb_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_mpx_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_multiplex_init.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_multiplex_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_num_cmp_hwctrs.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_num_components.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_num_events.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_num_hwctrs.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_option_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_overflow.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_perror.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_preload_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_profil.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_query_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_query_named_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_rate_stop.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_read.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_read_ts.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_register_thread.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_remove_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_remove_events.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_remove_named_event.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_reset.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_set_cmp_domain.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_set_cmp_granularity.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_set_debug.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_set_domain.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_set_granularity.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_set_multiplex.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_set_opt.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_set_thr_specific.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_shlib_info_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_shutdown.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_sprofil.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_sprofil_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_start.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_state.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_stop.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_strerror.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_thread_id.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_thread_init.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_unlock.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_unregister_thread.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPI_write.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIf_hl_read.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIf_hl_region_begin.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIf_hl_region_end.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/PAPIf_hl_stop.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/RateInfo.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/binary_tree_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/components_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/local_components_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/reads_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/regions_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/threads_t.3 delete mode 100644 thirdparty/papi_7_0_1/man/man3/value_t.3 delete mode 100644 thirdparty/papi_7_0_1/papi.spec delete mode 100644 thirdparty/papi_7_0_1/release_procedure.txt delete mode 100644 thirdparty/papi_7_0_1/src/.indent.pro delete mode 100755 thirdparty/papi_7_0_1/src/CreatePresetTbl.sh delete mode 100644 thirdparty/papi_7_0_1/src/INSTALL delete mode 100644 thirdparty/papi_7_0_1/src/Makefile.in delete mode 100644 thirdparty/papi_7_0_1/src/Makefile.inc delete mode 100644 thirdparty/papi_7_0_1/src/Matlab/PAPI.m delete mode 100644 thirdparty/papi_7_0_1/src/Matlab/PAPIInnerProduct.m delete mode 100644 thirdparty/papi_7_0_1/src/Matlab/PAPIMatrixMatrix.m delete mode 100644 thirdparty/papi_7_0_1/src/Matlab/PAPIMatrixVector.m delete mode 100755 thirdparty/papi_7_0_1/src/Matlab/PAPI_Matlab.c delete mode 100755 thirdparty/papi_7_0_1/src/Matlab/PAPI_Matlab.readme delete mode 100644 thirdparty/papi_7_0_1/src/README delete mode 100644 thirdparty/papi_7_0_1/src/Rules.bgpm delete mode 100644 thirdparty/papi_7_0_1/src/Rules.perfctr delete mode 100644 thirdparty/papi_7_0_1/src/Rules.perfctr-pfm delete mode 100644 thirdparty/papi_7_0_1/src/Rules.perfmon2 delete mode 100644 thirdparty/papi_7_0_1/src/Rules.perfnec delete mode 100644 thirdparty/papi_7_0_1/src/Rules.pfm delete mode 100644 thirdparty/papi_7_0_1/src/Rules.pfm4_pe delete mode 100644 thirdparty/papi_7_0_1/src/aix-context.h delete mode 100644 thirdparty/papi_7_0_1/src/aix-lock.h delete mode 100644 thirdparty/papi_7_0_1/src/aix-memory.c delete mode 100644 thirdparty/papi_7_0_1/src/aix.c delete mode 100644 thirdparty/papi_7_0_1/src/aix.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/ao_version.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/generalize-arithm.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/generalize-arithm.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/generalize-small.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/generalize-small.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/generalize.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/README delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/all_acquire_release_volatile.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/all_aligned_atomic_load_store.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/all_atomic_load_store.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/all_atomic_only_load.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/ao_t_is_int.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/ao_t_is_int.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/armcc/arm_v6.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/emul_cas.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/aarch64.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/alpha.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/arm.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/avr32.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/cris.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/e2k.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/generic-arithm.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/generic-arithm.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/generic-small.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/generic-small.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/generic.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/hexagon.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/hppa.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/m68k.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/mips.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/riscv.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/s390.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/sh.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/tile.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/gcc/x86.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/generic_pthread.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/hpc/hppa.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/hpc/ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/ibmc/powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/icc/ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/acquire_release_volatile.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/acquire_release_volatile.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/atomic_load.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/atomic_load.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/atomic_store.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/atomic_store.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/char_acquire_release_volatile.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/char_atomic_load.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/char_atomic_store.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/double_atomic_load_store.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/int_acquire_release_volatile.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/int_atomic_load.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/int_atomic_store.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/ordered_loads_only.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/ordered_loads_only.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/ordered_stores_only.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/ordered_stores_only.template delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/short_acquire_release_volatile.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/short_atomic_load.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/loadstore/short_atomic_store.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/msftc/arm.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/msftc/arm64.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/msftc/common32_defs.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/msftc/x86.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/msftc/x86_64.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/ordered.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/ordered_except_wr.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/read_ordered.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/standard_ao_double_t.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/sunc/sparc.S delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/sunc/sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/sunc/x86.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/test_and_set_t_is_ao_t.h delete mode 100644 thirdparty/papi_7_0_1/src/atomic_ops/sysdeps/test_and_set_t_is_char.h delete mode 100755 thirdparty/papi_7_0_1/src/buildbot_configure_with_components.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/Makefile_comp_tests delete mode 100644 thirdparty/papi_7_0_1/src/components/Makefile_comp_tests.target.in delete mode 100644 thirdparty/papi_7_0_1/src/components/README delete mode 100644 thirdparty/papi_7_0_1/src/components/Rules.components delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/CHANGES delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/Rules.appio delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/appio.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/appio.h delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_list_events.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_test_blocking.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_test_fread_fwrite.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_test_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_test_read_write.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_test_recv.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_test_seek.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_test_select.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_test_socket.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_values_by_code.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/appio_values_by_name.c delete mode 100644 thirdparty/papi_7_0_1/src/components/appio/tests/init_fini.c delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/CNKunit/Rules.CNKunit delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/CNKunit/linux-CNKunit.c delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/CNKunit/linux-CNKunit.h delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/IOunit/Rules.IOunit delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/IOunit/linux-IOunit.c delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/IOunit/linux-IOunit.h delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/L2unit/Rules.L2unit delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/L2unit/linux-L2unit.c delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/L2unit/linux-L2unit.h delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/NWunit/Rules.NWunit delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/NWunit/linux-NWunit.c delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/NWunit/linux-NWunit.h delete mode 100644 thirdparty/papi_7_0_1/src/components/bgpm/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp/Rules.coretemp delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp/linux-coretemp.c delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp/linux-coretemp.h delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp/tests/coretemp_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp/tests/coretemp_pretty.c delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp_freebsd/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp_freebsd/Rules.coretemp_freebsd delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp_freebsd/coretemp_freebsd.c delete mode 100644 thirdparty/papi_7_0_1/src/components/coretemp_freebsd/coretemp_freebsd.h delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/Rules.cuda delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/linux-cuda.c delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/sampling/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/sampling/README delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/sampling/activity.c delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/sampling/gpu_activity.c delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/sampling/path.h.in delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/sampling/test/matmul.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/sampling/test/sass_source_map.cubin delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/BlackScholes.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/BlackScholes_gold.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/BlackScholes_kernel.cuh delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/NsightEclipse.xml delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/README_SETUP.txt delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/readme.txt delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/testAllEvents.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/testSomeEvents.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/BlackScholes/thr_BlackScholes.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/HelloWorld.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/HelloWorld_CUPTI11.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/HelloWorld_NP_Ctx.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/LDLIB.src delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/cudaTest_cupti_only.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/cuda_ld_preload_example.README delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/cuda_ld_preload_example.c delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/cupti_multi_kernel_launch_monitoring.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/likeComp_cupti_only.cu delete mode 100755 thirdparty/papi_7_0_1/src/components/cuda/tests/nvlink_all.cu delete mode 100755 thirdparty/papi_7_0_1/src/components/cuda/tests/nvlink_bandwidth.cu delete mode 100755 thirdparty/papi_7_0_1/src/components/cuda/tests/nvlink_bandwidth_cupti_only.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/runAll.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/runBW.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/runCO.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/runCTCO.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/runSMG.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/simpleMultiGPU.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/simpleMultiGPU.h delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/simpleMultiGPU_CUPTI11.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/test_multipass_event_fail.c delete mode 100644 thirdparty/papi_7_0_1/src/components/cuda/tests/timer.h delete mode 100644 thirdparty/papi_7_0_1/src/components/emon/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/emon/Rules.emon delete mode 100644 thirdparty/papi_7_0_1/src/components/emon/linux-emon.c delete mode 100644 thirdparty/papi_7_0_1/src/components/example/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/example/Rules.example delete mode 100644 thirdparty/papi_7_0_1/src/components/example/example.c delete mode 100644 thirdparty/papi_7_0_1/src/components/example/example.h delete mode 100644 thirdparty/papi_7_0_1/src/components/example/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/example/tests/example_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/example/tests/example_multiple_components.c delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/Makefile.host_micpower.in delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/Rules.host_micpower delete mode 100755 thirdparty/papi_7_0_1/src/components/host_micpower/configure delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/configure.ac delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/linux-host_micpower.c delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/tests/host_micpower_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/utils/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/utils/README delete mode 100644 thirdparty/papi_7_0_1/src/components/host_micpower/utils/host_micpower_plot.c delete mode 100644 thirdparty/papi_7_0_1/src/components/infiniband/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/infiniband/Rules.infiniband delete mode 100644 thirdparty/papi_7_0_1/src/components/infiniband/linux-infiniband.c delete mode 100644 thirdparty/papi_7_0_1/src/components/infiniband/pscanf.h delete mode 100644 thirdparty/papi_7_0_1/src/components/infiniband/tests/MPI_test_infiniband_events.c delete mode 100644 thirdparty/papi_7_0_1/src/components/infiniband/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/infiniband/tests/infiniband_list_events.c delete mode 100644 thirdparty/papi_7_0_1/src/components/infiniband/tests/infiniband_values_by_code.c delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/Rules.intel_gpu delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/internal/inc/GPUMetricHandler.h delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/internal/inc/GPUMetricInterface.h delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/internal/src/GPUMetricHandler.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/internal/src/GPUMetricInterface.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/linux_intel_gpu_metrics.c delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/linux_intel_gpu_metrics.h delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/tests/gemm.spv delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/tests/gpu_common_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/tests/gpu_common_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/tests/gpu_metric_list.c delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/tests/gpu_metric_read.c delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/tests/gpu_query_gemm.cc delete mode 100644 thirdparty/papi_7_0_1/src/components/intel_gpu/tests/readme.txt delete mode 100644 thirdparty/papi_7_0_1/src/components/io/CHANGES delete mode 100644 thirdparty/papi_7_0_1/src/components/io/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/io/Rules.io delete mode 100644 thirdparty/papi_7_0_1/src/components/io/linux-io.c delete mode 100644 thirdparty/papi_7_0_1/src/components/io/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/io/tests/io_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/libmsr/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/libmsr/Rules.libmsr delete mode 100644 thirdparty/papi_7_0_1/src/components/libmsr/linux-libmsr.c delete mode 100644 thirdparty/papi_7_0_1/src/components/libmsr/tests/ICL_TESTING_NOTES.txt delete mode 100644 thirdparty/papi_7_0_1/src/components/libmsr/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/libmsr/tests/libmsr_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/libmsr/utils/README delete mode 100755 thirdparty/papi_7_0_1/src/components/libmsr/utils/libmsr_write_test.c delete mode 100755 thirdparty/papi_7_0_1/src/components/libmsr/utils/libmsr_write_test.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/lmsensors/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/lmsensors/Rules.lmsensors delete mode 100644 thirdparty/papi_7_0_1/src/components/lmsensors/linux-lmsensors.c delete mode 100644 thirdparty/papi_7_0_1/src/components/lustre/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/lustre/Rules.lustre delete mode 100644 thirdparty/papi_7_0_1/src/components/lustre/fake_proc/fs/lustre/llite/hpcdata-ffff81022a732800/read_ahead_stats delete mode 100644 thirdparty/papi_7_0_1/src/components/lustre/fake_proc/fs/lustre/llite/hpcdata-ffff81022a732800/stats delete mode 100644 thirdparty/papi_7_0_1/src/components/lustre/linux-lustre.c delete mode 100644 thirdparty/papi_7_0_1/src/components/lustre/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/lustre/tests/lustre_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/micpower/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/micpower/Rules.micpower delete mode 100644 thirdparty/papi_7_0_1/src/components/micpower/linux-micpower.c delete mode 100644 thirdparty/papi_7_0_1/src/components/micpower/linux-micpower.h delete mode 100644 thirdparty/papi_7_0_1/src/components/micpower/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/micpower/tests/micpower_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/mx/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/mx/Rules.mx delete mode 100644 thirdparty/papi_7_0_1/src/components/mx/linux-mx.c delete mode 100644 thirdparty/papi_7_0_1/src/components/mx/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/mx/tests/mx_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/mx/tests/mx_elapsed.c delete mode 100644 thirdparty/papi_7_0_1/src/components/mx/utils/fake_mx_counters.c delete mode 100644 thirdparty/papi_7_0_1/src/components/mx/utils/sample_output delete mode 100644 thirdparty/papi_7_0_1/src/components/net/CHANGES delete mode 100644 thirdparty/papi_7_0_1/src/components/net/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/net/Rules.net delete mode 100644 thirdparty/papi_7_0_1/src/components/net/linux-net.c delete mode 100644 thirdparty/papi_7_0_1/src/components/net/linux-net.h delete mode 100644 thirdparty/papi_7_0_1/src/components/net/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/net/tests/net_list_events.c delete mode 100644 thirdparty/papi_7_0_1/src/components/net/tests/net_values_by_code.c delete mode 100644 thirdparty/papi_7_0_1/src/components/net/tests/net_values_by_name.c delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/PeakConfigure.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/Rules.nvml delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/linux-nvml.c delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/linux-nvml.h delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/tests/HelloWorld.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/tests/benchSANVML.c delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/tests/force_init.h delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/tests/nvml_power_limit_read_test.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/tests/nvml_power_limiting_test.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/utils/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/utils/README delete mode 100644 thirdparty/papi_7_0_1/src/components/nvml/utils/nvmlcap_plot.cu delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/Rules.pcp delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/linux-pcp.c delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/tests/Makefile2 delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/tests/README_BenchTesting.txt delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/tests/benchPCP.c delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/tests/benchPCP_script.sh delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/tests/benchStats.c delete mode 100644 thirdparty/papi_7_0_1/src/components/pcp/tests/testPCP.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/Rules.perf_event delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/pe_libpfm4_events.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/pe_libpfm4_events.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/perf_event_lib.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/perf_helpers.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/tests/broken_events.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/tests/event_name_lib.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/tests/event_name_lib.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/tests/nmi_watchdog.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/tests/perf_event_offcore_response.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/tests/perf_event_system_wide.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event/tests/perf_event_user_kernel.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/Rules.perf_event_uncore delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/perf_event_uncore.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/tests/perf_event_amd_northbridge.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/tests/perf_event_uncore.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/tests/perf_event_uncore_attach.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/tests/perf_event_uncore_cbox.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/tests/perf_event_uncore_lib.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/tests/perf_event_uncore_lib.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perf_event_uncore/tests/perf_event_uncore_multiple.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr/Rules.perfctr delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr/perfctr-x86.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr/perfctr-x86.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr/perfctr.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/Rules.perfctr_ppc delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/linux-ppc64.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/perfctr-ppc64.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/perfctr-ppc64.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/power5+_events.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/power5+_events_map.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/power5_events.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/power5_events_map.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/power6_events.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/power6_events_map.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/power7_events.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/ppc64_events.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/ppc64_events.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/ppc970_events.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfctr_ppc/ppc970_events_map.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfmon2/Rules.perfmon2 delete mode 100644 thirdparty/papi_7_0_1/src/components/perfmon2/perfmon.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfmon2/perfmon.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfmon_ia64/Rules.perfmon_ia64 delete mode 100644 thirdparty/papi_7_0_1/src/components/perfmon_ia64/perfmon-ia64.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfmon_ia64/perfmon-ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/components/perfnec/Rules.perfnec delete mode 100644 thirdparty/papi_7_0_1/src/components/perfnec/perfmon.c delete mode 100644 thirdparty/papi_7_0_1/src/components/perfnec/perfnec.h delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/Rules.powercap delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/linux-powercap.c delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/tests/powercap_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/tests/powercap_basic_read.c delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/tests/powercap_basic_readwrite.c delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/tests/powercap_limit.c delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/utils/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/utils/README delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap/utils/powercap_plot.c delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap_ppc/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap_ppc/Rules.powercap_ppc delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap_ppc/linux-powercap-ppc.c delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap_ppc/linux-powercap-ppc.h delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap_ppc/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap_ppc/tests/powercap_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/powercap_ppc/tests/powercap_limit.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/Rules.rapl delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/linux-rapl.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/tests/rapl_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/tests/rapl_overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/utils/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/utils/README delete mode 100644 thirdparty/papi_7_0_1/src/components/rapl/utils/rapl_plot.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/Rules.rocm delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/common.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/htable.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/rocd.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/rocd.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/rocm.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/rocp.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/rocp.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/common.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/hl_intercept_multi_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/hl_intercept_single_kernel_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/hl_intercept_single_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/hl_sample_single_kernel_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/hl_sample_single_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/intercept_multi_kernel_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/intercept_multi_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/intercept_single_kernel_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/intercept_single_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/matmul.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/matmul.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/multi_kernel_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/multi_kernel_monitoring.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/multi_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/multi_thread_monitoring.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/sample_multi_kernel_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/sample_multi_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/sample_overflow_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/sample_single_kernel_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/sample_single_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/single_thread_monitoring.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm/tests/single_thread_monitoring.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/Rules.rocm_smi delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/htable.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/linux-rocm-smi.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/rocs.c delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/rocs.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/tests/force_init.h delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/tests/power_monitor_rocm.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/tests/rocm_command_line.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/tests/rocm_smi_all.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/tests/rocm_smi_writeTests.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/rocm_smi/tests/rocmsmi_example.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/Rules.sde delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/sde.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/sde_F.F90 delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/sde_internal.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Advanced_C+FORTRAN/Gamum.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Advanced_C+FORTRAN/Xandria.F90 delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Advanced_C+FORTRAN/sde_test_f08.F90 delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Counting_Set/CountingSet_Lib++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Counting_Set/CountingSet_Lib.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Counting_Set/MemoryLeak_CountingSet_Driver++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Counting_Set/MemoryLeak_CountingSet_Driver.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Counting_Set/Simple_CountingSet_Driver++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Counting_Set/Simple_CountingSet_Driver.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Counting_Set/cset_lib.hpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Created_Counter/Created_Counter_Driver++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Created_Counter/Created_Counter_Driver.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Created_Counter/Lib_With_Created_Counter++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Created_Counter/Lib_With_Created_Counter.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Created_Counter/Overflow_Driver.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Minimal/Minimal_Test++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Minimal/Minimal_Test.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/README.txt delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Recorder/Lib_With_Recorder++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Recorder/Lib_With_Recorder.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Recorder/Recorder_Driver++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Recorder/Recorder_Driver.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Simple/Simple_Driver.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Simple/Simple_Lib.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Simple2/Simple2_Driver++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Simple2/Simple2_Driver.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Simple2/Simple2_Lib++.cpp delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Simple2/Simple2_Lib.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/Simple2/Simple2_NoPAPI_Driver.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sde/tests/lib/.gitignore delete mode 100644 thirdparty/papi_7_0_1/src/components/sensors_ppc/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/sensors_ppc/Rules.sensors_ppc delete mode 100644 thirdparty/papi_7_0_1/src/components/sensors_ppc/linux-sensors-ppc.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sensors_ppc/linux-sensors-ppc.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sensors_ppc/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/sensors_ppc/tests/sensors_ppc_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/stealtime/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/stealtime/Rules.stealtime delete mode 100644 thirdparty/papi_7_0_1/src/components/stealtime/linux-stealtime.c delete mode 100644 thirdparty/papi_7_0_1/src/components/stealtime/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/stealtime/tests/stealtime_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/Rules.sysdetect delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/amd_gpu.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/amd_gpu.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/arm_cpu_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/arm_cpu_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/cpu.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/cpu.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/cpu_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/cpu_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/linux_cpu_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/linux_cpu_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/nvidia_gpu.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/nvidia_gpu.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/os_cpu_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/os_cpu_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/powerpc_cpu_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/powerpc_cpu_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/sysdetect.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/sysdetect.h delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/tests/query_device_mpi.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/tests/query_device_simple.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/tests/query_device_simple_f.F delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/x86_cpu_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/components/sysdetect/x86_cpu_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/components/vmware/Makefile.vmware.in delete mode 100644 thirdparty/papi_7_0_1/src/components/vmware/README.md delete mode 100644 thirdparty/papi_7_0_1/src/components/vmware/Rules.vmware delete mode 100644 thirdparty/papi_7_0_1/src/components/vmware/VMwareComponentDocument.txt delete mode 100755 thirdparty/papi_7_0_1/src/components/vmware/configure delete mode 100644 thirdparty/papi_7_0_1/src/components/vmware/configure.in delete mode 100644 thirdparty/papi_7_0_1/src/components/vmware/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/components/vmware/tests/vmware_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/components/vmware/vmware.c delete mode 100644 thirdparty/papi_7_0_1/src/config.h.in delete mode 100755 thirdparty/papi_7_0_1/src/configure delete mode 100644 thirdparty/papi_7_0_1/src/configure.in delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/.cat_cfg delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/README delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/branch.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/branch.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/caches.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/cat_arch.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/compar.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/dcache.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/dcache.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/driver.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/event_list.txt delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/eventstock.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/eventstock.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/flops.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/flops.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/gen_seq_dlopen.sh delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/hw_desc.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/icache.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/icache.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/instr.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/instructions.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/main.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/params.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/prepareArray.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/prepareArray.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/replicate.sh delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/scripts/README.txt delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/scripts/default.gnp delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/scripts/multi_plot.gnp delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/scripts/process_dcache_output.sh delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/scripts/sample_data/L2_RQSTS:ALL_DEMAND_REFERENCES.data.reads.stat delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/scripts/sample_data/L2_RQSTS:DEMAND_DATA_RD_HIT.data.reads.stat delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/scripts/sample_data/L2_RQSTS:DEMAND_DATA_RD_MISS.data.reads.stat delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/scripts/single_plot.gnp delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/timing_kernels.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/timing_kernels.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec_fma_dp.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec_fma_hp.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec_fma_sp.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec_nonfma_dp.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec_nonfma_hp.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec_nonfma_sp.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec_scalar_verify.c delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/vec_scalar_verify.h delete mode 100644 thirdparty/papi_7_0_1/src/counter_analysis_toolkit/weak_symbols.c delete mode 100644 thirdparty/papi_7_0_1/src/cpus.c delete mode 100644 thirdparty/papi_7_0_1/src/cpus.h delete mode 100644 thirdparty/papi_7_0_1/src/ctests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/ctests/Makefile.recipies delete mode 100644 thirdparty/papi_7_0_1/src/ctests/Makefile.target.in delete mode 100644 thirdparty/papi_7_0_1/src/ctests/all_events.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/all_native_events.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/attach2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/attach3.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/attach_cpu.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/attach_cpu_sys_validate.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/attach_cpu_validate.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/attach_target.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/attach_validate.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/branches.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/burn.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/byte_profile.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/calibrate.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/case1.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/case2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/child_overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/clockres_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/cmpinfo.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/code2name.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/data_range.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/derived.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/describe.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/destroy.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/disable_component.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/dmem_info.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/earprofile.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/eventname.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/exec.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/exec2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/exec_overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/exeinfo.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/failed_events.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/filter_helgrind.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/first.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/fork.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/fork2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/fork_overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/forkexec.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/forkexec2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/forkexec3.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/forkexec4.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/get_event_component.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/hwinfo.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/inherit.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/johnmay2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/krentel_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/krentel_pthreads_race.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/kufrin.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/locks_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/low-level.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/max_multiplex.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/memory.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/mendes-alt.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/mpi_hl.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/mpi_omp_hl.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/mpifirst.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/multiattach.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/multiattach2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/multiplex1.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/multiplex1_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/multiplex2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/multiplex3_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/native.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/net-mpi-test/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/ctests/net-mpi-test/cpi.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/net-mpi-test/cpi.pbs delete mode 100644 thirdparty/papi_7_0_1/src/ctests/nineth.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/omp_hl.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/omptough.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow3_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow_allcounters.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow_force_software.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow_index.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow_one_and_read.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow_single_event.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow_twoevents.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/overflow_values.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/p4_lst_ins.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/pernode.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/prof_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/prof_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/ctests/profile.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/profile_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/profile_twoevents.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/pthread_hl.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/pthrtough.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/pthrtough2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/realtime.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/remove_events.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/reset.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/reset_multiplex.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/sdsc-mpx.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/sdsc2.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/sdsc4-mpx.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/second.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/serial_hl.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/serial_hl_ll_comb.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/shlib.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/sprofile.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/system_child_overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/system_overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/tenth.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/thrspecific.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/timer_overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/val_omp.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/version.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/virttime.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero_attach.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero_flip.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero_fork.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero_named.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero_omp.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero_shmem.c delete mode 100644 thirdparty/papi_7_0_1/src/ctests/zero_smp.c delete mode 100644 thirdparty/papi_7_0_1/src/darwin-common.c delete mode 100644 thirdparty/papi_7_0_1/src/darwin-common.h delete mode 100644 thirdparty/papi_7_0_1/src/darwin-context.h delete mode 100644 thirdparty/papi_7_0_1/src/darwin-lock.h delete mode 100644 thirdparty/papi_7_0_1/src/darwin-memory.c delete mode 100644 thirdparty/papi_7_0_1/src/darwin-memory.h delete mode 100644 thirdparty/papi_7_0_1/src/event_data/power4/events delete mode 100644 thirdparty/papi_7_0_1/src/event_data/power4/groups delete mode 100644 thirdparty/papi_7_0_1/src/event_data/power5+/events delete mode 100644 thirdparty/papi_7_0_1/src/event_data/power5+/groups delete mode 100644 thirdparty/papi_7_0_1/src/event_data/power5/events delete mode 100644 thirdparty/papi_7_0_1/src/event_data/power5/groups delete mode 100644 thirdparty/papi_7_0_1/src/event_data/ppc970/events delete mode 100644 thirdparty/papi_7_0_1/src/event_data/ppc970/groups delete mode 100644 thirdparty/papi_7_0_1/src/examples/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/examples/Makefile.AIX delete mode 100644 thirdparty/papi_7_0_1/src/examples/Makefile.IRIX64 delete mode 100644 thirdparty/papi_7_0_1/src/examples/Makefile.OSF1 delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_add_remove_event.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_add_remove_events.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_epc.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_flips.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_flops.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_get_executable_info.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_get_opt.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_get_real_cyc.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_get_virt_cyc.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_hw_info.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_ipc.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_mix_hl_ll.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_mix_hl_rate.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_mix_ll_rate.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_overflow.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_perror.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_profil.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_reset.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_set_domain.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/PAPI_state.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/README delete mode 100644 thirdparty/papi_7_0_1/src/examples/add_event/Papi_add_env_event.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/high_level.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/locks_pthreads.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/multiplex.c delete mode 100644 thirdparty/papi_7_0_1/src/examples/overflow_pthreads.c delete mode 100755 thirdparty/papi_7_0_1/src/examples/run_examples.sh delete mode 100644 thirdparty/papi_7_0_1/src/examples/sprofile.c delete mode 100644 thirdparty/papi_7_0_1/src/extras.c delete mode 100644 thirdparty/papi_7_0_1/src/extras.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd-context.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd-lock.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd-memory.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd-memory.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-atom.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-atom.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-core.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-core.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-core2-extreme.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-core2-extreme.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-core2.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-core2.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-i7.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-i7.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-k7.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-k7.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-k8.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-k8.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p4.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p4.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6-2.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6-2.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6-3.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6-3.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6-c.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6-c.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6-m.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6-m.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-p6.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-unknown.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-unknown.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-westmere.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map-westmere.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map.c delete mode 100644 thirdparty/papi_7_0_1/src/freebsd/map.h delete mode 100644 thirdparty/papi_7_0_1/src/freebsd_events.csv delete mode 100644 thirdparty/papi_7_0_1/src/ftests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/ftests/Makefile.recipies delete mode 100644 thirdparty/papi_7_0_1/src/ftests/Makefile.target.in delete mode 100644 thirdparty/papi_7_0_1/src/ftests/accum.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/avail.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/case1.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/case2.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/clockres.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/cost.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/description.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/eventname.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/fdmemtest.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/first.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/fmatrixlowpapi.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/fmultiplex1.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/fmultiplex2.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/johnmay2.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/nineth.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/openmp.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/second.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/serial_hl.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/strtest.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/tenth.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/zero.F delete mode 100644 thirdparty/papi_7_0_1/src/ftests/zeronamed.F delete mode 100644 thirdparty/papi_7_0_1/src/high-level/papi_hl.c delete mode 100755 thirdparty/papi_7_0_1/src/high-level/scripts/papi_hl_output_writer.py delete mode 100644 thirdparty/papi_7_0_1/src/libpapi.exp delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/COPYRIGHT delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/ChangeLog delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/README delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/TODO delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/config.mk delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_amd64.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_atom.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_core.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_itanium.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_itanium2.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_montecito.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_nehalem.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_p6.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_powerpc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/libpfm_westmere.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_dispatch_events.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_find_event.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_find_event_bycode.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_find_event_bycode_next.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_find_event_mask.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_find_full_event.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_force_pmu.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_cycle_event.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_event_code.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_event_code_counter.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_event_counters.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_event_description.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_event_mask_code.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_event_mask_description.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_event_mask_name.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_event_name.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_full_event_name.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_hw_counter_width.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_impl_counters.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_impl_pmcs.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_impl_pmds.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_inst_retired.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_max_event_name_len.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_num_counters.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_num_events.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_num_pmcs.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_num_pmds.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_pmu_name.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_pmu_name_bytype.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_pmu_type.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_get_version.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_initialize.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_list_supported_pmus.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_pmu_is_supported.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_regmask_and.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_regmask_clr.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_regmask_copy.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_regmask_eq.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_regmask_isset.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_regmask_or.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_regmask_set.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_regmask_weight.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_set_options.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/docs/man3/pfm_strerror.3 delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_compat.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_crayx2.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_default_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_dfl_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_i386.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_mips64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_nec.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_pebs_core_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_pebs_p4_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_pebs_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_v2.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/perfmon_x86_64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_amd64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_cell.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_comp.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_comp_crayx2.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_comp_i386.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_comp_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_comp_mips64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_comp_powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_comp_sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_comp_x86_64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_core.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_coreduo.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_crayx2.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_gen_ia32.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_gen_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_gen_mips64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_i386_p6.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_intel_atom.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_intel_nhm.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_itanium.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_itanium2.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_montecito.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_os.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_os_crayx2.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_os_i386.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_os_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_os_mips64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_os_powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_os_sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_os_x86_64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_pentium4.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_sicortex.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/include/perfmon/pfmlib_sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/amd64_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/amd64_events_fam10h.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/amd64_events_fam15h.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/amd64_events_k7.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/amd64_events_k8.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/cell_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/core_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/coreduo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/crayx2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/gen_ia32_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/gen_mips64_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/i386_p6_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/intel_atom_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/intel_corei7_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/intel_corei7_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/intel_wsm_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/intel_wsm_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/itanium2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/itanium_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/montecito_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/niagara1_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/niagara2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pentium4_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_amd64.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_amd64_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_cell.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_cell_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_common.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_core.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_core_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_coreduo.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_coreduo_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_crayx2.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_crayx2_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_gen_ia32.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_gen_ia32_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_gen_ia64.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_gen_mips64.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_gen_mips64_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_gen_powerpc.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_i386_p6.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_i386_p6_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_intel_atom.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_intel_atom_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_intel_nhm.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_intel_nhm_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_itanium.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_itanium2.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_itanium2_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_itanium_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_montecito.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_montecito_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_os_linux.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_os_linux_v2.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_os_linux_v3.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_os_macos.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_pentium4.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_pentium4_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_power4_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_power5+_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_power5_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_power6_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_power7_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_power_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_powerpc_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_ppc970_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_ppc970mp_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_priv.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_priv_comp.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_priv_comp_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_priv_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_sicortex.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_sicortex_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_sparc.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/pfmlib_sparc_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/power4_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/power5+_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/power5_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/power6_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/power7_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/powerpc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/powerpc_reg.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/ppc970_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/ppc970mp_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/ultra12_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/ultra3_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/ultra3i_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/ultra3plus_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/lib/ultra4plus_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/libpfms/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/libpfms/include/libpfms.h delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/libpfms/lib/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/libpfms/lib/libpfms.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/libpfms/syst_smp.c delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/python/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/python/README delete mode 100755 thirdparty/papi_7_0_1/src/libperfnec/python/self.py delete mode 100755 thirdparty/papi_7_0_1/src/libperfnec/python/setup.py delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/python/src/__init__.py delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/python/src/perfmon_int.i delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/python/src/pmu.py delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/python/src/session.py delete mode 100755 thirdparty/papi_7_0_1/src/libperfnec/python/sys.py delete mode 100644 thirdparty/papi_7_0_1/src/libperfnec/rules.mk delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/COPYRIGHT delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/ChangeLog delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/README delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/TODO delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/config.mk delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_amd64.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_atom.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_core.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_itanium.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_itanium2.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_montecito.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_nehalem.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_p6.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_powerpc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/libpfm_westmere.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_dispatch_events.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_find_event.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_find_event_bycode.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_find_event_bycode_next.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_find_event_mask.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_find_full_event.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_force_pmu.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_cycle_event.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_event_code.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_event_code_counter.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_event_counters.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_event_description.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_event_mask_code.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_event_mask_description.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_event_mask_name.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_event_name.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_full_event_name.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_hw_counter_width.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_impl_counters.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_impl_pmcs.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_impl_pmds.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_inst_retired.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_max_event_name_len.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_num_counters.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_num_events.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_num_pmcs.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_num_pmds.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_pmu_name.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_pmu_name_bytype.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_pmu_type.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_get_version.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_initialize.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_list_supported_pmus.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_pmu_is_supported.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_regmask_and.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_regmask_clr.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_regmask_copy.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_regmask_eq.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_regmask_isset.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_regmask_or.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_regmask_set.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_regmask_weight.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_set_options.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/docs/man3/pfm_strerror.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita2_btb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita2_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita2_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita2_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita2_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita_btb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/ita_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/mont_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/mont_etb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/mont_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/mont_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/mont_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/multiplex.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/notify_self.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/notify_self2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/notify_self3.c delete mode 100755 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/notify_self_fork.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/self.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/showreset.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/syst.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/task.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/task_attach.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/task_attach_timeout.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/task_smpl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_ia64_v2.0/whichpmu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/check_events.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/detect_pmcs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/detect_pmcs.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita2_btb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita2_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita2_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita2_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita2_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita_btb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/ita_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/mont_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/mont_etb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/mont_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/mont_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/ia64/mont_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/multiplex.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/multiplex2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/notify_self.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/notify_self2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/notify_self3.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/notify_self_fork.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/pfmsetup.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/rtop.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/self.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/self_pipe.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/self_smpl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/self_smpl_multi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/self_view.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/set_notify.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/showevtinfo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/showreginfo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/syst.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/syst_multi_np.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/syst_np.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/task.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/task_attach.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/task_attach_timeout.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/task_attach_timeout_np.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/task_smpl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/task_smpl_user.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/whichpmu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/x86/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/x86/smpl_amd64_ibs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/x86/smpl_core_pebs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/x86/smpl_nhm_lbr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/x86/smpl_p4_pebs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v2.x/x86/smpl_pebs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/check_events.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/detect_pmcs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/detect_pmcs.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita2_btb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita2_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita2_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita2_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita2_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita_btb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/ita_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/mont_dear.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/mont_etb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/mont_irr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/mont_opcode.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/ia64/mont_rr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/multiplex.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/multiplex2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/notify_self.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/notify_self2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/notify_self3.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/notify_self_fork.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/pfmsetup.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/rtop.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/self.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/self_pipe.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/self_smpl_multi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/set_notify.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/showevtinfo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/showreginfo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/syst.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/task.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/task_attach.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/task_attach_timeout.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/task_smpl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/task_smpl_user.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/whichpmu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/x86/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/x86/smpl_amd64_ibs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/x86/smpl_core_pebs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/x86/smpl_core_pebs_sys.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/examples_v3.x/x86/smpl_p4_pebs.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_compat.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_crayx2.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_default_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_dfl_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_i386.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_mips64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_pebs_core_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_pebs_p4_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_pebs_smpl.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_v2.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/perfmon_x86_64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_amd64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_cell.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_comp.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_comp_crayx2.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_comp_i386.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_comp_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_comp_mips64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_comp_powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_comp_sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_comp_x86_64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_core.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_coreduo.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_crayx2.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_gen_ia32.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_gen_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_gen_mips64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_i386_p6.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_intel_atom.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_intel_nhm.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_itanium.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_itanium2.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_montecito.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_os.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_os_crayx2.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_os_i386.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_os_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_os_mips64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_os_powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_os_sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_os_x86_64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_pentium4.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_powerpc.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_sicortex.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/include/perfmon/pfmlib_sparc.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/amd64_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/amd64_events_fam10h.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/amd64_events_fam15h.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/amd64_events_k7.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/amd64_events_k8.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/cell_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/core_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/coreduo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/crayx2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/gen_ia32_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/gen_mips64_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/i386_p6_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/intel_atom_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/intel_corei7_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/intel_corei7_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/intel_wsm_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/intel_wsm_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/itanium2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/itanium_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/montecito_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/niagara1_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/niagara2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pentium4_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_amd64.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_amd64_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_cell.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_cell_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_common.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_core.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_core_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_coreduo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_coreduo_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_crayx2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_crayx2_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_gen_ia32.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_gen_ia32_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_gen_ia64.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_gen_mips64.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_gen_mips64_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_gen_powerpc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_i386_p6.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_i386_p6_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_intel_atom.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_intel_atom_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_intel_nhm.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_intel_nhm_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_itanium.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_itanium2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_itanium2_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_itanium_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_montecito.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_montecito_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_os_linux.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_os_linux_v2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_os_linux_v3.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_os_macos.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_pentium4.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_pentium4_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_power4_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_power5+_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_power5_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_power6_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_power7_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_power_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_powerpc_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_ppc970_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_ppc970mp_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_priv.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_priv_comp.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_priv_comp_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_priv_ia64.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_sicortex.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_sicortex_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_sparc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/pfmlib_sparc_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/power4_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/power5+_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/power5_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/power6_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/power7_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/powerpc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/powerpc_reg.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/ppc970_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/ppc970mp_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/ultra12_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/ultra3_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/ultra3i_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/ultra3plus_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/lib/ultra4plus_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/libpfms/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/libpfms/include/libpfms.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/libpfms/lib/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/libpfms/lib/libpfms.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/libpfms/syst_smp.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/python/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/python/README delete mode 100755 thirdparty/papi_7_0_1/src/libpfm-3.y/python/self.py delete mode 100755 thirdparty/papi_7_0_1/src/libpfm-3.y/python/setup.py delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/python/src/__init__.py delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/python/src/perfmon_int.i delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/python/src/pmu.py delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/python/src/session.py delete mode 100755 thirdparty/papi_7_0_1/src/libpfm-3.y/python/sys.py delete mode 100644 thirdparty/papi_7_0_1/src/libpfm-3.y/rules.mk delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/.gitignore delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/COPYING delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/README delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/config.mk delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/README delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/README.source delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/changelog delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/compat delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/control delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/copyright delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/docs delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/libpfm4-dev.dirs delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/libpfm4-dev.install delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/libpfm4-dev.manpages delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/libpfm4.install delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/python-libpfm4.install delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/pyversions delete mode 100755 thirdparty/papi_7_0_1/src/libpfm4/debian/rules delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/debian/source/format delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_fam10h.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_fam15h.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_fam16h.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_fam17h.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_fam17h_zen2.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_fam19h_zen3.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_fam19h_zen3_l3.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_fam19h_zen4.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_k7.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_amd64_k8.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_a64fx.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_ac15.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_ac53.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_ac57.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_ac7.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_ac8.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_ac9.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_neoverse_n1.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_neoverse_n2.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_neoverse_v1.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_neoverse_v2.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_qcom_krait.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_arm_xgene.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_atom.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdw.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_cbo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_ha.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_imc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_irp.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_pcu.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_qpi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_r2pcie.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_r3qpi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_sbo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_bdx_unc_ubo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_core.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_coreduo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_emr.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_glm.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hsw.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_cbo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_ha.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_imc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_irp.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_pcu.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_qpi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_r2pcie.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_r3qpi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_sbo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_hswep_unc_ubo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_icl.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_icx.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivb.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivb_unc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_cbo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_ha.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_imc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_irp.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_pcu.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_qpi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_r2pcie.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_r3qpi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_ivbep_unc_ubo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_knc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_knl.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_knm.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_nhm.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_nhm_unc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_p6.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_rapl.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skl.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_cha.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_iio.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_imc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_irp.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_m2m.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_m3upi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_pcu.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_ubo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_skx_unc_upi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_slm.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snb.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snb_unc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snbep_unc_cbo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snbep_unc_ha.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snbep_unc_imc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snbep_unc_pcu.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snbep_unc_qpi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snbep_unc_r2pcie.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snbep_unc_r3qpi.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_snbep_unc_ubo.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_spr.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_tmt.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_wsm.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_wsm_unc.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_intel_x86_arch.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_mips_74k.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/libpfm_perf_event_raw.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_find_event.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_get_event_attr_info.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_get_event_encoding.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_get_event_info.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_get_event_next.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_get_os_event_encoding.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_get_perf_event_encoding.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_get_pmu_info.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_get_version.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_initialize.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_strerror.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/docs/man3/pfm_terminate.3 delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/examples/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/examples/check_events.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/examples/showevtinfo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/include/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/libpfm4/include/perfmon/err.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/include/perfmon/perf_event.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/include/perfmon/pfmlib.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/include/perfmon/pfmlib_perf_event.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam10h.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam11h.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam12h.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam14h.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam15h.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam15h_nb.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam16h.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam17h_zen1.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam17h_zen2.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam19h_zen3.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam19h_zen3_l3.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_fam19h_zen4.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_k7.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/amd64_events_k8.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_1176_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_cavium_tx2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_cortex_a15_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_cortex_a53_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_cortex_a57_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_cortex_a7_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_cortex_a8_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_cortex_a9_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_fujitsu_a64fx_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_hisilicon_kunpeng_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_hisilicon_kunpeng_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_marvell_tx2_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_neoverse_n1_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_neoverse_n2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_neoverse_v1_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_neoverse_v2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_qcom_krait_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/arm_xgene_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/cell_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_atom_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdw_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_cbo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_ha_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_imc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_irp_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_pcu_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_qpi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_r2pcie_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_r3qpi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_sbo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_bdx_unc_ubo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_core_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_coreduo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_glm_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hsw_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_cbo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_ha_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_imc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_irp_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_pcu_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_qpi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_r2pcie_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_r3qpi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_sbo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_hswep_unc_ubo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_icl_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivb_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_cbo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_ha_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_imc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_irp_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_pcu_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_qpi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_r2pcie_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_r3qpi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ivbep_unc_ubo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_knc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_knl_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_knl_unc_cha_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_knl_unc_edc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_knl_unc_imc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_knl_unc_m2pcie_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_netburst_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_nhm_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_nhm_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_p6_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_pii_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_pm_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_ppro_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skl_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_cha_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_iio_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_imc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_irp_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_m2m_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_m3upi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_pcu_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_ubo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_skx_unc_upi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_slm_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snb_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snb_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snbep_unc_cbo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snbep_unc_ha_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snbep_unc_imc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snbep_unc_pcu_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snbep_unc_qpi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snbep_unc_r2pcie_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snbep_unc_r3qpi_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_snbep_unc_ubo_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_spr_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_tmt_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_wsm_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_wsm_unc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/intel_x86_arch_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/itanium2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/itanium_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/mips_74k_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/montecito_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/perf_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/power10_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/power4_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/power5+_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/power5_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/power6_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/power7_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/power8_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/power9_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/powerpc_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/powerpc_nest_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/ppc970_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/ppc970mp_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/s390x_cpumf_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/sparc_niagara1_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/sparc_niagara2_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/sparc_ultra12_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/sparc_ultra3_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/sparc_ultra3i_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/sparc_ultra3plus_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/sparc_ultra4plus_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/events/torrent_events.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam10h.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam11h.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam12h.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam14h.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam15h.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam16h.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam17h.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam19h.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_fam19h_l3.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_k7.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_k8.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_amd64_rapl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_arm.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_arm_armv6.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_arm_armv7_pmuv1.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_arm_armv8.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_arm_armv9.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_arm_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_arm_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_cell.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_cell_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_common.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_gen_ia64.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_ia64_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_atom.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdw.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_cbo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_ha.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_imc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_irp.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_pcu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_qpi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_r2pcie.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_r3qpi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_sbo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_bdx_unc_ubo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_core.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_coreduo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_glm.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hsw.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_cbo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_ha.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_imc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_irp.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_pcu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_qpi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_r2pcie.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_r3qpi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_sbo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_hswep_unc_ubo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_icl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivb_unc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_cbo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_ha.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_imc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_irp.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_pcu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_qpi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_r2pcie.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_r3qpi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_ivbep_unc_ubo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_knc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_knl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_knl_unc_cha.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_knl_unc_edc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_knl_unc_imc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_knl_unc_m2pcie.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_netburst.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_netburst_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_netburst_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_nhm.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_nhm_unc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_p6.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_rapl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_cha.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_iio.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_imc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_irp.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_m2m.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_m3upi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_pcu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_ubo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_skx_unc_upi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_slm.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snb.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snb_unc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_cbo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_ha.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_imc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_pcu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_qpi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_r2pcie.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_r3qpi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_snbep_unc_ubo.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_spr.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_tmt.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_wsm.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_x86.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_x86_arch.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_x86_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_intel_x86_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_itanium.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_itanium2.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_itanium2_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_itanium_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_kunpeng_unc_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_mips.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_mips_74k.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_mips_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_mips_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_montecito.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_montecito_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_perf_event_pmu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_perf_event_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_perf_event_raw.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_power10.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_power4.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_power5.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_power6.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_power7.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_power8.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_power9.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_power_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_powerpc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_powerpc_nest.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_powerpc_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_ppc970.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_s390x_cpumf.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_s390x_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_s390x_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sicortex.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sicortex_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sparc.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sparc_niagara.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sparc_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sparc_priv.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sparc_ultra12.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sparc_ultra3.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_sparc_ultra4.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_torrent.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/lib/pfmlib_tx2_unc_perf_event.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/libpfm.spec delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/branch_smpl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/evt2raw.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/notify_group.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/notify_self.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/perf_util.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/perf_util.h delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/rtop.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/self.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/self_basic.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/self_count.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/self_pipe.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/self_smpl_multi.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/syst.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/syst_count.c delete mode 100755 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/syst_smpl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/task.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/task_attach_timeout.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/task_cpu.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/task_smpl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/x86/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/perf_examples/x86/bts_smpl.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/python/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/python/README delete mode 100755 thirdparty/papi_7_0_1/src/libpfm4/python/self.py delete mode 100755 thirdparty/papi_7_0_1/src/libpfm4/python/setup.py delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/python/src/__init__.py delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/python/src/pmu.py delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/python/src/session.py delete mode 100755 thirdparty/papi_7_0_1/src/libpfm4/python/sys.py delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/rules.mk delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/tests/validate.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/tests/validate_arm.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/tests/validate_arm64.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/tests/validate_mips.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/tests/validate_perf.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/tests/validate_power.c delete mode 100644 thirdparty/papi_7_0_1/src/libpfm4/tests/validate_x86.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgp-context.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgp-lock.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgp-memory.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgp-native-events.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgp.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgp.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgq-common.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgq-common.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgq-lock.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgq-memory.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgq.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-bgq.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-common.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-common.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-context.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-generic.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-generic.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-lock.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-memory.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-memory.h delete mode 100644 thirdparty/papi_7_0_1/src/linux-timer.c delete mode 100644 thirdparty/papi_7_0_1/src/linux-timer.h delete mode 100755 thirdparty/papi_7_0_1/src/maint/genpapifdef.pl delete mode 100644 thirdparty/papi_7_0_1/src/mb.h delete mode 100644 thirdparty/papi_7_0_1/src/papi.c delete mode 100644 thirdparty/papi_7_0_1/src/papi.h delete mode 100644 thirdparty/papi_7_0_1/src/papi.pc.in delete mode 100644 thirdparty/papi_7_0_1/src/papiStdEventDefs.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_bipartite.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_common_strings.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_debug.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_events.csv delete mode 100644 thirdparty/papi_7_0_1/src/papi_events.xml delete mode 100644 thirdparty/papi_7_0_1/src/papi_events_table.sh delete mode 100644 thirdparty/papi_7_0_1/src/papi_fwrappers.c delete mode 100644 thirdparty/papi_7_0_1/src/papi_internal.c delete mode 100644 thirdparty/papi_7_0_1/src/papi_internal.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_libpfm3_events.c delete mode 100644 thirdparty/papi_7_0_1/src/papi_libpfm4_events.c delete mode 100644 thirdparty/papi_7_0_1/src/papi_libpfm4_events.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_libpfm_events.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_lock.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_memory.c delete mode 100644 thirdparty/papi_7_0_1/src/papi_memory.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_preset.c delete mode 100644 thirdparty/papi_7_0_1/src/papi_preset.h delete mode 100644 thirdparty/papi_7_0_1/src/papi_vector.c delete mode 100644 thirdparty/papi_7_0_1/src/papi_vector.h delete mode 100644 thirdparty/papi_7_0_1/src/papivi.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/CHANGES delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/COPYING delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/INSTALL delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/OTHER delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/README delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/TODO delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Athlon-1.2 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Athlon-1.46 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Athlon-1.66 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Athlon-1000 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Athlon-500 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Athlon-700 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Athlon-850 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Athlon64-2.0 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Core-i7-920-2.66 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Core2-2.4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Core2-E8400-3.0 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Duron-750 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/K6-III-400 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/MPC7400-400 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/MPC7447A-1.25 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/MPC7455-1.0 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Opteron-1.4 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Opteron-2.4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Opteron-2352-2.1 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Opteron-8354-2.2 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Opteron-8384-2.7 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PPC750-300 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium-133 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4-1.5 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4-1.6 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4-1.7 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4-2.0 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4-2.26 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4-3.0 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4Xeon-2.2 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4Xeon-2.4 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4Xeon-2.8 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/Pentium4Xeon-3.0 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumII-266a delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumII-266b delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumII-300 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumII-350 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumIII-1.0 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumIII-1.4 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumIII-450 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumIII-800 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumIII-933 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumIIIXeon-700 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumM-2.0 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumMMX-166 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumMMX-233 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/costs/PentiumPro-200 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/install.sh delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/p4.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/perfctr.rc delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/etc/perfctr.rules delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/README delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/global/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/global/arch.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/global/arm.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/global/global.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/global/ppc.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/global/x86.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/arch.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/arm.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/arm.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/perfex.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/ppc.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/ppc.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/x86.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/perfex/x86.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/self/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/self/arch.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/self/arm.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/self/ppc.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/self/self.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/self/x86.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/signal/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/signal/arch.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/signal/ppc.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/signal/signal.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/examples/signal/x86.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/Kconfig delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/Makefile delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/RELEASE-NOTES delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/arm.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/arm_setup.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/compat.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/cpumask.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/global.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/global.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/init.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/marshal.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/marshal.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/ppc.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/ppc_compat.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/ppc_setup.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/ppc_tests.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/ppc_tests.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/version.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/virtual.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/virtual.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/virtual_stub.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/x86.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/x86_compat.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/x86_setup.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/x86_tests.c delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/drivers/perfctr/x86_tests.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/include/asm-arm/perfctr.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/include/asm-i386/perfctr.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/include/asm-powerpc/perfctr.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/include/asm-ppc/perfctr.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/include/asm-x86/perfctr.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/include/asm-x86_64/perfctr.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/linux/include/linux/perfctr.h delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/aliases delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.10 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.11 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.12 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.13 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.14 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.15 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.16 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.16.46-0.12-suse delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.17 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.18 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.18-128.el5-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.18-164.el5-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.18-194.el5-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.18-53.el5-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.18-8.1.1.el5-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.18-92.el5-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.19 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.20 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.21 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.22 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.23 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.24 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.25 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.26 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.27 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.28 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.29 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.30 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.31 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.32 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.5 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.5-7.276-suse delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.6 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.7 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.8.1 delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.9 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.9-55.EL-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.9-67.EL-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.9-78.EL-redhat delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.6.x/patches/patch-kernel-2.6.9-89.EL-redhat delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/perfctr.spec delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.6.x/update-kernel delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/CHANGES delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/COPYING delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/INSTALL delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/OTHER delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/README delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/TODO delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.1 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.133 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.2 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.3 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.33 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.46 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.53 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.64 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.66 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.75 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1.8 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-1000 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-2.0 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-500 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-700 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-800 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon-850 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon64-2.0 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon64-2.2 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Athlon64FX-2.2 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/AthlonXP-1800 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/AthlonXPM-2500 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/C3-1.2 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Celeron-466 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Celeron-500 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/CyrixMII-233 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Duron-1.0 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Duron-600 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Duron-700 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Duron-750 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/K6-III-400 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/MPC7400-400 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/MPC7447A-1.35 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Opteron-1.4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Opteron-1.6 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Opteron-2.0 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PPC750-300 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium-133 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-1.5 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-1.6 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-1.7 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-1.8 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-2.2 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-2.26 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-2.66 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-2.8 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-3.0 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4-3.4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4M-1.8 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4Xeon-2.2 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4Xeon-2.4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4Xeon-2.8 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Pentium4Xeon-3.4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumII-266a delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumII-266b delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumII-300 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumII-350 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-1.0 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-1.4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-450 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-500 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-700 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-733 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-800 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-866 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-900 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumIII-933 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumM-1.3 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumM-1.4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumM-1.5 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumM-1.6 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumM-1.7 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumMMX-150 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumMMX-166 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumMMX-233 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/PentiumPro-200 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/costs/Sempron-3100+ delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/install.sh delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/etc/p4.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/README delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/global/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/global/arch.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/global/global.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/global/ppc.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/global/x86.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/arch.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/perfex.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/ppc.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/ppc.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/ppc64.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/ppc64.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/x86.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/perfex/x86.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/self/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/self/arch.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/self/ppc.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/self/ppc64.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/self/self.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/self/x86.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/signal/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/signal/arch.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/signal/ppc.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/signal/ppc64.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/signal/signal.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/examples/signal/x86.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/Documentation/perfctr/low-level-api.txt delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/Documentation/perfctr/low-level-ppc32.txt delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/Documentation/perfctr/low-level-x86.txt delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/Documentation/perfctr/overview.txt delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/Documentation/perfctr/virtual.txt delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/Kconfig delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/RELEASE-NOTES delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/cpumask.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/init.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/ppc.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/ppc64.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/ppc64_tests.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/ppc64_tests.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/ppc_tests.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/ppc_tests.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/version.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/virtual.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/virtual.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/x86.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/x86_tests.c delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/drivers/perfctr/x86_tests.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/include/asm-i386/perfctr.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/include/asm-ppc/perfctr.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/include/asm-ppc64/perfctr.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/include/asm-x86_64/perfctr.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/linux/include/linux/perfctr.h delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.11 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc1 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc1-mm1 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc1-mm3 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc1-mm4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc2 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc5 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.14 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.14-mm1 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.14-rc5-mm1 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.16 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.16.21-SLES10 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.17 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.18 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.18-rc4 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.19 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.20 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.21 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/patches/patch-kernel-2.6.22 delete mode 100644 thirdparty/papi_7_0_1/src/perfctr-2.7.x/perfctr.spec delete mode 100755 thirdparty/papi_7_0_1/src/perfctr-2.7.x/update-kernel delete mode 100755 thirdparty/papi_7_0_1/src/run_tests.sh delete mode 100644 thirdparty/papi_7_0_1/src/run_tests_exclude.txt delete mode 100644 thirdparty/papi_7_0_1/src/run_tests_exclude_cuda.txt delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib.c delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib.h delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib.hpp delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib_datastructures.c delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib_internal.h delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib_lock.h delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib_misc.c delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib_ti.c delete mode 100644 thirdparty/papi_7_0_1/src/sde_lib/sde_lib_ti.h delete mode 100644 thirdparty/papi_7_0_1/src/smoke_tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/smoke_tests/simple.c delete mode 100644 thirdparty/papi_7_0_1/src/smoke_tests/threads.c delete mode 100644 thirdparty/papi_7_0_1/src/solaris-common.c delete mode 100644 thirdparty/papi_7_0_1/src/solaris-common.h delete mode 100644 thirdparty/papi_7_0_1/src/solaris-context.h delete mode 100644 thirdparty/papi_7_0_1/src/solaris-lock.h delete mode 100644 thirdparty/papi_7_0_1/src/solaris-memory.c delete mode 100644 thirdparty/papi_7_0_1/src/solaris-memory.h delete mode 100644 thirdparty/papi_7_0_1/src/solaris-niagara2.c delete mode 100644 thirdparty/papi_7_0_1/src/solaris-niagara2.h delete mode 100644 thirdparty/papi_7_0_1/src/solaris-ultra.c delete mode 100644 thirdparty/papi_7_0_1/src/solaris-ultra.h delete mode 100644 thirdparty/papi_7_0_1/src/sw_multiplex.c delete mode 100644 thirdparty/papi_7_0_1/src/sw_multiplex.h delete mode 100644 thirdparty/papi_7_0_1/src/testlib/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/testlib/Makefile.target.in delete mode 100644 thirdparty/papi_7_0_1/src/testlib/clockcore.c delete mode 100644 thirdparty/papi_7_0_1/src/testlib/clockcore.h delete mode 100644 thirdparty/papi_7_0_1/src/testlib/do_loops.c delete mode 100644 thirdparty/papi_7_0_1/src/testlib/do_loops.h delete mode 100644 thirdparty/papi_7_0_1/src/testlib/fpapi_test.h delete mode 100644 thirdparty/papi_7_0_1/src/testlib/ftests_util.F delete mode 100644 thirdparty/papi_7_0_1/src/testlib/papi_test.h delete mode 100644 thirdparty/papi_7_0_1/src/testlib/test_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/threads.c delete mode 100644 thirdparty/papi_7_0_1/src/threads.h delete mode 100644 thirdparty/papi_7_0_1/src/utils/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/utils/Makefile.target.in delete mode 100644 thirdparty/papi_7_0_1/src/utils/cost_utils.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/cost_utils.h delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_avail.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_clockres.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_command_line.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_component_avail.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_cost.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_decode.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_error_codes.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_event_chooser.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_hardware_avail.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_hybrid_native_avail.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_mem_info.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_multiplex_cost.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_native_avail.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_version.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/papi_xml_event_info.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/print_header.c delete mode 100644 thirdparty/papi_7_0_1/src/utils/print_header.h delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/Makefile delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/Makefile.recipies delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/Makefile.target.in delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/branches_testcode.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/busy_work.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/cache_helper.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/cache_helper.h delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/cache_testcode.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/cycles_validation.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/display_error.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/display_error.h delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/flops_testcode.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/flops_validation.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/fp_validation_hl.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/instructions_testcode.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/matrix_multiply.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/matrix_multiply.h delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/memleak_check.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_br_cn.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_br_ins.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_br_msp.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_br_ntk.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_br_prc.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_br_tkn.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_br_ucn.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_dp_ops.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_fp_ops.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_hw_int.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_l1_dca.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_l1_dcm.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_l2_dca.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_l2_dcm.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_l2_dcr.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_l2_dcw.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_ld_ins.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_ref_cyc.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_sp_ops.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_sr_ins.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_tot_cyc.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/papi_tot_ins.c delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/testcode.h delete mode 100644 thirdparty/papi_7_0_1/src/validation_tests/vector_testcode.c delete mode 100644 thirdparty/papi_7_0_1/src/x86_cpuid_info.c delete mode 100644 thirdparty/papi_7_0_1/src/x86_cpuid_info.h diff --git a/.gitignore b/.gitignore index e20c3ae4..94dff4b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,71 +1,50 @@ -# Prerequisites -*.d -.idea/ -# Compiled Object files -*.slo -*.lo -*.o -*.obj - -# Precompiled Headers -*.gch -*.pch - -# Compiled Dynamic libraries +# Python +__pycache__/ +*.py[cod] +*$py.class *.so -*.dylib -*.dll - -# Fortran module files -*.mod -*.smod - -# Compiled Static libraries -*.lai -*.la -*.a -*.lib +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg -# Executables -*.exe -*.out -*.app -*build -__pycache*/ -doc/ -/cmake-build-debug/ -/cmake-build-debug/_deps/ -/cmake-build-release/ -/cmake-build-release/_deps/ -benchmark/scripts/Downstream_Inference/bolt* -benchmark/torchscripts/ -benchmark/torchscripts* +# Benchmark Results +benchmark/results/ +benchmark/logs/ +*.csv.bak +*.log -# PyTorch models (migrated to sageData) -*.pth -*.pt -*.onnx +# Datasets (managed via tools/data_manager.py) +datasets/ +data/ -# Large test data files (migrated to sageData) -test/torchscripts/VQ/*.txt -test/datasets/**/*.txt +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ -# Python build artifacts -dist/ -*.egg -*.egg-info/ -build/lib/ -build/bdist*/ +# OS +.DS_Store +Thumbs.db -# Benchmark results (should be in sageData or gitignored) -benchmark/scripts/**/results/ -benchmark/figures/**/*.png -benchmark/figures/**/*.jpg -*.csv.bak +# Temporary files +*.tmp +*.bak -/.vscode -# Data symlinks (created by tools/setup_data.sh) -benchmark/models -benchmark/datasets -test/torchscripts/VQ/data -test/torchscripts/VQ/*.txt +# Refactoring artifacts +REFACTORING_PLAN.md +refactor_to_benchmark_only.sh diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index 483ecd0c..00000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,239 +0,0 @@ - -cmake_minimum_required(VERSION 3.14) -project(LibAMM CXX) - -# 显示详细编译信息,避免看起来像卡住 -set(CMAKE_VERBOSE_MAKEFILE ON) -message(STATUS "=== LibAMM Build Configuration ===") -message(STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") -message(STATUS "CMAKE_CXX_COMPILER: ${CMAKE_CXX_COMPILER}") - -include (cmake/FindCuda.cmake) -include (cmake/FindTorch.cmake) -find_package(Torch REQUIRED) -# Custom CMake find instructions and macros -set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake;${CMAKE_MODULE_PATH}") -include(cmake/macros.cmake) -include(cmake/default.cmake) - - -# C++ Standard -#set(CMAKE_CXX_STANDARD 20) -#set(CMAKE_CXX_STANDARD_REQUIRED ON) -#gcc 10 g++10 - -# Unity Build: 合并编译单元以减少头文件重复解析,大幅降低内存占用 -set(CMAKE_UNITY_BUILD ON) -set(CMAKE_UNITY_BUILD_BATCH_SIZE 2) # 每次只合并2个文件,避免单个编译单元过大 -message(STATUS "Unity Build enabled with batch size: ${CMAKE_UNITY_BUILD_BATCH_SIZE}") - - -find_package(Torch REQUIRED) -message(STATUS "Found Torch version: ${Torch_VERSION}") -message(STATUS "Torch libraries: ${TORCH_LIBRARIES}") -#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TORCH_CXX_FLAGS}") -set(LIBRARIES ${LIBRARIES} ${TORCH_LIBRARIES}) -# Set Optimization Flags -# 优化内存使用:降低优化级别,减少调试符号,限制编译器内存 -set(CMAKE_CXX_FLAGS "-std=c++20 -Wall -Werror=return-type -Werror=unused-variable -Werror=unused-parameter") -# 内存优化标志: -# -g0: 无调试符号 -# -O0: 完全不优化(减少内存) -# -fno-var-tracking: 禁用变量跟踪 -# -ftemplate-depth=128: 限制模板实例化深度 -# --param ggc-min-expand=20: 更激进的垃圾回收 -# --param ggc-min-heapsize=32768: 限制堆大小 -set(MEMORY_OPTIMIZATION_FLAGS "-g0 -O0 -fno-var-tracking -ftemplate-depth=128 --param ggc-min-expand=20 --param ggc-min-heapsize=32768") -set(CMAKE_CXX_FLAGS_DEBUG "${MEMORY_OPTIMIZATION_FLAGS} -DNO_RACE_CHECK -DLibAMM_DEBUG_MODE=1") -set(CMAKE_CXX_FLAGS_RELEASE "-Wno-ignored-qualifiers -Wno-sign-compare ${MEMORY_OPTIMIZATION_FLAGS}") -message(STATUS "CXX flags: ${CMAKE_CXX_FLAGS}") -message(STATUS "Memory optimization flags: ${MEMORY_OPTIMIZATION_FLAGS}") -#set(CMAKE_CUDA_STANDARD 11) -#set(CMAKE_CUDA_FLAGS "-std=c++11") -option (ENABLE_OPENCL - "Enable opencl support" - OFF - ) -#OPTIONAL OPENCL -if (NOT ENABLE_OPENCL) - message(STATUS "I will NOT include opencl support ") - set(LibAMM_CL 0) -else () - set(LibAMM_CL 1) - message(STATUS "I will include opencl support, pls make sure you have corresponding libs") - set(LIBRARIES ${LIBRARIES} OpenCL) -endif () -configure_file ( - "${PROJECT_SOURCE_DIR}/include/opencl_config.h.in" - "${PROJECT_BINARY_DIR}/include/opencl_config.h" -) -option (ENABLE_PAPI - "Enable papi support, pls first compile papi or set REBUILD_PAPI to ON" - OFF - ) -# OPTIONAL PAPI -if (NOT ENABLE_PAPI) - message(STATUS "I will NOT use PAPI ") - set(LibAMM_PAPI 0) -else () - set(LibAMM_PAPI 1) - message(STATUS "I will try to use PAPI for HW counters, pls make sure your arch supports it") - option (REBUILD_PAPI - "Rebuild the papi libs" - OFF - ) - if (REBUILD_PAPI) - set (PAPISCRIPTPATH ../thirdparty) - execute_process(COMMAND bash ${PAPISCRIPTPATH}/makeClean.sh WORKING_DIRECTORY ${PAPISCRIPTPATH}) - execute_process(COMMAND bash ${PAPISCRIPTPATH}/installPAPI.sh WORKING_DIRECTORY ${PAPISCRIPTPATH}) - message(STATUS "I have rebuilt PAPI" ) - endif() - find_library (libPAPI libpapi.so ./thirdparty/papi_build/lib) - message(STATUS "papi Libs= " ${libPAPI} ) - set(LIBRARIES ${LIBRARIES} ${libPAPI}) - -endif () -configure_file ( - "${PROJECT_SOURCE_DIR}/include/papi_config.h.in" - "${PROJECT_BINARY_DIR}/include/papi_config.h" -) - -option(ENABLE_PYBIND - "Enable original pybind and build LibAMM python" - OFF -) - -#set(CMAKE_CUDA_ARCHITECTURES 55) -# Set LOGGING_LEVEL Flag -if (LibAMM_LOGGING_LEVEL) - get_log_level_value(LibAMM_LOGGING_VALUE) - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DLibAMM_LOGGING_LEVEL=${LibAMM_LOGGING_VALUE}") - set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -DLibAMM_LOGGING_LEVEL=${LibAMM_LOGGING_VALUE}") - set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -DLibAMM_LOGGING_LEVEL=${LibAMM_LOGGING_VALUE}") -else (LibAMM_LOGGING_LEVEL) - message("---Everything will be logged") -endif (LibAMM_LOGGING_LEVEL) - -message(STATUS "CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}") -message(STATUS "CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG}") -message(STATUS "CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE}") -#pytorch -#set(Torch_DIR "/home/tony/.local/lib/python3.10/site-packages/torch/share/cmake" ) -# Log4cc -#find_package(Log4cxx REQUIRED) -#include_directories(${Log4cxx_INCLUDE_DIR}) -#set(LIBRARIES ${LIBRARIES} ${Log4cxx_LIBRARY}) - - -# 禁用单元测试以减少编译内存占用 -option(ENABLE_UNIT_TESTS "Enable unit tests" OFF) -message(STATUS "Enable testing: ${ENABLE_UNIT_TESTS}") - - -# Print all used include directories -message(STATUS "INCLUDE_DIRS:") -get_property(dirs DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY INCLUDE_DIRECTORIES) -foreach (dir ${dirs}) - message(STATUS " - ${dir}") -endforeach () - -message(STATUS " Libraries: ${LIBRARIES}") -#add_subdirectory(pytorchNN) -# Add Source Code -add_subdirectory(src) - -# Add Library -get_sources(LibAMM_SOURCE_FILES) -get_headers(LibAMM_HEADER_FILES) -add_library(LibAMM SHARED ${LibAMM_SOURCE_FILES} ${LibAMM_HEADER_FILES} ${CMAKE_CURRENT_BINARY_DIR}) -set_property(TARGET LibAMM PROPERTY CXX_STANDARD 20) - -# 禁用某些有头文件冲突的源文件的 Unity Build -set_source_files_properties( - "${PROJECT_SOURCE_DIR}/src/myVecAdd.cpp" - "${PROJECT_SOURCE_DIR}/src/pythonBoundings.cpp" - PROPERTIES SKIP_UNITY_BUILD_INCLUSION TRUE -) -message(STATUS "Excluded myVecAdd.cpp and pythonBoundings.cpp from Unity Build") - -# 禁用预编译头:在低内存环境下PCH反而增加内存占用 -# target_precompile_headers(LibAMM PRIVATE include/pch.h) - -target_include_directories(LibAMM PUBLIC "include") -target_include_directories(LibAMM PUBLIC "${CMAKE_CURRENT_BINARY_DIR}") -target_include_directories (LibAMM PUBLIC "thirdparty/papi_build/include") -target_link_libraries(LibAMM PUBLIC ${LIBRARIES}) -# 禁用 benchmark 以减少编译内存占用 -# add_subdirectory(benchmark) -# set_property(TARGET benchmark PROPERTY CXX_STANDARD 20) -#Add tests (based on GTest suits) -#include(GoogleTest) - -if (ENABLE_UNIT_TESTS) - add_subdirectory(test) -endif () - -if (NOT ENABLE_PYBIND) - message(STATUS "I will NOT build original python package PyAMM") - set(LibAMM_PYBIND 0) -else () - message(STATUS "I will build original python package PyAMM") - find_package(pybind11 CONFIG QUIET) - if(NOT pybind11_FOUND) - message(WARNING "pybind11 not found via CMAKE_PREFIX_PATH; fetching minimal copy for build") - include(FetchContent) - FetchContent_Declare( - pybind11 - GIT_REPOSITORY https://github.com/pybind/pybind11.git - GIT_TAG v2.13.5 - GIT_SHALLOW TRUE - ) - FetchContent_MakeAvailable(pybind11) - if(NOT DEFINED pybind11_VERSION) - set(pybind11_VERSION "2.13.5") - endif() - else() - message(STATUS "Found system pybind11 ${pybind11_VERSION}") - endif() - message(STATUS "Using pybind11 ${pybind11_VERSION}") - - pybind11_add_module(PyAMM ${PROJECT_SOURCE_DIR}/src/PyAMM.cpp) - find_library(TORCH_PYTHON_LIBRARY torch_python PATH "${TORCH_INSTALL_PREFIX}/lib") - target_link_libraries(PyAMM PUBLIC ${LIBRARIES} LibAMM ${TORCH_PYTHON_LIBRARY}) - install(TARGETS PyAMM LIBRARY DESTINATION .) - message(STATUS "Additional include torch_python: ${TORCH_PYTHON_LIBRARY}") - set(LibAMM_PYBIND 1) - set_property(TARGET PyAMM PROPERTY CXX_STANDARD 20) - # 禁用 PyAMM 的 Unity Build,因为它太大容易 OOM - set_target_properties(PyAMM PROPERTIES UNITY_BUILD OFF) - message(STATUS "Disabled Unity Build for PyAMM to reduce memory usage") -endif () -configure_file( - "${PROJECT_SOURCE_DIR}/include/pybind_config.h.in" - "${PROJECT_BINARY_DIR}/include/pybind_config.h" -) - -install(DIRECTORY "include" DESTINATION "/LibAMM" COMPONENT LibAMM) -# copy scripts -file(GLOB allCopyFiles "${PROJECT_SOURCE_DIR}/scripts/*") -file(COPY ${allCopyFiles} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/benchmark/scripts) -file(COPY ${allCopyFiles} DESTINATION ${CMAKE_CURRENT_BINARY_DIR}/benchmark/scripts) - -# copy files needed for real world matrix loader -# Allow external projects to specify dataset path or disable dataset copy -option(LIBAMM_SKIP_DATASET_COPY "Skip copying benchmark datasets" OFF) -set(LIBAMM_DATASET_SOURCE_DIR "${CMAKE_SOURCE_DIR}/benchmark/datasets" CACHE PATH "Path to LibAMM benchmark datasets") - -if(NOT LIBAMM_SKIP_DATASET_COPY) - if(EXISTS "${LIBAMM_DATASET_SOURCE_DIR}") - message(STATUS "Copying LibAMM datasets from: ${LIBAMM_DATASET_SOURCE_DIR}") - set(source_directory "${LIBAMM_DATASET_SOURCE_DIR}/") - set(destination_directory "${CMAKE_BINARY_DIR}/benchmark/datasets/") - file(COPY ${source_directory} DESTINATION ${destination_directory}) - else() - message(STATUS "LibAMM datasets not found at ${LIBAMM_DATASET_SOURCE_DIR}, skipping dataset copy") - message(STATUS "Set LIBAMM_DATASET_SOURCE_DIR to specify a different path, or set LIBAMM_SKIP_DATASET_COPY=ON to disable") - endif() -else() - message(STATUS "LibAMM dataset copy disabled (LIBAMM_SKIP_DATASET_COPY=ON)") -endif() diff --git a/Doxyfile b/Doxyfile deleted file mode 100755 index 5bdce657..00000000 --- a/Doxyfile +++ /dev/null @@ -1,2623 +0,0 @@ -# Doxyfile 1.9.1 - -# This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project. -# -# All text after a double hash (##) is considered a comment and is placed in -# front of the TAG it is preceding. -# -# All text after a single hash (#) is considered a comment and will be ignored. -# The format is: -# TAG = value [value, ...] -# For lists, items can also be appended using: -# TAG += value [value, ...] -# Values that contain spaces should be placed between quotes (\" \"). - -#--------------------------------------------------------------------------- -# Project related configuration options -#--------------------------------------------------------------------------- - -# This tag specifies the encoding used for all characters in the configuration -# file that follow. The default is UTF-8 which is also the encoding used for all -# text before the first occurrence of this tag. Doxygen uses libiconv (or the -# iconv built into libc) for the transcoding. See -# https://www.gnu.org/software/libiconv/ for the list of possible encodings. -# The default value is: UTF-8. - -DOXYFILE_ENCODING = UTF-8 - -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by -# double-quotes, unless you are using Doxywizard) that should identify the -# project for which the documentation is generated. This name is used in the -# title of most generated pages and in a few other places. -# The default value is: My Project. - -PROJECT_NAME = "LibAMM" - -# The PROJECT_NUMBER tag can be used to enter a project or revision number. This -# could be handy for archiving the generated documentation or if some version -# control system is used. - -PROJECT_NUMBER = 0.1.4 - -# Using the PROJECT_BRIEF tag one can provide an optional one line description -# for a project that appears at the top of each page and should give viewer a -# quick idea about the purpose of the project. Keep the description short. - -PROJECT_BRIEF = "The benchmark for (approximate) matrix multiplication under stream setting" - -# With the PROJECT_LOGO tag one can specify a logo or an icon that is included -# in the documentation. The maximum height of the logo should not exceed 55 -# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy -# the logo to the output directory. - -PROJECT_LOGO = - -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path -# into which the generated documentation will be written. If a relative path is -# entered, it will be relative to the location where doxygen was started. If -# left blank the current directory will be used. - -OUTPUT_DIRECTORY = doc - -# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- -# directories (in 2 levels) under the output directory of each output format and -# will distribute the generated files over these directories. Enabling this -# option can be useful when feeding doxygen a huge amount of source files, where -# putting all generated files in the same directory would otherwise causes -# performance problems for the file system. -# The default value is: NO. - -CREATE_SUBDIRS = NO - -# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII -# characters to appear in the names of generated files. If set to NO, non-ASCII -# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode -# U+3044. -# The default value is: NO. - -ALLOW_UNICODE_NAMES = NO - -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, -# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), -# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, -# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, -# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, -# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, -# Ukrainian and Vietnamese. -# The default value is: English. - -OUTPUT_LANGUAGE = English - -# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all generated output in the proper direction. -# Possible values are: None, LTR, RTL and Context. -# The default value is: None. - -OUTPUT_TEXT_DIRECTION = None - -# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member -# descriptions after the members that are listed in the file and class -# documentation (similar to Javadoc). Set to NO to disable this. -# The default value is: YES. - -BRIEF_MEMBER_DESC = YES - -# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief -# description of a member or function before the detailed description -# -# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the -# brief descriptions will be completely suppressed. -# The default value is: YES. - -REPEAT_BRIEF = YES - -# This tag implements a quasi-intelligent brief description abbreviator that is -# used to form the text in various listings. Each string in this list, if found -# as the leading text of the brief description, will be stripped from the text -# and the result, after processing the whole list, is used as the annotated -# text. Otherwise, the brief description is used as-is. If left blank, the -# following values are used ($name is automatically replaced with the name of -# the entity):The $name class, The $name widget, The $name file, is, provides, -# specifies, contains, represents, a, an and the. - -ABBREVIATE_BRIEF = "The $name class" \ - "The $name widget" \ - "The $name file" \ - is \ - provides \ - specifies \ - contains \ - represents \ - a \ - an \ - the - -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# doxygen will generate a detailed section even if there is only a brief -# description. -# The default value is: NO. - -ALWAYS_DETAILED_SEC = NO - -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment -# operators of the base classes will not be shown. -# The default value is: NO. - -INLINE_INHERITED_MEMB = NO - -# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path -# before files name in the file list and in the header files. If set to NO the -# shortest path that makes the file name unique will be used -# The default value is: YES. - -FULL_PATH_NAMES = YES - -# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. -# Stripping is only done if one of the specified strings matches the left-hand -# part of the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the path to -# strip. -# -# Note that you can specify absolute paths here, but also relative paths, which -# will be relative from the directory where doxygen is started. -# This tag requires that the tag FULL_PATH_NAMES is set to YES. - -STRIP_FROM_PATH = - -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the -# path mentioned in the documentation of a class, which tells the reader which -# header file to include in order to use a class. If left blank only the name of -# the header file containing the class definition is used. Otherwise one should -# specify the list of include paths that are normally passed to the compiler -# using the -I flag. - -STRIP_FROM_INC_PATH = - -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but -# less readable) file names. This can be useful is your file systems doesn't -# support long names like on DOS, Mac, or CD-ROM. -# The default value is: NO. - -SHORT_NAMES = NO - -# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the -# first line (until the first dot) of a Javadoc-style comment as the brief -# description. If set to NO, the Javadoc-style will behave just like regular Qt- -# style comments (thus requiring an explicit @brief command for a brief -# description.) -# The default value is: NO. - -JAVADOC_AUTOBRIEF = NO - -# If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line -# such as -# /*************** -# as being the beginning of a Javadoc-style comment "banner". If set to NO, the -# Javadoc-style will behave just like regular comments and it will not be -# interpreted by doxygen. -# The default value is: NO. - -JAVADOC_BANNER = NO - -# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first -# line (until the first dot) of a Qt-style comment as the brief description. If -# set to NO, the Qt-style will behave just like regular Qt-style comments (thus -# requiring an explicit \brief command for a brief description.) -# The default value is: NO. - -QT_AUTOBRIEF = NO - -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a -# multi-line C++ special comment block (i.e. a block of //! or /// comments) as -# a brief description. This used to be the default behavior. The new default is -# to treat a multi-line C++ comment block as a detailed description. Set this -# tag to YES if you prefer the old behavior instead. -# -# Note that setting this tag to YES also means that rational rose comments are -# not recognized any more. -# The default value is: NO. - -MULTILINE_CPP_IS_BRIEF = NO - -# By default Python docstrings are displayed as preformatted text and doxygen's -# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the -# doxygen's special commands can be used and the contents of the docstring -# documentation blocks is shown as doxygen documentation. -# The default value is: YES. - -PYTHON_DOCSTRING = YES - -# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the -# documentation from any documented member that it re-implements. -# The default value is: YES. - -INHERIT_DOCS = YES - -# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new -# page for each member. If set to NO, the documentation of a member will be part -# of the file/class/namespace that contains it. -# The default value is: NO. - -SEPARATE_MEMBER_PAGES = NO - -# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen -# uses this value to replace tabs by spaces in code fragments. -# Minimum value: 1, maximum value: 16, default value: 4. - -TAB_SIZE = 4 - -# This tag can be used to specify a number of aliases that act as commands in -# the documentation. An alias has the form: -# name=value -# For example adding -# "sideeffect=@par Side Effects:\n" -# will allow you to put the command \sideeffect (or @sideeffect) in the -# documentation, which will result in a user-defined paragraph with heading -# "Side Effects:". You can put \n's in the value part of an alias to insert -# newlines (in the resulting output). You can put ^^ in the value part of an -# alias to insert a newline as if a physical newline was in the original file. -# When you need a literal { or } or , in the value part of an alias you have to -# escape them by means of a backslash (\), this can lead to conflicts with the -# commands \{ and \} for these it is advised to use the version @{ and @} or use -# a double escape (\\{ and \\}) - -ALIASES = - -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources -# only. Doxygen will then generate output that is more tailored for C. For -# instance, some of the names that are used will be different. The list of all -# members will be omitted, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_FOR_C = NO - -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or -# Python sources only. Doxygen will then generate output that is more tailored -# for that language. For instance, namespaces will be presented as packages, -# qualified scopes will look different, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_JAVA = NO - -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources. Doxygen will then generate output that is tailored for Fortran. -# The default value is: NO. - -OPTIMIZE_FOR_FORTRAN = NO - -# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL -# sources. Doxygen will then generate output that is tailored for VHDL. -# The default value is: NO. - -OPTIMIZE_OUTPUT_VHDL = NO - -# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice -# sources only. Doxygen will then generate output that is more tailored for that -# language. For instance, namespaces will be presented as modules, types will be -# separated into more groups, etc. -# The default value is: NO. - -OPTIMIZE_OUTPUT_SLICE = NO - -# Doxygen selects the parser to use depending on the extension of the files it -# parses. With this tag you can assign which parser to use for a given -# extension. Doxygen has a built-in mapping, but you can override or extend it -# using this tag. The format is ext=language, where ext is a file extension, and -# language is one of the parsers supported by doxygen: IDL, Java, JavaScript, -# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, -# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: -# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser -# tries to guess whether the code is fixed or free formatted code, this is the -# default for Fortran type files). For instance to make doxygen treat .inc files -# as Fortran files (default is PHP), and .f files as C (default is Fortran), -# use: inc=Fortran f=C. -# -# Note: For files without extension you can use no_extension as a placeholder. -# -# Note that for custom extensions you also need to set FILE_PATTERNS otherwise -# the files are not read by doxygen. When specifying no_extension you should add -# * to the FILE_PATTERNS. -# -# Note see also the list of default file extension mappings. - -EXTENSION_MAPPING = - -# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments -# according to the Markdown format, which allows for more readable -# documentation. See https://daringfireball.net/projects/markdown/ for details. -# The output of markdown processing is further processed by doxygen, so you can -# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in -# case of backward compatibilities issues. -# The default value is: YES. - -MARKDOWN_SUPPORT = YES - -# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up -# to that level are automatically included in the table of contents, even if -# they do not have an id attribute. -# Note: This feature currently applies only to Markdown headings. -# Minimum value: 0, maximum value: 99, default value: 5. -# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. - -TOC_INCLUDE_HEADINGS = 5 - -# When enabled doxygen tries to link words that correspond to documented -# classes, or namespaces to their corresponding documentation. Such a link can -# be prevented in individual cases by putting a % sign in front of the word or -# globally by setting AUTOLINK_SUPPORT to NO. -# The default value is: YES. - -AUTOLINK_SUPPORT = YES - -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want -# to include (a tag file for) the STL sources as input, then you should set this -# tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); -# versus func(std::string) {}). This also make the inheritance and collaboration -# diagrams that involve STL classes more complete and accurate. -# The default value is: NO. - -BUILTIN_STL_SUPPORT = NO - -# If you use Microsoft's C++/CLI language, you should set this option to YES to -# enable parsing support. -# The default value is: NO. - -CPP_CLI_SUPPORT = NO - -# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: -# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen -# will parse them like normal C++ but will assume all classes use public instead -# of private inheritance when no explicit protection keyword is present. -# The default value is: NO. - -SIP_SUPPORT = NO - -# For Microsoft's IDL there are propget and propput attributes to indicate -# getter and setter methods for a property. Setting this option to YES will make -# doxygen to replace the get and set methods by a property in the documentation. -# This will only work if the methods are indeed getting or setting a simple -# type. If this is not the case, or you want to show the methods anyway, you -# should set this option to NO. -# The default value is: YES. - -IDL_PROPERTY_SUPPORT = YES - -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default -# all members of a group must be documented explicitly. -# The default value is: NO. - -DISTRIBUTE_GROUP_DOC = NO - -# If one adds a struct or class to a group and this option is enabled, then also -# any nested class or struct is added to the same group. By default this option -# is disabled and one has to add nested compounds explicitly via \ingroup. -# The default value is: NO. - -GROUP_NESTED_COMPOUNDS = NO - -# Set the SUBGROUPING tag to YES to allow class member groups of the same type -# (for instance a group of public functions) to be put as a subgroup of that -# type (e.g. under the Public Functions section). Set it to NO to prevent -# subgrouping. Alternatively, this can be done per class using the -# \nosubgrouping command. -# The default value is: YES. - -SUBGROUPING = YES - -# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions -# are shown inside the group in which they are included (e.g. using \ingroup) -# instead of on a separate page (for HTML and Man pages) or section (for LaTeX -# and RTF). -# -# Note that this feature does not work in combination with -# SEPARATE_MEMBER_PAGES. -# The default value is: NO. - -INLINE_GROUPED_CLASSES = NO - -# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions -# with only public data fields or simple typedef fields will be shown inline in -# the documentation of the scope in which they are defined (i.e. file, -# namespace, or group documentation), provided this scope is documented. If set -# to NO, structs, classes, and unions are shown on a separate page (for HTML and -# Man pages) or section (for LaTeX and RTF). -# The default value is: NO. - -INLINE_SIMPLE_STRUCTS = NO - -# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or -# enum is documented as struct, union, or enum with the name of the typedef. So -# typedef struct TypeS {} TypeT, will appear in the documentation as a struct -# with name TypeT. When disabled the typedef will appear as a member of a file, -# namespace, or class. And the struct will be named TypeS. This can typically be -# useful for C code in case the coding convention dictates that all compound -# types are typedef'ed and only the typedef is referenced, never the tag name. -# The default value is: NO. - -TYPEDEF_HIDES_STRUCT = NO - -# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This -# cache is used to resolve symbols given their name and scope. Since this can be -# an expensive process and often the same symbol appears multiple times in the -# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small -# doxygen will become slower. If the cache is too large, memory is wasted. The -# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range -# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 -# symbols. At the end of a run doxygen will report the cache usage and suggest -# the optimal cache size from a speed point of view. -# Minimum value: 0, maximum value: 9, default value: 0. - -LOOKUP_CACHE_SIZE = 0 - -# The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use -# during processing. When set to 0 doxygen will based this on the number of -# cores available in the system. You can set it explicitly to a value larger -# than 0 to get more control over the balance between CPU load and processing -# speed. At this moment only the input processing can be done using multiple -# threads. Since this is still an experimental feature the default is set to 1, -# which efficively disables parallel processing. Please report any issues you -# encounter. Generating dot graphs in parallel is controlled by the -# DOT_NUM_THREADS setting. -# Minimum value: 0, maximum value: 32, default value: 1. - -NUM_PROC_THREADS = 1 - -#--------------------------------------------------------------------------- -# Build related configuration options -#--------------------------------------------------------------------------- - -# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in -# documentation are documented, even if no documentation was available. Private -# class members and static file members will be hidden unless the -# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. -# Note: This will also disable the warnings about undocumented members that are -# normally produced when WARNINGS is set to YES. -# The default value is: NO. - -EXTRACT_ALL = NO - -# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will -# be included in the documentation. -# The default value is: NO. - -EXTRACT_PRIVATE = NO - -# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual -# methods of a class will be included in the documentation. -# The default value is: NO. - -EXTRACT_PRIV_VIRTUAL = NO - -# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal -# scope will be included in the documentation. -# The default value is: NO. - -EXTRACT_PACKAGE = NO - -# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be -# included in the documentation. -# The default value is: NO. - -EXTRACT_STATIC = NO - -# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined -# locally in source files will be included in the documentation. If set to NO, -# only classes defined in header files are included. Does not have any effect -# for Java sources. -# The default value is: YES. - -EXTRACT_LOCAL_CLASSES = YES - -# This flag is only useful for Objective-C code. If set to YES, local methods, -# which are defined in the implementation section but not in the interface are -# included in the documentation. If set to NO, only methods in the interface are -# included. -# The default value is: NO. - -EXTRACT_LOCAL_METHODS = NO - -# If this flag is set to YES, the members of anonymous namespaces will be -# extracted and appear in the documentation as a namespace called -# 'anonymous_namespace{file}', where file will be replaced with the base name of -# the file that contains the anonymous namespace. By default anonymous namespace -# are hidden. -# The default value is: NO. - -EXTRACT_ANON_NSPACES = NO - -# If this flag is set to YES, the name of an unnamed parameter in a declaration -# will be determined by the corresponding definition. By default unnamed -# parameters remain unnamed in the output. -# The default value is: YES. - -RESOLVE_UNNAMED_PARAMS = YES - -# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all -# undocumented members inside documented classes or files. If set to NO these -# members will be included in the various overviews, but no documentation -# section is generated. This option has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_MEMBERS = NO - -# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. If set -# to NO, these classes will be included in the various overviews. This option -# has no effect if EXTRACT_ALL is enabled. -# The default value is: NO. - -HIDE_UNDOC_CLASSES = NO - -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend -# declarations. If set to NO, these declarations will be included in the -# documentation. -# The default value is: NO. - -HIDE_FRIEND_COMPOUNDS = NO - -# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any -# documentation blocks found inside the body of a function. If set to NO, these -# blocks will be appended to the function's detailed documentation block. -# The default value is: NO. - -HIDE_IN_BODY_DOCS = NO - -# The INTERNAL_DOCS tag determines if documentation that is typed after a -# \internal command is included. If the tag is set to NO then the documentation -# will be excluded. Set it to YES to include the internal documentation. -# The default value is: NO. - -INTERNAL_DOCS = NO - -# With the correct setting of option CASE_SENSE_NAMES doxygen will better be -# able to match the capabilities of the underlying filesystem. In case the -# filesystem is case sensitive (i.e. it supports files in the same directory -# whose names only differ in casing), the option must be set to YES to properly -# deal with such files in case they appear in the input. For filesystems that -# are not case sensitive the option should be be set to NO to properly deal with -# output files written for symbols that only differ in casing, such as for two -# classes, one named CLASS and the other named Class, and to also support -# references to files without having to specify the exact matching casing. On -# Windows (including Cygwin) and MacOS, users should typically set this option -# to NO, whereas on Linux or other Unix flavors it should typically be set to -# YES. -# The default value is: system dependent. - -CASE_SENSE_NAMES = YES - -# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with -# their full class and namespace scopes in the documentation. If set to YES, the -# scope will be hidden. -# The default value is: NO. - -HIDE_SCOPE_NAMES = NO - -# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will -# append additional text to a page's title, such as Class Reference. If set to -# YES the compound reference will be hidden. -# The default value is: NO. - -HIDE_COMPOUND_REFERENCE= NO - -# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of -# the files that are included by a file in the documentation of that file. -# The default value is: YES. - -SHOW_INCLUDE_FILES = YES - -# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each -# grouped member an include statement to the documentation, telling the reader -# which file to include in order to use the member. -# The default value is: NO. - -SHOW_GROUPED_MEMB_INC = NO - -# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include -# files with double quotes in the documentation rather than with sharp brackets. -# The default value is: NO. - -FORCE_LOCAL_INCLUDES = NO - -# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the -# documentation for inline members. -# The default value is: YES. - -INLINE_INFO = YES - -# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the -# (detailed) documentation of file and class members alphabetically by member -# name. If set to NO, the members will appear in declaration order. -# The default value is: YES. - -SORT_MEMBER_DOCS = YES - -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief -# descriptions of file, namespace and class members alphabetically by member -# name. If set to NO, the members will appear in declaration order. Note that -# this will also influence the order of the classes in the class list. -# The default value is: NO. - -SORT_BRIEF_DOCS = NO - -# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the -# (brief and detailed) documentation of class members so that constructors and -# destructors are listed first. If set to NO the constructors will appear in the -# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. -# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief -# member documentation. -# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting -# detailed member documentation. -# The default value is: NO. - -SORT_MEMBERS_CTORS_1ST = NO - -# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy -# of group names into alphabetical order. If set to NO the group names will -# appear in their defined order. -# The default value is: NO. - -SORT_GROUP_NAMES = NO - -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by -# fully-qualified names, including namespaces. If set to NO, the class list will -# be sorted only by class name, not including the namespace part. -# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the alphabetical -# list. -# The default value is: NO. - -SORT_BY_SCOPE_NAME = NO - -# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper -# type resolution of all parameters of a function it will reject a match between -# the prototype and the implementation of a member function even if there is -# only one candidate or it is obvious which candidate to choose by doing a -# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still -# accept a match between prototype and implementation in such cases. -# The default value is: NO. - -STRICT_PROTO_MATCHING = NO - -# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo -# list. This list is created by putting \todo commands in the documentation. -# The default value is: YES. - -GENERATE_TODOLIST = YES - -# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test -# list. This list is created by putting \test commands in the documentation. -# The default value is: YES. - -GENERATE_TESTLIST = YES - -# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug -# list. This list is created by putting \bug commands in the documentation. -# The default value is: YES. - -GENERATE_BUGLIST = YES - -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) -# the deprecated list. This list is created by putting \deprecated commands in -# the documentation. -# The default value is: YES. - -GENERATE_DEPRECATEDLIST= YES - -# The ENABLED_SECTIONS tag can be used to enable conditional documentation -# sections, marked by \if ... \endif and \cond -# ... \endcond blocks. - -ENABLED_SECTIONS = - -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the -# initial value of a variable or macro / define can have for it to appear in the -# documentation. If the initializer consists of more lines than specified here -# it will be hidden. Use a value of 0 to hide initializers completely. The -# appearance of the value of individual variables and macros / defines can be -# controlled using \showinitializer or \hideinitializer command in the -# documentation regardless of this setting. -# Minimum value: 0, maximum value: 10000, default value: 30. - -MAX_INITIALIZER_LINES = 30 - -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at -# the bottom of the documentation of classes and structs. If set to YES, the -# list will mention the files that were used to generate the documentation. -# The default value is: YES. - -SHOW_USED_FILES = YES - -# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This -# will remove the Files entry from the Quick Index and from the Folder Tree View -# (if specified). -# The default value is: YES. - -SHOW_FILES = YES - -# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces -# page. This will remove the Namespaces entry from the Quick Index and from the -# Folder Tree View (if specified). -# The default value is: YES. - -SHOW_NAMESPACES = YES - -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from -# the version control system). Doxygen will invoke the program by executing (via -# popen()) the command command input-file, where command is the value of the -# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided -# by doxygen. Whatever the program writes to standard output is used as the file -# version. For an example see the documentation. - -FILE_VERSION_FILTER = - -# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed -# by doxygen. The layout file controls the global structure of the generated -# output files in an output format independent way. To create the layout file -# that represents doxygen's defaults, run doxygen with the -l option. You can -# optionally specify a file name after the option, if omitted DoxygenLayout.xml -# will be used as the name of the layout file. -# -# Note that if you run doxygen from a directory containing a file called -# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE -# tag is left empty. - -LAYOUT_FILE = - -# The CITE_BIB_FILES tag can be used to specify one or more bib files containing -# the reference definitions. This must be a list of .bib files. The .bib -# extension is automatically appended if omitted. This requires the bibtex tool -# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. -# For LaTeX the style of the bibliography can be controlled using -# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the -# search path. See also \cite for info how to create references. - -CITE_BIB_FILES = - -#--------------------------------------------------------------------------- -# Configuration options related to warning and progress messages -#--------------------------------------------------------------------------- - -# The QUIET tag can be used to turn on/off the messages that are generated to -# standard output by doxygen. If QUIET is set to YES this implies that the -# messages are off. -# The default value is: NO. - -QUIET = NO - -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES -# this implies that the warnings are on. -# -# Tip: Turn warnings on while writing the documentation. -# The default value is: YES. - -WARNINGS = YES - -# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate -# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag -# will automatically be disabled. -# The default value is: YES. - -WARN_IF_UNDOCUMENTED = YES - -# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some parameters -# in a documented function, or documenting parameters that don't exist or using -# markup commands wrongly. -# The default value is: YES. - -WARN_IF_DOC_ERROR = YES - -# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that -# are documented, but have no documentation for their parameters or return -# value. If set to NO, doxygen will only warn about wrong or incomplete -# parameter documentation, but not about the absence of documentation. If -# EXTRACT_ALL is set to YES then this flag will automatically be disabled. -# The default value is: NO. - -WARN_NO_PARAMDOC = NO - -# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when -# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS -# then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but -# at the end of the doxygen process doxygen will return with a non-zero status. -# Possible values are: NO, YES and FAIL_ON_WARNINGS. -# The default value is: NO. - -WARN_AS_ERROR = NO - -# The WARN_FORMAT tag determines the format of the warning messages that doxygen -# can produce. The string should contain the $file, $line, and $text tags, which -# will be replaced by the file and line number from which the warning originated -# and the warning text. Optionally the format may contain $version, which will -# be replaced by the version of the file (if it could be obtained via -# FILE_VERSION_FILTER) -# The default value is: $file:$line: $text. - -WARN_FORMAT = "$file:$line: $text" - -# The WARN_LOGFILE tag can be used to specify a file to which warning and error -# messages should be written. If left blank the output is written to standard -# error (stderr). - -WARN_LOGFILE = - -#--------------------------------------------------------------------------- -# Configuration options related to the input files -#--------------------------------------------------------------------------- - -# The INPUT tag is used to specify the files and/or directories that contain -# documented source files. You may enter file names like myfile.cpp or -# directories like /usr/src/myproject. Separate the files or directories with -# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING -# Note: If this tag is empty the current directory is searched. - -INPUT = src\ - include\ - benchmark\src - -# This tag can be used to specify the character encoding of the source files -# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses -# libiconv (or the iconv built into libc) for the transcoding. See the libiconv -# documentation (see: -# https://www.gnu.org/software/libiconv/) for the list of possible encodings. -# The default value is: UTF-8. - -INPUT_ENCODING = UTF-8 - -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and -# *.h) to filter out the source-files in the directories. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# read by doxygen. -# -# Note the list of default checked file patterns might differ from the list of -# default file extension mappings. -# -# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, -# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, -# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, -# *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), -# *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl, -# *.ucf, *.qsf and *.ice. - -FILE_PATTERNS = *.h \ - *.hpp \ - *.h++ \ - *.cpp - - -# The RECURSIVE tag can be used to specify whether or not subdirectories should -# be searched for input files as well. -# The default value is: NO. - -RECURSIVE = YES - -# The EXCLUDE tag can be used to specify files and/or directories that should be -# excluded from the INPUT source files. This way you can easily exclude a -# subdirectory from a directory tree whose root is specified with the INPUT tag. -# -# Note that relative paths are relative to the directory from which doxygen is -# run. - -EXCLUDE = */cmake* \ - .* \ - */*build* \ - doc - -# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or -# directories that are symbolic links (a Unix file system feature) are excluded -# from the input. -# The default value is: NO. - -EXCLUDE_SYMLINKS = NO - -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories for example use the pattern */test/* - -EXCLUDE_PATTERNS = - -# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names -# (namespaces, classes, functions, etc.) that should be excluded from the -# output. The symbol name can be a fully qualified name, a word, or if the -# wildcard * is used, a substring. Examples: ANamespace, AClass, -# AClass::ANamespace, ANamespace::*Test -# -# Note that the wildcards are matched against the file with absolute path, so to -# exclude all test directories use the pattern */test/* - -EXCLUDE_SYMBOLS = - -# The EXAMPLE_PATH tag can be used to specify one or more files or directories -# that contain example code fragments that are included (see the \include -# command). - -EXAMPLE_PATH = - -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and -# *.h) to filter out the source-files in the directories. If left blank all -# files are included. - -EXAMPLE_PATTERNS = * - -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude commands -# irrespective of the value of the RECURSIVE tag. -# The default value is: NO. - -EXAMPLE_RECURSIVE = NO - -# The IMAGE_PATH tag can be used to specify one or more files or directories -# that contain images that are to be included in the documentation (see the -# \image command). - -IMAGE_PATH = ./docsrc - -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command: -# -# -# -# where is the value of the INPUT_FILTER tag, and is the -# name of an input file. Doxygen will then use the output that the filter -# program writes to standard output. If FILTER_PATTERNS is specified, this tag -# will be ignored. -# -# Note that the filter must not add or remove lines; it is applied before the -# code is scanned, but not when the output code is generated. If lines are added -# or removed, the anchors will not be placed correctly. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# properly processed by doxygen. - -INPUT_FILTER = - -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: pattern=filter -# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how -# filters are used. If the FILTER_PATTERNS tag is empty or if none of the -# patterns match the file name, INPUT_FILTER is applied. -# -# Note that for custom extensions or not directly supported extensions you also -# need to set EXTENSION_MAPPING for the extension otherwise the files are not -# properly processed by doxygen. - -FILTER_PATTERNS = - -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will also be used to filter the input files that are used for -# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). -# The default value is: NO. - -FILTER_SOURCE_FILES = YES - -# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file -# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and -# it is also possible to disable source filtering for a specific pattern using -# *.ext= (so without naming a filter). -# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. - -FILTER_SOURCE_PATTERNS = - -# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that -# is part of the input, its contents will be placed on the main page -# (index.html). This can be useful if you have a project on for instance GitHub -# and want to reuse the introduction page also for the doxygen output. - -USE_MDFILE_AS_MAINPAGE =README.md - -#--------------------------------------------------------------------------- -# Configuration options related to source browsing -#--------------------------------------------------------------------------- - -# If the SOURCE_BROWSER tag is set to YES then a list of source files will be -# generated. Documented entities will be cross-referenced with these sources. -# -# Note: To get rid of all source code in the generated output, make sure that -# also VERBATIM_HEADERS is set to NO. -# The default value is: NO. - -SOURCE_BROWSER = NO - -# Setting the INLINE_SOURCES tag to YES will include the body of functions, -# classes and enums directly into the documentation. -# The default value is: NO. - -INLINE_SOURCES = NO - -# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any -# special comment blocks from generated source code fragments. Normal C, C++ and -# Fortran comments will always remain visible. -# The default value is: YES. - -STRIP_CODE_COMMENTS = YES - -# If the REFERENCED_BY_RELATION tag is set to YES then for each documented -# entity all documented functions referencing it will be listed. -# The default value is: NO. - -REFERENCED_BY_RELATION = NO - -# If the REFERENCES_RELATION tag is set to YES then for each documented function -# all documented entities called/used by that function will be listed. -# The default value is: NO. - -REFERENCES_RELATION = NO - -# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set -# to YES then the hyperlinks from functions in REFERENCES_RELATION and -# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will -# link to the documentation. -# The default value is: YES. - -REFERENCES_LINK_SOURCE = YES - -# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the -# source code will show a tooltip with additional information such as prototype, -# brief description and links to the definition and documentation. Since this -# will make the HTML file larger and loading of large files a bit slower, you -# can opt to disable this feature. -# The default value is: YES. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -SOURCE_TOOLTIPS = YES - -# If the USE_HTAGS tag is set to YES then the references to source code will -# point to the HTML generated by the htags(1) tool instead of doxygen built-in -# source browser. The htags tool is part of GNU's global source tagging system -# (see https://www.gnu.org/software/global/global.html). You will need version -# 4.8.6 or higher. -# -# To use it do the following: -# - Install the latest version of global -# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file -# - Make sure the INPUT points to the root of the source tree -# - Run doxygen as normal -# -# Doxygen will invoke htags (and that will in turn invoke gtags), so these -# tools must be available from the command line (i.e. in the search path). -# -# The result: instead of the source browser generated by doxygen, the links to -# source code will now point to the output of htags. -# The default value is: NO. -# This tag requires that the tag SOURCE_BROWSER is set to YES. - -USE_HTAGS = NO - -# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a -# verbatim copy of the header file for each class for which an include is -# specified. Set to NO to disable this. -# See also: Section \class. -# The default value is: YES. - -VERBATIM_HEADERS = YES - -# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the -# clang parser (see: -# http://clang.llvm.org/) for more accurate parsing at the cost of reduced -# performance. This can be particularly helpful with template rich C++ code for -# which doxygen's built-in parser lacks the necessary type information. -# Note: The availability of this option depends on whether or not doxygen was -# generated with the -Duse_libclang=ON option for CMake. -# The default value is: NO. - -CLANG_ASSISTED_PARSING = NO - -# If clang assisted parsing is enabled and the CLANG_ADD_INC_PATHS tag is set to -# YES then doxygen will add the directory of each input to the include path. -# The default value is: YES. - -CLANG_ADD_INC_PATHS = YES - -# If clang assisted parsing is enabled you can provide the compiler with command -# line options that you would normally use when invoking the compiler. Note that -# the include paths will already be set by doxygen for the files and directories -# specified with INPUT and INCLUDE_PATH. -# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. - -CLANG_OPTIONS = - -# If clang assisted parsing is enabled you can provide the clang parser with the -# path to the directory containing a file called compile_commands.json. This -# file is the compilation database (see: -# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) containing the -# options used when the source files were built. This is equivalent to -# specifying the -p option to a clang tool, such as clang-check. These options -# will then be passed to the parser. Any options specified with CLANG_OPTIONS -# will be added as well. -# Note: The availability of this option depends on whether or not doxygen was -# generated with the -Duse_libclang=ON option for CMake. - -CLANG_DATABASE_PATH = - -#--------------------------------------------------------------------------- -# Configuration options related to the alphabetical class index -#--------------------------------------------------------------------------- - -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all -# compounds will be generated. Enable this if the project contains a lot of -# classes, structs, unions or interfaces. -# The default value is: YES. - -ALPHABETICAL_INDEX = YES - -# In case all classes in a project start with a common prefix, all classes will -# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag -# can be used to specify a prefix (or a list of prefixes) that should be ignored -# while generating the index headers. -# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. - -IGNORE_PREFIX = - -#--------------------------------------------------------------------------- -# Configuration options related to the HTML output -#--------------------------------------------------------------------------- - -# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output -# The default value is: YES. - -GENERATE_HTML = YES - -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a -# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of -# it. -# The default directory is: html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_OUTPUT = html - -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each -# generated HTML page (for example: .htm, .php, .asp). -# The default value is: .html. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FILE_EXTENSION = .html - -# The HTML_HEADER tag can be used to specify a user-defined HTML header file for -# each generated HTML page. If the tag is left blank doxygen will generate a -# standard header. -# -# To get valid HTML the header file that includes any scripts and style sheets -# that doxygen needs, which is dependent on the configuration options used (e.g. -# the setting GENERATE_TREEVIEW). It is highly recommended to start with a -# default header using -# doxygen -w html new_header.html new_footer.html new_stylesheet.css -# YourConfigFile -# and then modify the file new_header.html. See also section "Doxygen usage" -# for information on how to generate the default header that doxygen normally -# uses. -# Note: The header is subject to change so you typically have to regenerate the -# default header when upgrading to a newer version of doxygen. For a description -# of the possible markers and block names see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_HEADER = - -# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each -# generated HTML page. If the tag is left blank doxygen will generate a standard -# footer. See HTML_HEADER for more information on how to generate a default -# footer and what special commands can be used inside the footer. See also -# section "Doxygen usage" for information on how to generate the default footer -# that doxygen normally uses. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FOOTER = - -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style -# sheet that is used by each HTML page. It can be used to fine-tune the look of -# the HTML output. If left blank doxygen will generate a default style sheet. -# See also section "Doxygen usage" for information on how to generate the style -# sheet that doxygen normally uses. -# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as -# it is more robust and this tag (HTML_STYLESHEET) will in the future become -# obsolete. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_STYLESHEET = - -# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined -# cascading style sheets that are included after the standard style sheets -# created by doxygen. Using this option one can overrule certain style aspects. -# This is preferred over using HTML_STYLESHEET since it does not replace the -# standard style sheet and is therefore more robust against future updates. -# Doxygen will copy the style sheet files to the output directory. -# Note: The order of the extra style sheet files is of importance (e.g. the last -# style sheet in the list overrules the setting of the previous ones in the -# list). For an example see the documentation. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_STYLESHEET = - -# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or -# other source files which should be copied to the HTML output directory. Note -# that these files will be copied to the base HTML output directory. Use the -# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these -# files. In the HTML_STYLESHEET file, use the file name only. Also note that the -# files will be copied as-is; there are no commands or markers available. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_EXTRA_FILES = - -# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen -# will adjust the colors in the style sheet and background images according to -# this color. Hue is specified as an angle on a colorwheel, see -# https://en.wikipedia.org/wiki/Hue for more information. For instance the value -# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 -# purple, and 360 is red again. -# Minimum value: 0, maximum value: 359, default value: 220. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_HUE = 220 - -# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors -# in the HTML output. For a value of 0 the output will use grayscales only. A -# value of 255 will produce the most vivid colors. -# Minimum value: 0, maximum value: 255, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_SAT = 100 - -# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the -# luminance component of the colors in the HTML output. Values below 100 -# gradually make the output lighter, whereas values above 100 make the output -# darker. The value divided by 100 is the actual gamma applied, so 80 represents -# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not -# change the gamma. -# Minimum value: 40, maximum value: 240, default value: 80. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_COLORSTYLE_GAMMA = 80 - -# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML -# page will contain the date and time when the page was generated. Setting this -# to YES can help to show when doxygen was last run and thus if the -# documentation is up to date. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_TIMESTAMP = NO - -# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML -# documentation will contain a main index with vertical navigation menus that -# are dynamically created via JavaScript. If disabled, the navigation index will -# consists of multiple levels of tabs that are statically embedded in every HTML -# page. Disable this option to support browsers that do not have JavaScript, -# like the Qt help browser. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_MENUS = YES - -# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML -# documentation will contain sections that can be hidden and shown after the -# page has loaded. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_DYNAMIC_SECTIONS = NO - -# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries -# shown in the various tree structured indices initially; the user can expand -# and collapse entries dynamically later on. Doxygen will expand the tree to -# such a level that at most the specified number of entries are visible (unless -# a fully collapsed tree already exceeds this amount). So setting the number of -# entries 1 will produce a full collapsed tree by default. 0 is a special value -# representing an infinite number of entries and will result in a full expanded -# tree by default. -# Minimum value: 0, maximum value: 9999, default value: 100. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_INDEX_NUM_ENTRIES = 100 - -# If the GENERATE_DOCSET tag is set to YES, additional index files will be -# generated that can be used as input for Apple's Xcode 3 integrated development -# environment (see: -# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To -# create a documentation set, doxygen will generate a Makefile in the HTML -# output directory. Running make will produce the docset in that directory and -# running make install will install the docset in -# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at -# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy -# genXcode/_index.html for more information. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_DOCSET = NO - -# This tag determines the name of the docset feed. A documentation feed provides -# an umbrella under which multiple documentation sets from a single provider -# (such as a company or product suite) can be grouped. -# The default value is: Doxygen generated docs. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_FEEDNAME = "Doxygen generated docs" - -# This tag specifies a string that should uniquely identify the documentation -# set bundle. This should be a reverse domain-name style string, e.g. -# com.mycompany.MyDocSet. Doxygen will append .docset to the name. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_BUNDLE_ID = org.doxygen.Project - -# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify -# the documentation publisher. This should be a reverse domain-name style -# string, e.g. com.mycompany.MyDocSet.documentation. -# The default value is: org.doxygen.Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_ID = org.doxygen.Publisher - -# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. -# The default value is: Publisher. -# This tag requires that the tag GENERATE_DOCSET is set to YES. - -DOCSET_PUBLISHER_NAME = Publisher - -# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three -# additional HTML index files: index.hhp, index.hhc, and index.hhk. The -# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop -# (see: -# https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows. -# -# The HTML Help Workshop contains a compiler that can convert all HTML output -# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML -# files are now used as the Windows 98 help format, and will replace the old -# Windows help format (.hlp) on all Windows platforms in the future. Compressed -# HTML files also contain an index, a table of contents, and you can search for -# words in the documentation. The HTML workshop also contains a viewer for -# compressed HTML files. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_HTMLHELP = NO - -# The CHM_FILE tag can be used to specify the file name of the resulting .chm -# file. You can add a path in front of the file if the result should not be -# written to the html output directory. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_FILE = - -# The HHC_LOCATION tag can be used to specify the location (absolute path -# including file name) of the HTML help compiler (hhc.exe). If non-empty, -# doxygen will try to run the HTML help compiler on the generated index.hhp. -# The file has to be specified with full path. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -HHC_LOCATION = - -# The GENERATE_CHI flag controls if a separate .chi index file is generated -# (YES) or that it should be included in the main .chm file (NO). -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -GENERATE_CHI = NO - -# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) -# and project file content. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -CHM_INDEX_ENCODING = - -# The BINARY_TOC flag controls whether a binary table of contents is generated -# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it -# enables the Previous and Next buttons. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -BINARY_TOC = NO - -# The TOC_EXPAND flag can be set to YES to add extra items for group members to -# the table of contents of the HTML help documentation and to the tree view. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTMLHELP is set to YES. - -TOC_EXPAND = NO - -# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and -# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that -# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help -# (.qch) of the generated HTML documentation. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_QHP = NO - -# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify -# the file name of the resulting .qch file. The path specified is relative to -# the HTML output folder. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QCH_FILE = - -# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help -# Project output. For more information please see Qt Help Project / Namespace -# (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_NAMESPACE = org.doxygen.Project - -# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt -# Help Project output. For more information please see Qt Help Project / Virtual -# Folders (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). -# The default value is: doc. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_VIRTUAL_FOLDER = doc - -# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom -# filter to add. For more information please see Qt Help Project / Custom -# Filters (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_NAME = - -# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the -# custom filter to add. For more information please see Qt Help Project / Custom -# Filters (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_CUST_FILTER_ATTRS = - -# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this -# project's filter section matches. Qt Help Project / Filter Attributes (see: -# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHP_SECT_FILTER_ATTRS = - -# The QHG_LOCATION tag can be used to specify the location (absolute path -# including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to -# run qhelpgenerator on the generated .qhp file. -# This tag requires that the tag GENERATE_QHP is set to YES. - -QHG_LOCATION = - -# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be -# generated, together with the HTML files, they form an Eclipse help plugin. To -# install this plugin and make it available under the help contents menu in -# Eclipse, the contents of the directory containing the HTML and XML files needs -# to be copied into the plugins directory of eclipse. The name of the directory -# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. -# After copying Eclipse needs to be restarted before the help appears. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_ECLIPSEHELP = NO - -# A unique identifier for the Eclipse help plugin. When installing the plugin -# the directory name containing the HTML and XML files should also have this -# name. Each documentation set should have its own identifier. -# The default value is: org.doxygen.Project. -# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. - -ECLIPSE_DOC_ID = org.doxygen.Project - -# If you want full control over the layout of the generated HTML pages it might -# be necessary to disable the index and replace it with your own. The -# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top -# of each HTML page. A value of NO enables the index and the value YES disables -# it. Since the tabs in the index contain the same information as the navigation -# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -DISABLE_INDEX = YES - -# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index -# structure should be generated to display hierarchical information. If the tag -# value is set to YES, a side panel will be generated containing a tree-like -# index structure (just like the one that is generated for HTML Help). For this -# to work a browser that supports JavaScript, DHTML, CSS and frames is required -# (i.e. any modern browser). Windows users are probably better off using the -# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can -# further fine-tune the look of the index. As an example, the default style -# sheet generated by doxygen has an example that shows how to put an image at -# the root of the tree instead of the PROJECT_NAME. Since the tree basically has -# the same information as the tab index, you could consider setting -# DISABLE_INDEX to YES when enabling this option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -GENERATE_TREEVIEW = YES - -# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that -# doxygen will group on one line in the generated HTML documentation. -# -# Note that a value of 0 will completely suppress the enum values from appearing -# in the overview section. -# Minimum value: 0, maximum value: 20, default value: 4. -# This tag requires that the tag GENERATE_HTML is set to YES. - -ENUM_VALUES_PER_LINE = 4 - -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used -# to set the initial width (in pixels) of the frame in which the tree is shown. -# Minimum value: 0, maximum value: 1500, default value: 250. -# This tag requires that the tag GENERATE_HTML is set to YES. - -TREEVIEW_WIDTH = 250 - -# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to -# external symbols imported via tag files in a separate window. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -EXT_LINKS_IN_WINDOW = NO - -# If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg -# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see -# https://inkscape.org) to generate formulas as SVG images instead of PNGs for -# the HTML output. These images will generally look nicer at scaled resolutions. -# Possible values are: png (the default) and svg (looks nicer but requires the -# pdf2svg or inkscape tool). -# The default value is: png. -# This tag requires that the tag GENERATE_HTML is set to YES. - -HTML_FORMULA_FORMAT = png - -# Use this tag to change the font size of LaTeX formulas included as images in -# the HTML documentation. When you change the font size after a successful -# doxygen run you need to manually remove any form_*.png images from the HTML -# output directory to force them to be regenerated. -# Minimum value: 8, maximum value: 50, default value: 10. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_FONTSIZE = 10 - -# Use the FORMULA_TRANSPARENT tag to determine whether or not the images -# generated for formulas are transparent PNGs. Transparent PNGs are not -# supported properly for IE 6.0, but are supported on all modern browsers. -# -# Note that when changing this option you need to delete any form_*.png files in -# the HTML output directory before the changes have effect. -# The default value is: YES. -# This tag requires that the tag GENERATE_HTML is set to YES. - -FORMULA_TRANSPARENT = YES - -# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands -# to create new LaTeX commands to be used in formulas as building blocks. See -# the section "Including formulas" for details. - -FORMULA_MACROFILE = - -# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see -# https://www.mathjax.org) which uses client side JavaScript for the rendering -# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX -# installed or if you want to formulas look prettier in the HTML output. When -# enabled you may also need to install MathJax separately and configure the path -# to it using the MATHJAX_RELPATH option. -# The default value is: NO. -# This tag requires that the tag GENERATE_HTML is set to YES. - -USE_MATHJAX = NO - -# When MathJax is enabled you can set the default output format to be used for -# the MathJax output. See the MathJax site (see: -# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. -# Possible values are: HTML-CSS (which is slower, but has the best -# compatibility), NativeMML (i.e. MathML) and SVG. -# The default value is: HTML-CSS. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_FORMAT = HTML-CSS - -# When MathJax is enabled you need to specify the location relative to the HTML -# output directory using the MATHJAX_RELPATH option. The destination directory -# should contain the MathJax.js script. For instance, if the mathjax directory -# is located at the same level as the HTML output directory, then -# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax -# Content Delivery Network so you can quickly see the result without installing -# MathJax. However, it is strongly recommended to install a local copy of -# MathJax from https://www.mathjax.org before deployment. -# The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_RELPATH = https://cdn.jsdelivr.net/npm/mathjax@2 - -# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax -# extension names that should be enabled during MathJax rendering. For example -# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_EXTENSIONS = - -# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces -# of code that will be used on startup of the MathJax code. See the MathJax site -# (see: -# http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an -# example see the documentation. -# This tag requires that the tag USE_MATHJAX is set to YES. - -MATHJAX_CODEFILE = - -# When the SEARCHENGINE tag is enabled doxygen will generate a search box for -# the HTML output. The underlying search engine uses javascript and DHTML and -# should work on any modern browser. Note that when using HTML help -# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) -# there is already a search function so this one should typically be disabled. -# For large projects the javascript based search engine can be slow, then -# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to -# search using the keyboard; to jump to the search box use + S -# (what the is depends on the OS and browser, but it is typically -# , /