├── .cmake ├── grpc_common.cmake ├── os_release_info.cmake └── xpum_version.cmake ├── .dockerignore ├── .github └── workflows │ ├── ci.yml │ ├── linux.yml │ └── windows.yml ├── .gitignore ├── 3rd_party_src ├── ca-certificates_20230311.tar.xz ├── chardet_3.0.4.tar.gz ├── dmidecode_3.3.tar.xz ├── elfutils_0.186.tar.bz2 ├── iproute2-5.15.0.tar.gz ├── iptables-1.8.7.tar.bz2 ├── libcap2_2.44.tar.xz ├── libnl-3.5.0.tar.gz ├── pciutils-3.7.0.tar.gz ├── python3-certifi_2023.11.17.tar.gz └── readline-8.1.tar.gz ├── BUILDING.md ├── CMakeLists.txt ├── LICENSE.md ├── README.md ├── SECURITY.md ├── SMI_README.md ├── VERSION ├── amcmcli ├── CMakeLists.txt └── src │ ├── config.h.in │ └── main.cpp ├── cli ├── CMakeLists.txt └── src │ ├── cli_resource.cpp │ ├── cli_resource.h │ ├── cli_table.cpp │ ├── cli_table.h │ ├── cli_wrapper.cpp │ ├── cli_wrapper.h │ ├── comlet_agentset.cpp │ ├── comlet_agentset.h │ ├── comlet_base.h │ ├── comlet_config.cpp │ ├── comlet_config.h │ ├── comlet_diagnostic.cpp │ ├── comlet_diagnostic.h │ ├── comlet_discovery.cpp │ ├── comlet_discovery.h │ ├── comlet_dump.cpp │ ├── comlet_dump.h │ ├── comlet_firmware.cpp │ ├── comlet_firmware.h │ ├── comlet_group.cpp │ ├── comlet_group.h │ ├── comlet_health.cpp │ ├── comlet_health.h │ ├── comlet_log.cpp │ ├── comlet_log.h │ ├── comlet_policy.cpp │ ├── comlet_policy.h │ ├── comlet_ps.cpp │ ├── comlet_ps.h │ ├── comlet_reset.cpp │ ├── comlet_reset.h │ ├── comlet_sensor.cpp │ ├── comlet_sensor.h │ ├── comlet_statistics.cpp │ ├── comlet_statistics.h │ ├── comlet_topdown.cpp │ ├── comlet_topdown.h │ ├── comlet_topology.cpp │ ├── comlet_topology.h │ ├── comlet_version.cpp │ ├── comlet_version.h │ ├── comlet_vgpu.cpp │ ├── comlet_vgpu.h │ ├── config.h.in │ ├── core_stub.cpp │ ├── core_stub.h │ ├── core_stub │ ├── agentset_stub.cpp │ ├── devices_stub.cpp │ ├── dump_stub.cpp │ ├── firmware_stub.cpp │ ├── lib_core_stub.cpp │ ├── lib_core_stub.h │ └── statistics_stub.cpp │ ├── exit_code.cpp │ ├── exit_code.h │ ├── grpc_stub │ ├── agentset_stub.cpp │ ├── devices_stub.cpp │ ├── dump_stub.cpp │ ├── firmware_stub.cpp │ ├── grpc_core_stub.cpp │ ├── grpc_core_stub.h │ └── statistics_stub.cpp │ ├── help_formatter.cpp │ ├── help_formatter.h │ ├── local_functions.cpp │ ├── local_functions.h │ ├── logger.cpp │ ├── logger.h │ ├── pretty_table.cpp │ ├── pretty_table.h │ ├── utility.cpp │ ├── utility.h │ └── xpumcli.cpp ├── core ├── CMakeLists.txt ├── README.md ├── include │ ├── xpum_api.h │ └── xpum_structs.h ├── resources │ ├── amcfw │ │ └── Intel Simplified Software License August 2021_Final_08.20.21_v2.txt │ ├── config │ │ ├── diagnostics.conf │ │ ├── pci.conf │ │ ├── pci.ids │ │ ├── perf_metrics.conf │ │ ├── vgpu.conf │ │ ├── xpum.conf │ │ └── xpum.conf.template │ ├── kernels │ │ ├── LICENSE │ │ ├── test_multiple_memory_allocations.cl │ │ ├── test_multiple_memory_allocations.spv │ │ ├── ze_dp_compute.cl │ │ ├── ze_dp_compute.spv │ │ ├── ze_global_bw.cl │ │ ├── ze_global_bw.spv │ │ ├── ze_int_compute.cl │ │ ├── ze_int_compute.spv │ │ ├── ze_sp_compute.cl │ │ └── ze_sp_compute.spv │ └── mediadata │ │ ├── LICENSE │ │ ├── test_stream.264 │ │ ├── test_stream_1080p.265 │ │ └── test_stream_4K.265 └── src │ ├── amc │ ├── amc_manager.h │ ├── ipmi_amc_manager.cpp │ ├── ipmi_amc_manager.h │ └── redfish_amc_manager.h │ ├── api │ ├── api_types.h │ ├── device_model.cpp │ ├── device_model.h │ ├── internal_api.h │ ├── internal_api_structs.h │ ├── internal_dump_raw_data.cpp │ ├── internal_dump_raw_data.h │ ├── psc.h │ ├── realtime_metric_api.cpp │ ├── xpum_api.cpp │ └── xpum_topology.cpp │ ├── control │ ├── device_manager.cpp │ ├── device_manager.h │ └── device_manager_interface.h │ ├── core │ ├── core.cpp │ └── core.h │ ├── data_logic │ ├── avg_data_handler.cpp │ ├── avg_data_handler.h │ ├── counter_data_handler.cpp │ ├── counter_data_handler.h │ ├── data_handler.cpp │ ├── data_handler.h │ ├── data_handler_manager.cpp │ ├── data_handler_manager.h │ ├── data_logic.cpp │ ├── data_logic.h │ ├── data_logic_interface.h │ ├── db_persistency.cpp │ ├── db_persistency.h │ ├── engine_group_utilization_data_handler.cpp │ ├── engine_group_utilization_data_handler.h │ ├── engine_utilization_data_handler.cpp │ ├── engine_utilization_data_handler.h │ ├── fabric_throughput_data_handler.cpp │ ├── fabric_throughput_data_handler.h │ ├── gpu_utilization_data_handler.cpp │ ├── gpu_utilization_data_handler.h │ ├── multi_metrics_stats_data_handler.cpp │ ├── multi_metrics_stats_data_handler.h │ ├── perf_metrics_data_handler.cpp │ ├── perf_metrics_data_handler.h │ ├── persistency.h │ ├── shared_data.cpp │ ├── shared_data.h │ ├── stats_data_handler.cpp │ ├── stats_data_handler.h │ ├── time_weighted_average_data_handler.cpp │ └── time_weighted_average_data_handler.h │ ├── device │ ├── amcInBand.cpp │ ├── amcInBand.h │ ├── cpu │ │ └── .gitignore │ ├── device.cpp │ ├── device.h │ ├── engine_info.cpp │ ├── engine_info.h │ ├── fpga │ │ └── .gitignore │ ├── frequency.cpp │ ├── frequency.h │ ├── gpu │ │ ├── gpu_device.cpp │ │ ├── gpu_device.h │ │ ├── gpu_device_stub.cpp │ │ ├── gpu_device_stub.h │ │ └── level_zero │ │ │ ├── ze_stypes.h │ │ │ └── zes_intel_gpu_sysman.h │ ├── memoryEcc.cpp │ ├── memoryEcc.h │ ├── pcie_manager.cpp │ ├── pcie_manager.h │ ├── pciedown.cpp │ ├── pciedown.h │ ├── performancefactor.cpp │ ├── performancefactor.h │ ├── power.cpp │ ├── power.h │ ├── scheduler.cpp │ ├── scheduler.h │ ├── skuType.cpp │ ├── skuType.h │ ├── standby.cpp │ └── standby.h │ ├── diagnostic │ ├── diagnostic_data_type.h │ ├── diagnostic_manager.cpp │ ├── diagnostic_manager.h │ ├── diagnostic_manager_interface.h │ ├── helper.cpp │ ├── helper.h │ ├── precheck.cpp │ └── precheck.h │ ├── dump_raw_data │ ├── dump_manager.cpp │ ├── dump_manager.h │ ├── dump_task.cpp │ └── dump_task.h │ ├── event │ └── .gitignore │ ├── ext-include │ └── igsc_lib.h │ ├── firmware │ ├── firmware_manager.cpp │ ├── firmware_manager.h │ ├── fwcodedata_mgmt.cpp │ ├── fwcodedata_mgmt.h │ ├── fwdata_mgmt.cpp │ ├── fwdata_mgmt.h │ ├── igsc_err_msg.cpp │ ├── igsc_err_msg.h │ ├── latebinding_mgmt.cpp │ ├── latebinding_mgmt.h │ ├── load_igsc.h │ ├── oprom_fw_mgmt.cpp │ ├── oprom_fw_mgmt.h │ ├── psc_mgmt.cpp │ ├── psc_mgmt.h │ ├── psc_txcal_blob.cpp │ ├── psc_txcal_blob.h │ └── system_cmd.h │ ├── group │ ├── group_manager.cpp │ ├── group_manager.h │ ├── group_manager_interface.h │ ├── group_unit.cpp │ └── group_unit.h │ ├── health │ ├── health_data_type.h │ ├── health_manager.cpp │ ├── health_manager.h │ └── health_manager_interface.h │ ├── infrastructure │ ├── configuration.cpp │ ├── configuration.h │ ├── const.h │ ├── device_capability.h │ ├── device_process.cpp │ ├── device_process.h │ ├── device_property.cpp │ ├── device_property.h │ ├── device_type.h │ ├── device_util_by_proc.cpp │ ├── device_util_by_proc.h │ ├── engine_measurement_data.cpp │ ├── engine_measurement_data.h │ ├── error_code.h │ ├── exception │ │ ├── base_exception.h │ │ ├── ilegal_parameter_exception.h │ │ ├── ilegal_state_exception.h │ │ └── level_zero_initialization_exception.h │ ├── fabric_measurement_data.cpp │ ├── fabric_measurement_data.h │ ├── handle_lock.cpp │ ├── handle_lock.h │ ├── init_close_interface.h │ ├── logger.h │ ├── measurement_data.cpp │ ├── measurement_data.h │ ├── measurement_type.h │ ├── perf_measurement_data.cpp │ ├── perf_measurement_data.h │ ├── property.h │ ├── scheduled_thread_pool.cpp │ ├── scheduled_thread_pool.h │ ├── shared_queue.h │ ├── timer.cpp │ ├── timer.h │ ├── utility.cpp │ ├── utility.h │ ├── version.cpp │ ├── version.h │ └── xpum_config.h.in │ ├── ipmi │ ├── bsmc_interface.cpp │ ├── bsmc_interface.h │ ├── bsmc_ipmi_oem_cmd.h │ ├── bsmc_ipmi_storage_cmd.h │ ├── file_util.h │ ├── file_utils.cpp │ ├── firmware.cpp │ ├── fru.cpp │ ├── fru.h │ ├── hal.h │ ├── ipmi.cpp │ ├── ipmi.h │ ├── ipmi_interface.cpp │ ├── ipmi_interface.h │ ├── lcr.h │ ├── pci.cpp │ ├── pci.h │ ├── pci_address.h │ ├── scr.h │ ├── sdr.cpp │ ├── sdr.h │ ├── sensor_reading.cpp │ ├── sensor_reading.h │ ├── tool.h │ └── winopenssl.h │ ├── log │ ├── dbg_log.cpp │ └── dbg_log.h │ ├── monitor │ ├── monitor_manager.cpp │ ├── monitor_manager.h │ ├── monitor_manager_interface.h │ ├── monitor_task.cpp │ └── monitor_task.h │ ├── policy │ ├── .gitignore │ ├── policy_manager.cpp │ ├── policy_manager.h │ └── policy_manager_interface.h │ ├── redfish │ ├── dell_redfish_amc_manager.cpp │ ├── dell_redfish_amc_manager.h │ ├── detect_usb_interface.cpp │ ├── detect_usb_interface.h │ ├── hpe_redfish_amc_manager.cpp │ ├── hpe_redfish_amc_manager.h │ ├── intel_dnp_redfish_amc_manager.cpp │ ├── intel_dnp_redfish_amc_manager.h │ ├── lenovo_florence_redfish_amc_manager.cpp │ ├── lenovo_florence_redfish_amc_manager.h │ ├── libcurl.cpp │ ├── libcurl.h │ ├── redfish_amc_manager.cpp │ ├── smc_redfish_amc_manager.cpp │ ├── smc_redfish_amc_manager.h │ ├── util.cpp │ └── util.h │ ├── topology │ ├── hwinfo.cpp │ ├── hwinfo.h │ ├── pci_database.cpp │ ├── pci_database.h │ ├── topology.cpp │ ├── topology.h │ └── xe_link.h │ └── vgpu │ ├── precheck.cpp │ ├── precheck.h │ ├── vgpu_manager.cpp │ ├── vgpu_manager.h │ └── vgpu_types.h ├── daemon ├── CMakeLists.txt ├── agent_config_core_service_impl.cpp ├── compileProto.sh ├── config.h.in ├── core.proto ├── daemon.cpp ├── dump_raw_data_core_service_impl.cpp ├── firmware_update_service_impl.cpp ├── logger.h ├── statistics_core_service_impl.cpp ├── xpum.service.template.in ├── xpum_core_service_impl.cpp ├── xpum_core_service_impl.h └── xpum_core_service_unprivileged_impl.h ├── deployment ├── README.md ├── docker │ ├── Dockerfile.ubuntu.20.04 │ └── Dockerfile.ubuntu.22.04 └── kubernetes │ ├── daemonset │ ├── base │ │ ├── daemonset-intel-xpum.yaml │ │ └── kustomization.yaml │ └── overlays │ │ └── advanced-metrics │ │ ├── configmap-smarter-device-manager.yaml │ │ ├── daemonset-intel-xpum-advanced-metrics.yaml │ │ ├── daemonset-smarter-device-manager.yaml │ │ └── kustomization.yaml │ └── monitoring │ ├── grafana-dashboard.json │ ├── kube-prometheus-stack.values.yaml │ ├── service-intel-xpum.yaml │ └── servicemonitor-intel-xpum.yaml ├── doc ├── .gitignore ├── CLI_user_guide.md ├── CMakeLists.txt ├── Install_guide.md ├── Prometheus_Exported_Metrics.csv ├── README.md ├── amcmcli_user_guide.md ├── build.sh ├── hpe_redfish_host_interface_setup.md ├── img │ ├── Grafana.PNG │ ├── Grafana_config.PNG │ ├── Grafana_set_variables.PNG │ ├── architecture.PNG │ ├── cli_gpu_info.PNG │ ├── cli_settings.PNG │ ├── ilo-setup-virtual-nic.png │ └── ilo-setup.png ├── index.rst ├── installation.rst ├── requirements.txt ├── restful.rst ├── smi_index.rst ├── smi_install_guide.md ├── smi_user_guide.md ├── smidoc │ └── CMakeLists.txt ├── sphinxconf │ └── conf.py ├── win_index.rst ├── xpum_index.rst ├── xpum_win_user_guide.md └── xpumdoc │ └── CMakeLists.txt ├── docs ├── .doctrees │ ├── CLI_user_guide.doctree │ ├── Install_guide.doctree │ ├── README.doctree │ ├── REST_README.doctree │ ├── SMI_README.doctree │ ├── WIN_README.doctree │ ├── doxyrest-docutils.conf │ ├── environment.pickle │ ├── index.doctree │ ├── installation.doctree │ ├── restful.doctree │ ├── smi_index.doctree │ ├── smi_install_guide.doctree │ ├── smi_user_guide.doctree │ ├── smidoc │ │ └── rst │ │ │ ├── enum_xpum_agent_config_enum.doctree │ │ │ ├── enum_xpum_device_config_type_enum.doctree │ │ │ ├── enum_xpum_device_function_type_enum.doctree │ │ │ ├── enum_xpum_device_mode_enum.doctree │ │ │ ├── enum_xpum_device_property_name_enum.doctree │ │ │ ├── enum_xpum_device_type_enum.doctree │ │ │ ├── enum_xpum_diag_level_enum.doctree │ │ │ ├── enum_xpum_diag_result_type_enum.doctree │ │ │ ├── enum_xpum_diag_task_result_enum.doctree │ │ │ ├── enum_xpum_diag_task_type_enum.doctree │ │ │ ├── enum_xpum_dump_type_enum.doctree │ │ │ ├── enum_xpum_ecc_action_t.doctree │ │ │ ├── enum_xpum_ecc_state_t.doctree │ │ │ ├── enum_xpum_engine_type_enum.doctree │ │ │ ├── enum_xpum_engine_type_flags_t.doctree │ │ │ ├── enum_xpum_fabric_throughput_type_enum.doctree │ │ │ ├── enum_xpum_firmware_flash_result_enum.doctree │ │ │ ├── enum_xpum_firmware_type_enum.doctree │ │ │ ├── enum_xpum_frequency_type_t.doctree │ │ │ ├── enum_xpum_health_config_type_enum.doctree │ │ │ ├── enum_xpum_health_status_enum.doctree │ │ │ ├── enum_xpum_health_type_enum.doctree │ │ │ ├── enum_xpum_link_type_enum.doctree │ │ │ ├── enum_xpum_media_format_enum.doctree │ │ │ ├── enum_xpum_media_resolution_enum.doctree │ │ │ ├── enum_xpum_policy_action_type_enum.doctree │ │ │ ├── enum_xpum_policy_conditon_type_enum.doctree │ │ │ ├── enum_xpum_policy_type_enum.doctree │ │ │ ├── enum_xpum_precheck_component_status_t.doctree │ │ │ ├── enum_xpum_precheck_component_type_t.doctree │ │ │ ├── enum_xpum_precheck_error_category_t.doctree │ │ │ ├── enum_xpum_precheck_error_severity_t.doctree │ │ │ ├── enum_xpum_precheck_error_type_t.doctree │ │ │ ├── enum_xpum_ras_type_enum.doctree │ │ │ ├── enum_xpum_result_enum.doctree │ │ │ ├── enum_xpum_scheduler_mode_t.doctree │ │ │ ├── enum_xpum_standby_mode_t.doctree │ │ │ ├── enum_xpum_standby_type_t.doctree │ │ │ ├── enum_xpum_stats_type_enum.doctree │ │ │ ├── enum_xpum_version_enum.doctree │ │ │ ├── global.doctree │ │ │ ├── group_BASIC_API.doctree │ │ │ ├── group_CONFIGURATION_API.doctree │ │ │ ├── group_DEBUG_LOG_API.doctree │ │ │ ├── group_DEVICE_API.doctree │ │ │ ├── group_DIAGNOSTICS_API.doctree │ │ │ ├── group_FIRMWARE_UPDATE_API.doctree │ │ │ ├── group_HEALTH_API.doctree │ │ │ ├── group_REALTIME_METRIC_API.doctree │ │ │ ├── group_STATISTICS_API.doctree │ │ │ ├── group_TOPOLOGY_API.doctree │ │ │ ├── group_VGPU_API.doctree │ │ │ ├── index.doctree │ │ │ ├── struct_parent_switch.doctree │ │ │ ├── struct_xpum_amc_fw_version_t.doctree │ │ │ ├── struct_xpum_device_basic_info.doctree │ │ │ ├── struct_xpum_device_component_ratio_t.doctree │ │ │ ├── struct_xpum_device_components_ratio_t.doctree │ │ │ ├── struct_xpum_device_engine_metric_t.doctree │ │ │ ├── struct_xpum_device_engine_stats_t.doctree │ │ │ ├── struct_xpum_device_fabric_throughput_metric_t.doctree │ │ │ ├── struct_xpum_device_fabric_throughput_stats_t.doctree │ │ │ ├── struct_xpum_device_metric_data_t.doctree │ │ │ ├── struct_xpum_device_metrics_t.doctree │ │ │ ├── struct_xpum_device_performancefactor_t.doctree │ │ │ ├── struct_xpum_device_process_t.doctree │ │ │ ├── struct_xpum_device_properties_t.doctree │ │ │ ├── struct_xpum_device_property_t.doctree │ │ │ ├── struct_xpum_device_realtime_metric_t.doctree │ │ │ ├── struct_xpum_device_realtime_metrics_t.doctree │ │ │ ├── struct_xpum_device_stats_data_t.doctree │ │ │ ├── struct_xpum_device_stats_t.doctree │ │ │ ├── struct_xpum_device_util_by_process_t.doctree │ │ │ ├── struct_xpum_diag_component_info_t.doctree │ │ │ ├── struct_xpum_diag_media_codec_metrics_t.doctree │ │ │ ├── struct_xpum_diag_task_info_t.doctree │ │ │ ├── struct_xpum_diag_xe_link_throughput_t.doctree │ │ │ ├── struct_xpum_dump_raw_data_option_t.doctree │ │ │ ├── struct_xpum_dump_raw_data_task_t.doctree │ │ │ ├── struct_xpum_fabric_port_config_t.doctree │ │ │ ├── struct_xpum_firmware_flash_job.doctree │ │ │ ├── struct_xpum_firmware_flash_task_result_t.doctree │ │ │ ├── struct_xpum_frequency_range_t.doctree │ │ │ ├── struct_xpum_group_info_t.doctree │ │ │ ├── struct_xpum_health_data_t.doctree │ │ │ ├── struct_xpum_metrics_raw_data_t.doctree │ │ │ ├── struct_xpum_policy_action_t.doctree │ │ │ ├── struct_xpum_policy_condition_t.doctree │ │ │ ├── struct_xpum_policy_notify_callback_para_t.doctree │ │ │ ├── struct_xpum_policy_t.doctree │ │ │ ├── struct_xpum_power_burst_limit_t.doctree │ │ │ ├── struct_xpum_power_limits_t.doctree │ │ │ ├── struct_xpum_power_peak_limit_t.doctree │ │ │ ├── struct_xpum_power_prop_data_t.doctree │ │ │ ├── struct_xpum_power_sustained_limit_t.doctree │ │ │ ├── struct_xpum_precheck_component_info_t.doctree │ │ │ ├── struct_xpum_precheck_error_t.doctree │ │ │ ├── struct_xpum_precheck_options.doctree │ │ │ ├── struct_xpum_scheduler_data_t.doctree │ │ │ ├── struct_xpum_scheduler_debug_t.doctree │ │ │ ├── struct_xpum_scheduler_exclusive_t.doctree │ │ │ ├── struct_xpum_scheduler_timeout_t.doctree │ │ │ ├── struct_xpum_scheduler_timeslice_t.doctree │ │ │ ├── struct_xpum_sensor_reading_t.doctree │ │ │ ├── struct_xpum_standby_data_t.doctree │ │ │ ├── struct_xpum_topology_t.doctree │ │ │ ├── struct_xpum_version_info.doctree │ │ │ ├── struct_xpum_vf_metric_t.doctree │ │ │ ├── struct_xpum_vgpu_config_t.doctree │ │ │ ├── struct_xpum_vgpu_function_info_t.doctree │ │ │ ├── struct_xpum_vgpu_precheck_result_t.doctree │ │ │ ├── struct_xpum_xelink_topo_info.doctree │ │ │ └── struct_xpum_xelink_unit.doctree │ ├── win_index.doctree │ ├── xpum_index.doctree │ ├── xpum_win_user_guide.doctree │ └── xpumdoc │ │ └── rst │ │ ├── enum_xpum_agent_config_enum.doctree │ │ ├── enum_xpum_device_config_type_enum.doctree │ │ ├── enum_xpum_device_function_type_enum.doctree │ │ ├── enum_xpum_device_mode_enum.doctree │ │ ├── enum_xpum_device_property_name_enum.doctree │ │ ├── enum_xpum_device_type_enum.doctree │ │ ├── enum_xpum_diag_level_enum.doctree │ │ ├── enum_xpum_diag_result_type_enum.doctree │ │ ├── enum_xpum_diag_task_result_enum.doctree │ │ ├── enum_xpum_diag_task_type_enum.doctree │ │ ├── enum_xpum_dump_type_enum.doctree │ │ ├── enum_xpum_ecc_action_t.doctree │ │ ├── enum_xpum_ecc_state_t.doctree │ │ ├── enum_xpum_engine_type_enum.doctree │ │ ├── enum_xpum_engine_type_flags_t.doctree │ │ ├── enum_xpum_fabric_throughput_type_enum.doctree │ │ ├── enum_xpum_firmware_flash_result_enum.doctree │ │ ├── enum_xpum_firmware_type_enum.doctree │ │ ├── enum_xpum_frequency_type_t.doctree │ │ ├── enum_xpum_health_config_type_enum.doctree │ │ ├── enum_xpum_health_status_enum.doctree │ │ ├── enum_xpum_health_type_enum.doctree │ │ ├── enum_xpum_link_type_enum.doctree │ │ ├── enum_xpum_media_format_enum.doctree │ │ ├── enum_xpum_media_resolution_enum.doctree │ │ ├── enum_xpum_policy_action_type_enum.doctree │ │ ├── enum_xpum_policy_conditon_type_enum.doctree │ │ ├── enum_xpum_policy_type_enum.doctree │ │ ├── enum_xpum_precheck_component_status_t.doctree │ │ ├── enum_xpum_precheck_component_type_t.doctree │ │ ├── enum_xpum_precheck_error_category_t.doctree │ │ ├── enum_xpum_precheck_error_severity_t.doctree │ │ ├── enum_xpum_precheck_error_type_t.doctree │ │ ├── enum_xpum_ras_type_enum.doctree │ │ ├── enum_xpum_result_enum.doctree │ │ ├── enum_xpum_scheduler_mode_t.doctree │ │ ├── enum_xpum_standby_mode_t.doctree │ │ ├── enum_xpum_standby_type_t.doctree │ │ ├── enum_xpum_stats_type_enum.doctree │ │ ├── enum_xpum_version_enum.doctree │ │ ├── global.doctree │ │ ├── group_AGENT_SETTING_API.doctree │ │ ├── group_BASIC_API.doctree │ │ ├── group_CONFIGURATION_API.doctree │ │ ├── group_DEBUG_LOG_API.doctree │ │ ├── group_DEVICE_API.doctree │ │ ├── group_DIAGNOSTICS_API.doctree │ │ ├── group_DUMP_RAW_DATA_API.doctree │ │ ├── group_FIRMWARE_UPDATE_API.doctree │ │ ├── group_GROUP_MANAGEMENT_API.doctree │ │ ├── group_HEALTH_API.doctree │ │ ├── group_POLICY_API.doctree │ │ ├── group_REALTIME_METRIC_API.doctree │ │ ├── group_SENSOR_READING_API.doctree │ │ ├── group_STATISTICS_API.doctree │ │ ├── group_TOPOLOGY_API.doctree │ │ ├── group_VGPU_API.doctree │ │ ├── index.doctree │ │ ├── struct_parent_switch.doctree │ │ ├── struct_xpum_amc_fw_version_t.doctree │ │ ├── struct_xpum_device_basic_info.doctree │ │ ├── struct_xpum_device_component_ratio_t.doctree │ │ ├── struct_xpum_device_components_ratio_t.doctree │ │ ├── struct_xpum_device_engine_metric_t.doctree │ │ ├── struct_xpum_device_engine_stats_t.doctree │ │ ├── struct_xpum_device_fabric_throughput_metric_t.doctree │ │ ├── struct_xpum_device_fabric_throughput_stats_t.doctree │ │ ├── struct_xpum_device_metric_data_t.doctree │ │ ├── struct_xpum_device_metrics_t.doctree │ │ ├── struct_xpum_device_performancefactor_t.doctree │ │ ├── struct_xpum_device_process_t.doctree │ │ ├── struct_xpum_device_properties_t.doctree │ │ ├── struct_xpum_device_property_t.doctree │ │ ├── struct_xpum_device_realtime_metric_t.doctree │ │ ├── struct_xpum_device_realtime_metrics_t.doctree │ │ ├── struct_xpum_device_stats_data_t.doctree │ │ ├── struct_xpum_device_stats_t.doctree │ │ ├── struct_xpum_device_util_by_process_t.doctree │ │ ├── struct_xpum_diag_component_info_t.doctree │ │ ├── struct_xpum_diag_media_codec_metrics_t.doctree │ │ ├── struct_xpum_diag_task_info_t.doctree │ │ ├── struct_xpum_diag_xe_link_throughput_t.doctree │ │ ├── struct_xpum_dump_raw_data_option_t.doctree │ │ ├── struct_xpum_dump_raw_data_task_t.doctree │ │ ├── struct_xpum_fabric_port_config_t.doctree │ │ ├── struct_xpum_firmware_flash_job.doctree │ │ ├── struct_xpum_firmware_flash_task_result_t.doctree │ │ ├── struct_xpum_frequency_range_t.doctree │ │ ├── struct_xpum_group_info_t.doctree │ │ ├── struct_xpum_health_data_t.doctree │ │ ├── struct_xpum_metrics_raw_data_t.doctree │ │ ├── struct_xpum_policy_action_t.doctree │ │ ├── struct_xpum_policy_condition_t.doctree │ │ ├── struct_xpum_policy_notify_callback_para_t.doctree │ │ ├── struct_xpum_policy_t.doctree │ │ ├── struct_xpum_power_burst_limit_t.doctree │ │ ├── struct_xpum_power_limits_t.doctree │ │ ├── struct_xpum_power_peak_limit_t.doctree │ │ ├── struct_xpum_power_prop_data_t.doctree │ │ ├── struct_xpum_power_sustained_limit_t.doctree │ │ ├── struct_xpum_precheck_component_info_t.doctree │ │ ├── struct_xpum_precheck_error_t.doctree │ │ ├── struct_xpum_precheck_options.doctree │ │ ├── struct_xpum_scheduler_data_t.doctree │ │ ├── struct_xpum_scheduler_debug_t.doctree │ │ ├── struct_xpum_scheduler_exclusive_t.doctree │ │ ├── struct_xpum_scheduler_timeout_t.doctree │ │ ├── struct_xpum_scheduler_timeslice_t.doctree │ │ ├── struct_xpum_sensor_reading_t.doctree │ │ ├── struct_xpum_standby_data_t.doctree │ │ ├── struct_xpum_topology_t.doctree │ │ ├── struct_xpum_version_info.doctree │ │ ├── struct_xpum_vf_metric_t.doctree │ │ ├── struct_xpum_vgpu_config_t.doctree │ │ ├── struct_xpum_vgpu_function_info_t.doctree │ │ ├── struct_xpum_vgpu_precheck_result_t.doctree │ │ ├── struct_xpum_xelink_topo_info.doctree │ │ └── struct_xpum_xelink_unit.doctree ├── .nojekyll ├── CLI_user_guide.html ├── Install_guide.html ├── README.html ├── REST_README.html ├── SMI_README.html ├── WIN_README.html ├── _images │ ├── Grafana.PNG │ ├── architecture.PNG │ ├── cli_gpu_info.PNG │ └── cli_settings.PNG ├── _static │ ├── _sphinx_javascript_frameworks_compat.js │ ├── basic.css │ ├── css │ │ ├── badge_only.css │ │ ├── fonts │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── lato-bold-italic.woff │ │ │ ├── lato-bold-italic.woff2 │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bold.woff2 │ │ │ ├── lato-normal-italic.woff │ │ │ ├── lato-normal-italic.woff2 │ │ │ ├── lato-normal.woff │ │ │ └── lato-normal.woff2 │ │ └── theme.css │ ├── doctools.js │ ├── documentation_options.js │ ├── doxyrest-pygments.css │ ├── doxyrest-sphinx_rtd_theme.css │ ├── file.png │ ├── jquery.js │ ├── js │ │ ├── badge_only.js │ │ ├── html5shiv-printshiv.min.js │ │ ├── html5shiv.min.js │ │ └── theme.js │ ├── language_data.js │ ├── minus.png │ ├── plus.png │ ├── pygments.css │ ├── searchtools.js │ ├── sphinx_highlight.js │ └── target-highlight.js ├── genindex.html ├── http-routingtable.html ├── index.html ├── installation.html ├── objects.inv ├── restful.html ├── search.html ├── searchindex.js ├── smi_index.html ├── smi_install_guide.html ├── smi_user_guide.html ├── smidoc │ └── rst │ │ ├── enum_xpum_agent_config_enum.html │ │ ├── enum_xpum_device_config_type_enum.html │ │ ├── enum_xpum_device_function_type_enum.html │ │ ├── enum_xpum_device_mode_enum.html │ │ ├── enum_xpum_device_property_name_enum.html │ │ ├── enum_xpum_device_type_enum.html │ │ ├── enum_xpum_diag_level_enum.html │ │ ├── enum_xpum_diag_result_type_enum.html │ │ ├── enum_xpum_diag_task_result_enum.html │ │ ├── enum_xpum_diag_task_type_enum.html │ │ ├── enum_xpum_dump_type_enum.html │ │ ├── enum_xpum_ecc_action_t.html │ │ ├── enum_xpum_ecc_state_t.html │ │ ├── enum_xpum_engine_type_enum.html │ │ ├── enum_xpum_engine_type_flags_t.html │ │ ├── enum_xpum_fabric_throughput_type_enum.html │ │ ├── enum_xpum_firmware_flash_result_enum.html │ │ ├── enum_xpum_firmware_type_enum.html │ │ ├── enum_xpum_frequency_type_t.html │ │ ├── enum_xpum_health_config_type_enum.html │ │ ├── enum_xpum_health_status_enum.html │ │ ├── enum_xpum_health_type_enum.html │ │ ├── enum_xpum_link_type_enum.html │ │ ├── enum_xpum_media_format_enum.html │ │ ├── enum_xpum_media_resolution_enum.html │ │ ├── enum_xpum_policy_action_type_enum.html │ │ ├── enum_xpum_policy_conditon_type_enum.html │ │ ├── enum_xpum_policy_type_enum.html │ │ ├── enum_xpum_precheck_component_status_t.html │ │ ├── enum_xpum_precheck_component_type_t.html │ │ ├── enum_xpum_precheck_error_category_t.html │ │ ├── enum_xpum_precheck_error_severity_t.html │ │ ├── enum_xpum_precheck_error_type_t.html │ │ ├── enum_xpum_ras_type_enum.html │ │ ├── enum_xpum_result_enum.html │ │ ├── enum_xpum_scheduler_mode_t.html │ │ ├── enum_xpum_standby_mode_t.html │ │ ├── enum_xpum_standby_type_t.html │ │ ├── enum_xpum_stats_type_enum.html │ │ ├── enum_xpum_version_enum.html │ │ ├── global.html │ │ ├── group_BASIC_API.html │ │ ├── group_CONFIGURATION_API.html │ │ ├── group_DEBUG_LOG_API.html │ │ ├── group_DEVICE_API.html │ │ ├── group_DIAGNOSTICS_API.html │ │ ├── group_FIRMWARE_UPDATE_API.html │ │ ├── group_HEALTH_API.html │ │ ├── group_REALTIME_METRIC_API.html │ │ ├── group_STATISTICS_API.html │ │ ├── group_TOPOLOGY_API.html │ │ ├── group_VGPU_API.html │ │ ├── index.html │ │ ├── struct_parent_switch.html │ │ ├── struct_xpum_amc_fw_version_t.html │ │ ├── struct_xpum_device_basic_info.html │ │ ├── struct_xpum_device_component_ratio_t.html │ │ ├── struct_xpum_device_components_ratio_t.html │ │ ├── struct_xpum_device_engine_metric_t.html │ │ ├── struct_xpum_device_engine_stats_t.html │ │ ├── struct_xpum_device_fabric_throughput_metric_t.html │ │ ├── struct_xpum_device_fabric_throughput_stats_t.html │ │ ├── struct_xpum_device_metric_data_t.html │ │ ├── struct_xpum_device_metrics_t.html │ │ ├── struct_xpum_device_performancefactor_t.html │ │ ├── struct_xpum_device_process_t.html │ │ ├── struct_xpum_device_properties_t.html │ │ ├── struct_xpum_device_property_t.html │ │ ├── struct_xpum_device_realtime_metric_t.html │ │ ├── struct_xpum_device_realtime_metrics_t.html │ │ ├── struct_xpum_device_stats_data_t.html │ │ ├── struct_xpum_device_stats_t.html │ │ ├── struct_xpum_device_util_by_process_t.html │ │ ├── struct_xpum_diag_component_info_t.html │ │ ├── struct_xpum_diag_media_codec_metrics_t.html │ │ ├── struct_xpum_diag_task_info_t.html │ │ ├── struct_xpum_diag_xe_link_throughput_t.html │ │ ├── struct_xpum_dump_raw_data_option_t.html │ │ ├── struct_xpum_dump_raw_data_task_t.html │ │ ├── struct_xpum_fabric_port_config_t.html │ │ ├── struct_xpum_firmware_flash_job.html │ │ ├── struct_xpum_firmware_flash_task_result_t.html │ │ ├── struct_xpum_frequency_range_t.html │ │ ├── struct_xpum_group_info_t.html │ │ ├── struct_xpum_health_data_t.html │ │ ├── struct_xpum_metrics_raw_data_t.html │ │ ├── struct_xpum_policy_action_t.html │ │ ├── struct_xpum_policy_condition_t.html │ │ ├── struct_xpum_policy_notify_callback_para_t.html │ │ ├── struct_xpum_policy_t.html │ │ ├── struct_xpum_power_burst_limit_t.html │ │ ├── struct_xpum_power_limits_t.html │ │ ├── struct_xpum_power_peak_limit_t.html │ │ ├── struct_xpum_power_prop_data_t.html │ │ ├── struct_xpum_power_sustained_limit_t.html │ │ ├── struct_xpum_precheck_component_info_t.html │ │ ├── struct_xpum_precheck_error_t.html │ │ ├── struct_xpum_precheck_options.html │ │ ├── struct_xpum_scheduler_data_t.html │ │ ├── struct_xpum_scheduler_debug_t.html │ │ ├── struct_xpum_scheduler_exclusive_t.html │ │ ├── struct_xpum_scheduler_timeout_t.html │ │ ├── struct_xpum_scheduler_timeslice_t.html │ │ ├── struct_xpum_sensor_reading_t.html │ │ ├── struct_xpum_standby_data_t.html │ │ ├── struct_xpum_topology_t.html │ │ ├── struct_xpum_version_info.html │ │ ├── struct_xpum_vf_metric_t.html │ │ ├── struct_xpum_vgpu_config_t.html │ │ ├── struct_xpum_vgpu_function_info_t.html │ │ ├── struct_xpum_vgpu_precheck_result_t.html │ │ ├── struct_xpum_xelink_topo_info.html │ │ └── struct_xpum_xelink_unit.html ├── win_index.html ├── xpum_index.html ├── xpum_win_user_guide.html └── xpumdoc │ └── rst │ ├── enum_xpum_agent_config_enum.html │ ├── enum_xpum_device_config_type_enum.html │ ├── enum_xpum_device_function_type_enum.html │ ├── enum_xpum_device_mode_enum.html │ ├── enum_xpum_device_property_name_enum.html │ ├── enum_xpum_device_type_enum.html │ ├── enum_xpum_diag_level_enum.html │ ├── enum_xpum_diag_result_type_enum.html │ ├── enum_xpum_diag_task_result_enum.html │ ├── enum_xpum_diag_task_type_enum.html │ ├── enum_xpum_dump_type_enum.html │ ├── enum_xpum_ecc_action_t.html │ ├── enum_xpum_ecc_state_t.html │ ├── enum_xpum_engine_type_enum.html │ ├── enum_xpum_engine_type_flags_t.html │ ├── enum_xpum_fabric_throughput_type_enum.html │ ├── enum_xpum_firmware_flash_result_enum.html │ ├── enum_xpum_firmware_type_enum.html │ ├── enum_xpum_frequency_type_t.html │ ├── enum_xpum_health_config_type_enum.html │ ├── enum_xpum_health_status_enum.html │ ├── enum_xpum_health_type_enum.html │ ├── enum_xpum_link_type_enum.html │ ├── enum_xpum_media_format_enum.html │ ├── enum_xpum_media_resolution_enum.html │ ├── enum_xpum_policy_action_type_enum.html │ ├── enum_xpum_policy_conditon_type_enum.html │ ├── enum_xpum_policy_type_enum.html │ ├── enum_xpum_precheck_component_status_t.html │ ├── enum_xpum_precheck_component_type_t.html │ ├── enum_xpum_precheck_error_category_t.html │ ├── enum_xpum_precheck_error_severity_t.html │ ├── enum_xpum_precheck_error_type_t.html │ ├── enum_xpum_ras_type_enum.html │ ├── enum_xpum_result_enum.html │ ├── enum_xpum_scheduler_mode_t.html │ ├── enum_xpum_standby_mode_t.html │ ├── enum_xpum_standby_type_t.html │ ├── enum_xpum_stats_type_enum.html │ ├── enum_xpum_version_enum.html │ ├── global.html │ ├── group_AGENT_SETTING_API.html │ ├── group_BASIC_API.html │ ├── group_CONFIGURATION_API.html │ ├── group_DEBUG_LOG_API.html │ ├── group_DEVICE_API.html │ ├── group_DIAGNOSTICS_API.html │ ├── group_DUMP_RAW_DATA_API.html │ ├── group_FIRMWARE_UPDATE_API.html │ ├── group_GROUP_MANAGEMENT_API.html │ ├── group_HEALTH_API.html │ ├── group_POLICY_API.html │ ├── group_REALTIME_METRIC_API.html │ ├── group_SENSOR_READING_API.html │ ├── group_STATISTICS_API.html │ ├── group_TOPOLOGY_API.html │ ├── group_VGPU_API.html │ ├── index.html │ ├── struct_parent_switch.html │ ├── struct_xpum_amc_fw_version_t.html │ ├── struct_xpum_device_basic_info.html │ ├── struct_xpum_device_component_ratio_t.html │ ├── struct_xpum_device_components_ratio_t.html │ ├── struct_xpum_device_engine_metric_t.html │ ├── struct_xpum_device_engine_stats_t.html │ ├── struct_xpum_device_fabric_throughput_metric_t.html │ ├── struct_xpum_device_fabric_throughput_stats_t.html │ ├── struct_xpum_device_metric_data_t.html │ ├── struct_xpum_device_metrics_t.html │ ├── struct_xpum_device_performancefactor_t.html │ ├── struct_xpum_device_process_t.html │ ├── struct_xpum_device_properties_t.html │ ├── struct_xpum_device_property_t.html │ ├── struct_xpum_device_realtime_metric_t.html │ ├── struct_xpum_device_realtime_metrics_t.html │ ├── struct_xpum_device_stats_data_t.html │ ├── struct_xpum_device_stats_t.html │ ├── struct_xpum_device_util_by_process_t.html │ ├── struct_xpum_diag_component_info_t.html │ ├── struct_xpum_diag_media_codec_metrics_t.html │ ├── struct_xpum_diag_task_info_t.html │ ├── struct_xpum_diag_xe_link_throughput_t.html │ ├── struct_xpum_dump_raw_data_option_t.html │ ├── struct_xpum_dump_raw_data_task_t.html │ ├── struct_xpum_fabric_port_config_t.html │ ├── struct_xpum_firmware_flash_job.html │ ├── struct_xpum_firmware_flash_task_result_t.html │ ├── struct_xpum_frequency_range_t.html │ ├── struct_xpum_group_info_t.html │ ├── struct_xpum_health_data_t.html │ ├── struct_xpum_metrics_raw_data_t.html │ ├── struct_xpum_policy_action_t.html │ ├── struct_xpum_policy_condition_t.html │ ├── struct_xpum_policy_notify_callback_para_t.html │ ├── struct_xpum_policy_t.html │ ├── struct_xpum_power_burst_limit_t.html │ ├── struct_xpum_power_limits_t.html │ ├── struct_xpum_power_peak_limit_t.html │ ├── struct_xpum_power_prop_data_t.html │ ├── struct_xpum_power_sustained_limit_t.html │ ├── struct_xpum_precheck_component_info_t.html │ ├── struct_xpum_precheck_error_t.html │ ├── struct_xpum_precheck_options.html │ ├── struct_xpum_scheduler_data_t.html │ ├── struct_xpum_scheduler_debug_t.html │ ├── struct_xpum_scheduler_exclusive_t.html │ ├── struct_xpum_scheduler_timeout_t.html │ ├── struct_xpum_scheduler_timeslice_t.html │ ├── struct_xpum_sensor_reading_t.html │ ├── struct_xpum_standby_data_t.html │ ├── struct_xpum_topology_t.html │ ├── struct_xpum_version_info.html │ ├── struct_xpum_vf_metric_t.html │ ├── struct_xpum_vgpu_config_t.html │ ├── struct_xpum_vgpu_function_info_t.html │ ├── struct_xpum_vgpu_precheck_result_t.html │ ├── struct_xpum_xelink_topo_info.html │ └── struct_xpum_xelink_unit.html ├── icinga ├── README.md ├── check_intel_gpu.py ├── check_xpu_smi.conf ├── check_xpu_smi.py └── gpu.conf ├── install ├── script │ ├── deb │ │ ├── postinst.in │ │ └── prerm.in │ └── rpm │ │ ├── postin.in │ │ ├── posttrans.in │ │ └── preun.in └── tools │ └── rest │ ├── enable_restful.sh │ ├── keytool.sh │ └── rest_config.py ├── intel_graphics_linux_pgp.pem ├── rest ├── .gitignore ├── CMakeLists.txt ├── Grafana_dashboard_setup_guide_for_XPUM.md ├── README.md ├── gen_doc.py ├── gen_grpc_py_files.sh ├── grafana-dashboard.json ├── gunicorn.conf.py ├── prometheus_exporter │ ├── api_pb2.py │ ├── api_pb2_grpc.py │ ├── dev_file_converter.py │ ├── kube_pod_resource.py │ ├── prometheus_exporter.py │ └── prometheus_exporter_types.py ├── requirements.txt ├── stub │ ├── __init__.py │ ├── agent_settings.py │ ├── config.py │ ├── devices.py │ ├── diagnostics.py │ ├── dump_raw_data.py │ ├── firmwares.py │ ├── groups.py │ ├── grpc_stub.py │ ├── health.py │ ├── policy.py │ ├── ps.py │ ├── sensor.py │ ├── statistics.py │ ├── topology.py │ ├── versions.py │ ├── vgpu.py │ └── xpum_enums.py ├── views │ ├── __init__.py │ ├── agent_settings.py │ ├── device_config.py │ ├── devices.py │ ├── diagnostics.py │ ├── dump_raw_data.py │ ├── exporter.py │ ├── firmwares.py │ ├── groups.py │ ├── health.py │ ├── policy.py │ ├── ps.py │ ├── sensor.py │ ├── statistics.py │ ├── topology.py │ ├── versions.py │ └── vgpu.py ├── xpum_logger.py ├── xpum_rest.service.template.in └── xpum_rest_main.py ├── third-party-programs.txt ├── third_party ├── CLI11 │ ├── LICENSE │ ├── README.md │ ├── VERSION │ └── include │ │ └── CLI │ │ ├── App.hpp │ │ ├── CLI.hpp │ │ ├── Config.hpp │ │ ├── ConfigFwd.hpp │ │ ├── Error.hpp │ │ ├── Formatter.hpp │ │ ├── FormatterFwd.hpp │ │ ├── Macros.hpp │ │ ├── Option.hpp │ │ ├── Split.hpp │ │ ├── StringTools.hpp │ │ ├── Timer.hpp │ │ ├── TypeTools.hpp │ │ ├── Validators.hpp │ │ └── Version.hpp ├── hwloc │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── Makefile.am │ ├── Makefile.in │ ├── NEWS │ ├── README │ ├── VERSION │ ├── aclocal.m4 │ ├── autogen.sh │ ├── build.sh │ ├── config │ │ ├── ar-lib │ │ ├── compile │ │ ├── config.guess │ │ ├── config.sub │ │ ├── depcomp │ │ ├── distscript.sh │ │ ├── hwloc.m4 │ │ ├── hwloc_check_attributes.m4 │ │ ├── hwloc_check_vendor.m4 │ │ ├── hwloc_check_visibility.m4 │ │ ├── hwloc_components.m4 │ │ ├── hwloc_get_version.sh │ │ ├── hwloc_internal.m4 │ │ ├── hwloc_pkg.m4 │ │ ├── install-sh │ │ ├── libtool-big-sur-fixup.patch │ │ ├── libtool.m4 │ │ ├── ltmain.sh │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ ├── missing │ │ ├── netloc.m4 │ │ └── test-driver │ ├── configure │ ├── configure.ac │ ├── contrib │ │ ├── completion │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── bash │ │ │ │ └── hwloc │ │ ├── hwloc-ps.www │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── assets │ │ │ │ ├── index.html │ │ │ │ ├── main.css │ │ │ │ ├── script.js │ │ │ │ └── style.css │ │ │ ├── client.js │ │ │ └── package.json │ │ ├── hwloc-valgrind.supp │ │ ├── misc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── dynamic_SVG_example.html │ │ │ ├── hwloc-export-sysfs │ │ │ └── hwloc-tweak-osindex.c │ │ ├── systemd │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── hwloc-dump-hwdata.service.in │ │ ├── windows-cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── check-versions.sh │ │ │ ├── private_config.h.in │ │ │ └── static-components.h.in │ │ └── windows │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── app.manifest │ │ │ ├── check-versions.sh │ │ │ ├── hwloc-annotate.vcxproj │ │ │ ├── hwloc-annotate.vcxproj.filters │ │ │ ├── hwloc-bind.vcxproj │ │ │ ├── hwloc-bind.vcxproj.filters │ │ │ ├── hwloc-calc.vcxproj │ │ │ ├── hwloc-calc.vcxproj.filters │ │ │ ├── hwloc-diff.vcxproj │ │ │ ├── hwloc-diff.vcxproj.filters │ │ │ ├── hwloc-distrib.vcxproj │ │ │ ├── hwloc-distrib.vcxproj.filters │ │ │ ├── hwloc-gather-cpuid.vcxproj │ │ │ ├── hwloc-gather-cpuid.vcxproj.filters │ │ │ ├── hwloc-info.vcxproj │ │ │ ├── hwloc-info.vcxproj.filters │ │ │ ├── hwloc-patch.vcxproj │ │ │ ├── hwloc-patch.vcxproj.filters │ │ │ ├── hwloc.sln │ │ │ ├── hwloc_config.h │ │ │ ├── libhwloc.vcxproj │ │ │ ├── libhwloc.vcxproj.filters │ │ │ ├── lstopo-no-graphics.vcxproj │ │ │ ├── lstopo-no-graphics.vcxproj.filters │ │ │ ├── lstopo-win.vcxproj │ │ │ ├── lstopo-win.vcxproj.filters │ │ │ ├── lstopo.vcxproj │ │ │ ├── lstopo.vcxproj.filters │ │ │ ├── private_config.h │ │ │ └── static-components.h │ ├── doc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.sed │ │ ├── doxygen-config.cfg.in │ │ ├── doxygen-doc │ │ │ ├── html │ │ │ │ ├── a00125_source.html │ │ │ │ ├── a00128_source.html │ │ │ │ ├── a00131_source.html │ │ │ │ ├── a00134_source.html │ │ │ │ ├── a00137_source.html │ │ │ │ ├── a00140_source.html │ │ │ │ ├── a00143_source.html │ │ │ │ ├── a00146_source.html │ │ │ │ ├── a00149_source.html │ │ │ │ ├── a00152_source.html │ │ │ │ ├── a00155_source.html │ │ │ │ ├── a00158_source.html │ │ │ │ ├── a00161_source.html │ │ │ │ ├── a00164_source.html │ │ │ │ ├── a00167_source.html │ │ │ │ ├── a00170_source.html │ │ │ │ ├── a00173_source.html │ │ │ │ ├── a00176_source.html │ │ │ │ ├── a00179_source.html │ │ │ │ ├── a00182_source.html │ │ │ │ ├── a00185_source.html │ │ │ │ ├── a00188_source.html │ │ │ │ ├── a00191_source.html │ │ │ │ ├── a00194.html │ │ │ │ ├── a00195.html │ │ │ │ ├── a00196.html │ │ │ │ ├── a00197.html │ │ │ │ ├── a00198.html │ │ │ │ ├── a00199.html │ │ │ │ ├── a00200.html │ │ │ │ ├── a00201.html │ │ │ │ ├── a00202.html │ │ │ │ ├── a00203.html │ │ │ │ ├── a00204.html │ │ │ │ ├── a00205.html │ │ │ │ ├── a00206.html │ │ │ │ ├── a00207.html │ │ │ │ ├── a00208.html │ │ │ │ ├── a00209.html │ │ │ │ ├── a00210.html │ │ │ │ ├── a00211.html │ │ │ │ ├── a00212.html │ │ │ │ ├── a00213.html │ │ │ │ ├── a00214.html │ │ │ │ ├── a00215.html │ │ │ │ ├── a00216.html │ │ │ │ ├── a00217.html │ │ │ │ ├── a00218.html │ │ │ │ ├── a00219.html │ │ │ │ ├── a00220.html │ │ │ │ ├── a00221.html │ │ │ │ ├── a00222.html │ │ │ │ ├── a00223.html │ │ │ │ ├── a00224.html │ │ │ │ ├── a00225.html │ │ │ │ ├── a00226.html │ │ │ │ ├── a00227.html │ │ │ │ ├── a00228.html │ │ │ │ ├── a00229.html │ │ │ │ ├── a00230.html │ │ │ │ ├── a00231.html │ │ │ │ ├── a00232.html │ │ │ │ ├── a00233.html │ │ │ │ ├── a00234.html │ │ │ │ ├── a00235.html │ │ │ │ ├── a00236.html │ │ │ │ ├── a00237.html │ │ │ │ ├── a00238.html │ │ │ │ ├── a00239.html │ │ │ │ ├── a00240.html │ │ │ │ ├── a00241.html │ │ │ │ ├── a00242.html │ │ │ │ ├── a00243.html │ │ │ │ ├── a00244.html │ │ │ │ ├── a00245.html │ │ │ │ ├── a00246.html │ │ │ │ ├── a00247.html │ │ │ │ ├── a00248.html │ │ │ │ ├── a00249.html │ │ │ │ ├── a00250.html │ │ │ │ ├── a00254.html │ │ │ │ ├── a00258.html │ │ │ │ ├── a00262.html │ │ │ │ ├── a00266.html │ │ │ │ ├── a00270.html │ │ │ │ ├── a00274.html │ │ │ │ ├── a00278.html │ │ │ │ ├── a00282.html │ │ │ │ ├── a00298.html │ │ │ │ ├── a00302.html │ │ │ │ ├── a00306.html │ │ │ │ ├── a00310.html │ │ │ │ ├── a00314.html │ │ │ │ ├── a00318.html │ │ │ │ ├── a00322.html │ │ │ │ ├── a00326.html │ │ │ │ ├── a00330.html │ │ │ │ ├── a00334.html │ │ │ │ ├── a00338.html │ │ │ │ ├── a00350.html │ │ │ │ ├── a00354.html │ │ │ │ ├── a00358.html │ │ │ │ ├── a00362.html │ │ │ │ ├── a00366.html │ │ │ │ ├── a00370.html │ │ │ │ ├── a00374.html │ │ │ │ ├── a00378.html │ │ │ │ ├── a00382.html │ │ │ │ ├── a00386.html │ │ │ │ ├── a00390.html │ │ │ │ ├── a00394.html │ │ │ │ ├── a00395.html │ │ │ │ ├── a00396.html │ │ │ │ ├── a00397.html │ │ │ │ ├── a00398.html │ │ │ │ ├── a00399.html │ │ │ │ ├── a00400.html │ │ │ │ ├── a00401.html │ │ │ │ ├── a00402.html │ │ │ │ ├── a00403.html │ │ │ │ ├── a00404.html │ │ │ │ ├── a00405.html │ │ │ │ ├── a00406.html │ │ │ │ ├── a00407.html │ │ │ │ ├── a00408.html │ │ │ │ ├── a00409.html │ │ │ │ ├── a00410.html │ │ │ │ ├── a00411.html │ │ │ │ ├── a00412.html │ │ │ │ ├── a00413.html │ │ │ │ ├── annotated.html │ │ │ │ ├── bc_s.png │ │ │ │ ├── bdwn.png │ │ │ │ ├── classes.html │ │ │ │ ├── closed.png │ │ │ │ ├── devel09-pci.png │ │ │ │ ├── diagram.png │ │ │ │ ├── dir_5cb306d949c7931a3b6c77517393dd34.html │ │ │ │ ├── dir_d44c64559bbebec7f509842c48db8b23.html │ │ │ │ ├── doc.png │ │ │ │ ├── doxygen.css │ │ │ │ ├── doxygen.svg │ │ │ │ ├── dudley.png │ │ │ │ ├── dynsections.js │ │ │ │ ├── emmett.png │ │ │ │ ├── folderclosed.png │ │ │ │ ├── folderopen.png │ │ │ │ ├── functions.html │ │ │ │ ├── functions_vars.html │ │ │ │ ├── hagrid.png │ │ │ │ ├── index.html │ │ │ │ ├── jquery.js │ │ │ │ ├── menu.js │ │ │ │ ├── menudata.js │ │ │ │ ├── modules.html │ │ │ │ ├── nav_f.png │ │ │ │ ├── nav_g.png │ │ │ │ ├── nav_h.png │ │ │ │ ├── netloc_design.png │ │ │ │ ├── netloc_draw.png │ │ │ │ ├── open.png │ │ │ │ ├── pages.html │ │ │ │ ├── ppc64-full-with-smt.png │ │ │ │ ├── ppc64-with-smt.png │ │ │ │ ├── ppc64-without-smt.png │ │ │ │ ├── splitbar.png │ │ │ │ ├── sync_off.png │ │ │ │ ├── sync_on.png │ │ │ │ ├── tab_a.png │ │ │ │ ├── tab_b.png │ │ │ │ ├── tab_h.png │ │ │ │ ├── tab_s.png │ │ │ │ └── tabs.css │ │ │ ├── hwloc-a4.pdf │ │ │ ├── hwloc-letter.pdf │ │ │ ├── hwloc.tag │ │ │ └── man │ │ │ │ └── man3 │ │ │ │ ├── HWLOC_ALLOW_FLAG_ALL.3 │ │ │ │ ├── HWLOC_ALLOW_FLAG_CUSTOM.3 │ │ │ │ ├── HWLOC_ALLOW_FLAG_LOCAL_RESTRICTIONS.3 │ │ │ │ ├── HWLOC_API_VERSION.3 │ │ │ │ ├── HWLOC_COMPONENT_ABI.3 │ │ │ │ ├── HWLOC_COMPONENT_TYPE_DISC.3 │ │ │ │ ├── HWLOC_COMPONENT_TYPE_XML.3 │ │ │ │ ├── HWLOC_CPUBIND_NOMEMBIND.3 │ │ │ │ ├── HWLOC_CPUBIND_PROCESS.3 │ │ │ │ ├── HWLOC_CPUBIND_STRICT.3 │ │ │ │ ├── HWLOC_CPUBIND_THREAD.3 │ │ │ │ ├── HWLOC_DISC_PHASE_ANNOTATE.3 │ │ │ │ ├── HWLOC_DISC_PHASE_CPU.3 │ │ │ │ ├── HWLOC_DISC_PHASE_GLOBAL.3 │ │ │ │ ├── HWLOC_DISC_PHASE_IO.3 │ │ │ │ ├── HWLOC_DISC_PHASE_MEMORY.3 │ │ │ │ ├── HWLOC_DISC_PHASE_MISC.3 │ │ │ │ ├── HWLOC_DISC_PHASE_PCI.3 │ │ │ │ ├── HWLOC_DISC_PHASE_TWEAK.3 │ │ │ │ ├── HWLOC_DISC_STATUS_FLAG_GOT_ALLOWED_RESOURCES.3 │ │ │ │ ├── HWLOC_DISTANCES_ADD_FLAG_GROUP.3 │ │ │ │ ├── HWLOC_DISTANCES_ADD_FLAG_GROUP_INACCURATE.3 │ │ │ │ ├── HWLOC_DISTANCES_KIND_FROM_OS.3 │ │ │ │ ├── HWLOC_DISTANCES_KIND_FROM_USER.3 │ │ │ │ ├── HWLOC_DISTANCES_KIND_HETEROGENEOUS_TYPES.3 │ │ │ │ ├── HWLOC_DISTANCES_KIND_MEANS_BANDWIDTH.3 │ │ │ │ ├── HWLOC_DISTANCES_KIND_MEANS_LATENCY.3 │ │ │ │ ├── HWLOC_DISTANCES_TRANSFORM_LINKS.3 │ │ │ │ ├── HWLOC_DISTANCES_TRANSFORM_MERGE_SWITCH_PORTS.3 │ │ │ │ ├── HWLOC_DISTANCES_TRANSFORM_REMOVE_NULL.3 │ │ │ │ ├── HWLOC_DISTANCES_TRANSFORM_TRANSITIVE_CLOSURE.3 │ │ │ │ ├── HWLOC_DISTRIB_FLAG_REVERSE.3 │ │ │ │ ├── HWLOC_LOCAL_NUMANODE_FLAG_ALL.3 │ │ │ │ ├── HWLOC_LOCAL_NUMANODE_FLAG_LARGER_LOCALITY.3 │ │ │ │ ├── HWLOC_LOCAL_NUMANODE_FLAG_SMALLER_LOCALITY.3 │ │ │ │ ├── HWLOC_LOCATION_TYPE_CPUSET.3 │ │ │ │ ├── HWLOC_LOCATION_TYPE_OBJECT.3 │ │ │ │ ├── HWLOC_MEMATTR_FLAG_HIGHER_FIRST.3 │ │ │ │ ├── HWLOC_MEMATTR_FLAG_LOWER_FIRST.3 │ │ │ │ ├── HWLOC_MEMATTR_FLAG_NEED_INITIATOR.3 │ │ │ │ ├── HWLOC_MEMATTR_ID_BANDWIDTH.3 │ │ │ │ ├── HWLOC_MEMATTR_ID_CAPACITY.3 │ │ │ │ ├── HWLOC_MEMATTR_ID_LATENCY.3 │ │ │ │ ├── HWLOC_MEMATTR_ID_LOCALITY.3 │ │ │ │ ├── HWLOC_MEMATTR_ID_READ_BANDWIDTH.3 │ │ │ │ ├── HWLOC_MEMATTR_ID_READ_LATENCY.3 │ │ │ │ ├── HWLOC_MEMATTR_ID_WRITE_BANDWIDTH.3 │ │ │ │ ├── HWLOC_MEMATTR_ID_WRITE_LATENCY.3 │ │ │ │ ├── HWLOC_MEMBIND_BIND.3 │ │ │ │ ├── HWLOC_MEMBIND_BYNODESET.3 │ │ │ │ ├── HWLOC_MEMBIND_DEFAULT.3 │ │ │ │ ├── HWLOC_MEMBIND_FIRSTTOUCH.3 │ │ │ │ ├── HWLOC_MEMBIND_INTERLEAVE.3 │ │ │ │ ├── HWLOC_MEMBIND_MIGRATE.3 │ │ │ │ ├── HWLOC_MEMBIND_MIXED.3 │ │ │ │ ├── HWLOC_MEMBIND_NEXTTOUCH.3 │ │ │ │ ├── HWLOC_MEMBIND_NOCPUBIND.3 │ │ │ │ ├── HWLOC_MEMBIND_PROCESS.3 │ │ │ │ ├── HWLOC_MEMBIND_STRICT.3 │ │ │ │ ├── HWLOC_MEMBIND_THREAD.3 │ │ │ │ ├── HWLOC_OBJ_BRIDGE.3 │ │ │ │ ├── HWLOC_OBJ_BRIDGE_HOST.3 │ │ │ │ ├── HWLOC_OBJ_BRIDGE_PCI.3 │ │ │ │ ├── HWLOC_OBJ_CACHE_DATA.3 │ │ │ │ ├── HWLOC_OBJ_CACHE_INSTRUCTION.3 │ │ │ │ ├── HWLOC_OBJ_CACHE_UNIFIED.3 │ │ │ │ ├── HWLOC_OBJ_CORE.3 │ │ │ │ ├── HWLOC_OBJ_DIE.3 │ │ │ │ ├── HWLOC_OBJ_GROUP.3 │ │ │ │ ├── HWLOC_OBJ_L1CACHE.3 │ │ │ │ ├── HWLOC_OBJ_L1ICACHE.3 │ │ │ │ ├── HWLOC_OBJ_L2CACHE.3 │ │ │ │ ├── HWLOC_OBJ_L2ICACHE.3 │ │ │ │ ├── HWLOC_OBJ_L3CACHE.3 │ │ │ │ ├── HWLOC_OBJ_L3ICACHE.3 │ │ │ │ ├── HWLOC_OBJ_L4CACHE.3 │ │ │ │ ├── HWLOC_OBJ_L5CACHE.3 │ │ │ │ ├── HWLOC_OBJ_MACHINE.3 │ │ │ │ ├── HWLOC_OBJ_MEMCACHE.3 │ │ │ │ ├── HWLOC_OBJ_MISC.3 │ │ │ │ ├── HWLOC_OBJ_NUMANODE.3 │ │ │ │ ├── HWLOC_OBJ_OSDEV_BLOCK.3 │ │ │ │ ├── HWLOC_OBJ_OSDEV_COPROC.3 │ │ │ │ ├── HWLOC_OBJ_OSDEV_DMA.3 │ │ │ │ ├── HWLOC_OBJ_OSDEV_GPU.3 │ │ │ │ ├── HWLOC_OBJ_OSDEV_NETWORK.3 │ │ │ │ ├── HWLOC_OBJ_OSDEV_OPENFABRICS.3 │ │ │ │ ├── HWLOC_OBJ_OS_DEVICE.3 │ │ │ │ ├── HWLOC_OBJ_PACKAGE.3 │ │ │ │ ├── HWLOC_OBJ_PCI_DEVICE.3 │ │ │ │ ├── HWLOC_OBJ_PU.3 │ │ │ │ ├── HWLOC_RESTRICT_FLAG_ADAPT_IO.3 │ │ │ │ ├── HWLOC_RESTRICT_FLAG_ADAPT_MISC.3 │ │ │ │ ├── HWLOC_RESTRICT_FLAG_BYNODESET.3 │ │ │ │ ├── HWLOC_RESTRICT_FLAG_REMOVE_CPULESS.3 │ │ │ │ ├── HWLOC_RESTRICT_FLAG_REMOVE_MEMLESS.3 │ │ │ │ ├── HWLOC_SHOW_ALL_ERRORS.3 │ │ │ │ ├── HWLOC_SHOW_CRITICAL_ERRORS.3 │ │ │ │ ├── HWLOC_TOPOLOGY_COMPONENTS_FLAG_BLACKLIST.3 │ │ │ │ ├── HWLOC_TOPOLOGY_DIFF_APPLY_REVERSE.3 │ │ │ │ ├── HWLOC_TOPOLOGY_DIFF_OBJ_ATTR.3 │ │ │ │ ├── HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_INFO.3 │ │ │ │ ├── HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_NAME.3 │ │ │ │ ├── HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_SIZE.3 │ │ │ │ ├── HWLOC_TOPOLOGY_DIFF_TOO_COMPLEX.3 │ │ │ │ ├── HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_IGNORE_MEMORY.3 │ │ │ │ ├── HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_ATTRS.3 │ │ │ │ ├── HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_NO_EXTENDED_TYPES.3 │ │ │ │ ├── HWLOC_TOPOLOGY_EXPORT_SYNTHETIC_FLAG_V1.3 │ │ │ │ ├── HWLOC_TOPOLOGY_EXPORT_XML_FLAG_V1.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_DONT_CHANGE_BINDING.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_IMPORT_SUPPORT.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_INCLUDE_DISALLOWED.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_IS_THISSYSTEM.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_NO_CPUKINDS.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_NO_DISTANCES.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_NO_MEMATTRS.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_RESTRICT_TO_CPUBINDING.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_RESTRICT_TO_MEMBINDING.3 │ │ │ │ ├── HWLOC_TOPOLOGY_FLAG_THISSYSTEM_ALLOWED_RESOURCES.3 │ │ │ │ ├── HWLOC_TYPE_DEPTH_BRIDGE.3 │ │ │ │ ├── HWLOC_TYPE_DEPTH_MEMCACHE.3 │ │ │ │ ├── HWLOC_TYPE_DEPTH_MISC.3 │ │ │ │ ├── HWLOC_TYPE_DEPTH_MULTIPLE.3 │ │ │ │ ├── HWLOC_TYPE_DEPTH_NUMANODE.3 │ │ │ │ ├── HWLOC_TYPE_DEPTH_OS_DEVICE.3 │ │ │ │ ├── HWLOC_TYPE_DEPTH_PCI_DEVICE.3 │ │ │ │ ├── HWLOC_TYPE_DEPTH_UNKNOWN.3 │ │ │ │ ├── HWLOC_TYPE_FILTER_KEEP_ALL.3 │ │ │ │ ├── HWLOC_TYPE_FILTER_KEEP_IMPORTANT.3 │ │ │ │ ├── HWLOC_TYPE_FILTER_KEEP_NONE.3 │ │ │ │ ├── HWLOC_TYPE_FILTER_KEEP_STRUCTURE.3 │ │ │ │ ├── HWLOC_TYPE_UNORDERED.3 │ │ │ │ ├── hwloc__insert_object_by_cpuset.3 │ │ │ │ ├── hwloc_alloc.3 │ │ │ │ ├── hwloc_alloc_membind.3 │ │ │ │ ├── hwloc_alloc_membind_policy.3 │ │ │ │ ├── hwloc_alloc_setup_object.3 │ │ │ │ ├── hwloc_allow_flags_e.3 │ │ │ │ ├── hwloc_backend.3 │ │ │ │ ├── hwloc_backend_alloc.3 │ │ │ │ ├── hwloc_backend_distances_add_commit.3 │ │ │ │ ├── hwloc_backend_distances_add_create.3 │ │ │ │ ├── hwloc_backend_distances_add_handle_t.3 │ │ │ │ ├── hwloc_backend_distances_add_values.3 │ │ │ │ ├── hwloc_backend_enable.3 │ │ │ │ ├── hwloc_bitmap_allbut.3 │ │ │ │ ├── hwloc_bitmap_alloc.3 │ │ │ │ ├── hwloc_bitmap_alloc_full.3 │ │ │ │ ├── hwloc_bitmap_and.3 │ │ │ │ ├── hwloc_bitmap_andnot.3 │ │ │ │ ├── hwloc_bitmap_asprintf.3 │ │ │ │ ├── hwloc_bitmap_clr.3 │ │ │ │ ├── hwloc_bitmap_clr_range.3 │ │ │ │ ├── hwloc_bitmap_compare.3 │ │ │ │ ├── hwloc_bitmap_compare_first.3 │ │ │ │ ├── hwloc_bitmap_copy.3 │ │ │ │ ├── hwloc_bitmap_dup.3 │ │ │ │ ├── hwloc_bitmap_fill.3 │ │ │ │ ├── hwloc_bitmap_first.3 │ │ │ │ ├── hwloc_bitmap_first_unset.3 │ │ │ │ ├── hwloc_bitmap_foreach_begin.3 │ │ │ │ ├── hwloc_bitmap_foreach_end.3 │ │ │ │ ├── hwloc_bitmap_free.3 │ │ │ │ ├── hwloc_bitmap_from_ith_ulong.3 │ │ │ │ ├── hwloc_bitmap_from_ulong.3 │ │ │ │ ├── hwloc_bitmap_from_ulongs.3 │ │ │ │ ├── hwloc_bitmap_intersects.3 │ │ │ │ ├── hwloc_bitmap_isequal.3 │ │ │ │ ├── hwloc_bitmap_isfull.3 │ │ │ │ ├── hwloc_bitmap_isincluded.3 │ │ │ │ ├── hwloc_bitmap_isset.3 │ │ │ │ ├── hwloc_bitmap_iszero.3 │ │ │ │ ├── hwloc_bitmap_last.3 │ │ │ │ ├── hwloc_bitmap_last_unset.3 │ │ │ │ ├── hwloc_bitmap_list_asprintf.3 │ │ │ │ ├── hwloc_bitmap_list_snprintf.3 │ │ │ │ ├── hwloc_bitmap_list_sscanf.3 │ │ │ │ ├── hwloc_bitmap_next.3 │ │ │ │ ├── hwloc_bitmap_next_unset.3 │ │ │ │ ├── hwloc_bitmap_not.3 │ │ │ │ ├── hwloc_bitmap_nr_ulongs.3 │ │ │ │ ├── hwloc_bitmap_only.3 │ │ │ │ ├── hwloc_bitmap_or.3 │ │ │ │ ├── hwloc_bitmap_set.3 │ │ │ │ ├── hwloc_bitmap_set_ith_ulong.3 │ │ │ │ ├── hwloc_bitmap_set_range.3 │ │ │ │ ├── hwloc_bitmap_singlify.3 │ │ │ │ ├── hwloc_bitmap_singlify_per_core.3 │ │ │ │ ├── hwloc_bitmap_snprintf.3 │ │ │ │ ├── hwloc_bitmap_sscanf.3 │ │ │ │ ├── hwloc_bitmap_t.3 │ │ │ │ ├── hwloc_bitmap_taskset_asprintf.3 │ │ │ │ ├── hwloc_bitmap_taskset_snprintf.3 │ │ │ │ ├── hwloc_bitmap_taskset_sscanf.3 │ │ │ │ ├── hwloc_bitmap_to_ith_ulong.3 │ │ │ │ ├── hwloc_bitmap_to_ulong.3 │ │ │ │ ├── hwloc_bitmap_to_ulongs.3 │ │ │ │ ├── hwloc_bitmap_weight.3 │ │ │ │ ├── hwloc_bitmap_xor.3 │ │ │ │ ├── hwloc_bitmap_zero.3 │ │ │ │ ├── hwloc_bridge_covers_pcibus.3 │ │ │ │ ├── hwloc_cl_device_topology_amd.3 │ │ │ │ ├── hwloc_compare_types.3 │ │ │ │ ├── hwloc_component.3 │ │ │ │ ├── hwloc_component_type_e.3 │ │ │ │ ├── hwloc_component_type_t.3 │ │ │ │ ├── hwloc_const_bitmap_t.3 │ │ │ │ ├── hwloc_const_cpuset_t.3 │ │ │ │ ├── hwloc_const_nodeset_t.3 │ │ │ │ ├── hwloc_cpubind_flags_t.3 │ │ │ │ ├── hwloc_cpukinds_get_by_cpuset.3 │ │ │ │ ├── hwloc_cpukinds_get_info.3 │ │ │ │ ├── hwloc_cpukinds_get_nr.3 │ │ │ │ ├── hwloc_cpukinds_register.3 │ │ │ │ ├── hwloc_cpuset_from_glibc_sched_affinity.3 │ │ │ │ ├── hwloc_cpuset_from_linux_libnuma_bitmask.3 │ │ │ │ ├── hwloc_cpuset_from_linux_libnuma_ulongs.3 │ │ │ │ ├── hwloc_cpuset_from_nodeset.3 │ │ │ │ ├── hwloc_cpuset_t.3 │ │ │ │ ├── hwloc_cpuset_to_glibc_sched_affinity.3 │ │ │ │ ├── hwloc_cpuset_to_linux_libnuma_bitmask.3 │ │ │ │ ├── hwloc_cpuset_to_linux_libnuma_ulongs.3 │ │ │ │ ├── hwloc_cpuset_to_nodeset.3 │ │ │ │ ├── hwloc_cuda_get_device_cpuset.3 │ │ │ │ ├── hwloc_cuda_get_device_osdev.3 │ │ │ │ ├── hwloc_cuda_get_device_osdev_by_index.3 │ │ │ │ ├── hwloc_cuda_get_device_pci_ids.3 │ │ │ │ ├── hwloc_cuda_get_device_pcidev.3 │ │ │ │ ├── hwloc_cudart_get_device_cpuset.3 │ │ │ │ ├── hwloc_cudart_get_device_osdev_by_index.3 │ │ │ │ ├── hwloc_cudart_get_device_pci_ids.3 │ │ │ │ ├── hwloc_cudart_get_device_pcidev.3 │ │ │ │ ├── hwloc_disc_component.3 │ │ │ │ ├── hwloc_disc_phase_e.3 │ │ │ │ ├── hwloc_disc_phase_t.3 │ │ │ │ ├── hwloc_disc_status.3 │ │ │ │ ├── hwloc_disc_status_flag_e.3 │ │ │ │ ├── hwloc_distances_add_commit.3 │ │ │ │ ├── hwloc_distances_add_create.3 │ │ │ │ ├── hwloc_distances_add_flag_e.3 │ │ │ │ ├── hwloc_distances_add_handle_t.3 │ │ │ │ ├── hwloc_distances_add_values.3 │ │ │ │ ├── hwloc_distances_get.3 │ │ │ │ ├── hwloc_distances_get_by_depth.3 │ │ │ │ ├── hwloc_distances_get_by_name.3 │ │ │ │ ├── hwloc_distances_get_by_type.3 │ │ │ │ ├── hwloc_distances_get_name.3 │ │ │ │ ├── hwloc_distances_kind_e.3 │ │ │ │ ├── hwloc_distances_obj_index.3 │ │ │ │ ├── hwloc_distances_obj_pair_values.3 │ │ │ │ ├── hwloc_distances_release.3 │ │ │ │ ├── hwloc_distances_release_remove.3 │ │ │ │ ├── hwloc_distances_remove.3 │ │ │ │ ├── hwloc_distances_remove_by_depth.3 │ │ │ │ ├── hwloc_distances_remove_by_type.3 │ │ │ │ ├── hwloc_distances_s.3 │ │ │ │ ├── hwloc_distances_transform.3 │ │ │ │ ├── hwloc_distances_transform_e.3 │ │ │ │ ├── hwloc_distrib.3 │ │ │ │ ├── hwloc_distrib_flags_e.3 │ │ │ │ ├── hwloc_export_obj_userdata.3 │ │ │ │ ├── hwloc_export_obj_userdata_base64.3 │ │ │ │ ├── hwloc_filter_check_keep_object.3 │ │ │ │ ├── hwloc_filter_check_keep_object_type.3 │ │ │ │ ├── hwloc_filter_check_osdev_subtype_important.3 │ │ │ │ ├── hwloc_filter_check_pcidev_subtype_important.3 │ │ │ │ ├── hwloc_free.3 │ │ │ │ ├── hwloc_free_xmlbuffer.3 │ │ │ │ ├── hwloc_get_ancestor_obj_by_depth.3 │ │ │ │ ├── hwloc_get_ancestor_obj_by_type.3 │ │ │ │ ├── hwloc_get_api_version.3 │ │ │ │ ├── hwloc_get_area_membind.3 │ │ │ │ ├── hwloc_get_area_memlocation.3 │ │ │ │ ├── hwloc_get_cache_covering_cpuset.3 │ │ │ │ ├── hwloc_get_cache_type_depth.3 │ │ │ │ ├── hwloc_get_child_covering_cpuset.3 │ │ │ │ ├── hwloc_get_closest_objs.3 │ │ │ │ ├── hwloc_get_common_ancestor_obj.3 │ │ │ │ ├── hwloc_get_cpubind.3 │ │ │ │ ├── hwloc_get_depth_type.3 │ │ │ │ ├── hwloc_get_first_largest_obj_inside_cpuset.3 │ │ │ │ ├── hwloc_get_largest_objs_inside_cpuset.3 │ │ │ │ ├── hwloc_get_last_cpu_location.3 │ │ │ │ ├── hwloc_get_local_numanode_objs.3 │ │ │ │ ├── hwloc_get_membind.3 │ │ │ │ ├── hwloc_get_memory_parents_depth.3 │ │ │ │ ├── hwloc_get_nbobjs_by_depth.3 │ │ │ │ ├── hwloc_get_nbobjs_by_type.3 │ │ │ │ ├── hwloc_get_nbobjs_inside_cpuset_by_depth.3 │ │ │ │ ├── hwloc_get_nbobjs_inside_cpuset_by_type.3 │ │ │ │ ├── hwloc_get_next_bridge.3 │ │ │ │ ├── hwloc_get_next_child.3 │ │ │ │ ├── hwloc_get_next_obj_by_depth.3 │ │ │ │ ├── hwloc_get_next_obj_by_type.3 │ │ │ │ ├── hwloc_get_next_obj_covering_cpuset_by_depth.3 │ │ │ │ ├── hwloc_get_next_obj_covering_cpuset_by_type.3 │ │ │ │ ├── hwloc_get_next_obj_inside_cpuset_by_depth.3 │ │ │ │ ├── hwloc_get_next_obj_inside_cpuset_by_type.3 │ │ │ │ ├── hwloc_get_next_osdev.3 │ │ │ │ ├── hwloc_get_next_pcidev.3 │ │ │ │ ├── hwloc_get_non_io_ancestor_obj.3 │ │ │ │ ├── hwloc_get_numanode_obj_by_os_index.3 │ │ │ │ ├── hwloc_get_obj_below_array_by_type.3 │ │ │ │ ├── hwloc_get_obj_below_by_type.3 │ │ │ │ ├── hwloc_get_obj_by_depth.3 │ │ │ │ ├── hwloc_get_obj_by_type.3 │ │ │ │ ├── hwloc_get_obj_covering_cpuset.3 │ │ │ │ ├── hwloc_get_obj_index_inside_cpuset.3 │ │ │ │ ├── hwloc_get_obj_inside_cpuset_by_depth.3 │ │ │ │ ├── hwloc_get_obj_inside_cpuset_by_type.3 │ │ │ │ ├── hwloc_get_obj_with_same_locality.3 │ │ │ │ ├── hwloc_get_pcidev_by_busid.3 │ │ │ │ ├── hwloc_get_pcidev_by_busidstring.3 │ │ │ │ ├── hwloc_get_proc_cpubind.3 │ │ │ │ ├── hwloc_get_proc_last_cpu_location.3 │ │ │ │ ├── hwloc_get_proc_membind.3 │ │ │ │ ├── hwloc_get_pu_obj_by_os_index.3 │ │ │ │ ├── hwloc_get_root_obj.3 │ │ │ │ ├── hwloc_get_shared_cache_covering_obj.3 │ │ │ │ ├── hwloc_get_thread_cpubind.3 │ │ │ │ ├── hwloc_get_type_depth.3 │ │ │ │ ├── hwloc_get_type_depth_e.3 │ │ │ │ ├── hwloc_get_type_or_above_depth.3 │ │ │ │ ├── hwloc_get_type_or_below_depth.3 │ │ │ │ ├── hwloc_gl_get_display_by_osdev.3 │ │ │ │ ├── hwloc_gl_get_display_osdev_by_name.3 │ │ │ │ ├── hwloc_gl_get_display_osdev_by_port_device.3 │ │ │ │ ├── hwloc_hide_errors.3 │ │ │ │ ├── hwloc_ibv_get_device_cpuset.3 │ │ │ │ ├── hwloc_ibv_get_device_osdev.3 │ │ │ │ ├── hwloc_ibv_get_device_osdev_by_name.3 │ │ │ │ ├── hwloc_info_s.3 │ │ │ │ ├── hwloc_insert_object_by_parent.3 │ │ │ │ ├── hwloc_intro.3 │ │ │ │ ├── hwloc_levelzero_get_device_cpuset.3 │ │ │ │ ├── hwloc_levelzero_get_device_osdev.3 │ │ │ │ ├── hwloc_linux_get_tid_cpubind.3 │ │ │ │ ├── hwloc_linux_get_tid_last_cpu_location.3 │ │ │ │ ├── hwloc_linux_read_path_as_cpumask.3 │ │ │ │ ├── hwloc_linux_set_tid_cpubind.3 │ │ │ │ ├── hwloc_local_numanode_flag_e.3 │ │ │ │ ├── hwloc_location.3 │ │ │ │ ├── hwloc_location_hwloc_location_u.3 │ │ │ │ ├── hwloc_location_type_e.3 │ │ │ │ ├── hwloc_memattr_flag_e.3 │ │ │ │ ├── hwloc_memattr_get_best_initiator.3 │ │ │ │ ├── hwloc_memattr_get_best_target.3 │ │ │ │ ├── hwloc_memattr_get_by_name.3 │ │ │ │ ├── hwloc_memattr_get_flags.3 │ │ │ │ ├── hwloc_memattr_get_initiators.3 │ │ │ │ ├── hwloc_memattr_get_name.3 │ │ │ │ ├── hwloc_memattr_get_targets.3 │ │ │ │ ├── hwloc_memattr_get_value.3 │ │ │ │ ├── hwloc_memattr_id_e.3 │ │ │ │ ├── hwloc_memattr_id_t.3 │ │ │ │ ├── hwloc_memattr_register.3 │ │ │ │ ├── hwloc_memattr_set_value.3 │ │ │ │ ├── hwloc_membind_flags_t.3 │ │ │ │ ├── hwloc_membind_policy_t.3 │ │ │ │ ├── hwloc_nodeset_from_linux_libnuma_bitmask.3 │ │ │ │ ├── hwloc_nodeset_from_linux_libnuma_ulongs.3 │ │ │ │ ├── hwloc_nodeset_t.3 │ │ │ │ ├── hwloc_nodeset_to_linux_libnuma_bitmask.3 │ │ │ │ ├── hwloc_nodeset_to_linux_libnuma_ulongs.3 │ │ │ │ ├── hwloc_nvml_get_device_cpuset.3 │ │ │ │ ├── hwloc_nvml_get_device_osdev.3 │ │ │ │ ├── hwloc_nvml_get_device_osdev_by_index.3 │ │ │ │ ├── hwloc_obj.3 │ │ │ │ ├── hwloc_obj_add_children_sets.3 │ │ │ │ ├── hwloc_obj_add_info.3 │ │ │ │ ├── hwloc_obj_add_other_obj_sets.3 │ │ │ │ ├── hwloc_obj_attr_snprintf.3 │ │ │ │ ├── hwloc_obj_attr_u.3 │ │ │ │ ├── hwloc_obj_attr_u_hwloc_bridge_attr_s.3 │ │ │ │ ├── hwloc_obj_attr_u_hwloc_cache_attr_s.3 │ │ │ │ ├── hwloc_obj_attr_u_hwloc_group_attr_s.3 │ │ │ │ ├── hwloc_obj_attr_u_hwloc_numanode_attr_s.3 │ │ │ │ ├── hwloc_obj_attr_u_hwloc_numanode_attr_s_hwloc_memory_page_type_s.3 │ │ │ │ ├── hwloc_obj_attr_u_hwloc_osdev_attr_s.3 │ │ │ │ ├── hwloc_obj_attr_u_hwloc_pcidev_attr_s.3 │ │ │ │ ├── hwloc_obj_bridge_type_e.3 │ │ │ │ ├── hwloc_obj_bridge_type_t.3 │ │ │ │ ├── hwloc_obj_cache_type_e.3 │ │ │ │ ├── hwloc_obj_cache_type_t.3 │ │ │ │ ├── hwloc_obj_get_info_by_name.3 │ │ │ │ ├── hwloc_obj_is_in_subtree.3 │ │ │ │ ├── hwloc_obj_osdev_type_e.3 │ │ │ │ ├── hwloc_obj_osdev_type_t.3 │ │ │ │ ├── hwloc_obj_t.3 │ │ │ │ ├── hwloc_obj_type_is_cache.3 │ │ │ │ ├── hwloc_obj_type_is_dcache.3 │ │ │ │ ├── hwloc_obj_type_is_icache.3 │ │ │ │ ├── hwloc_obj_type_is_io.3 │ │ │ │ ├── hwloc_obj_type_is_memory.3 │ │ │ │ ├── hwloc_obj_type_is_normal.3 │ │ │ │ ├── hwloc_obj_type_snprintf.3 │ │ │ │ ├── hwloc_obj_type_string.3 │ │ │ │ ├── hwloc_obj_type_t.3 │ │ │ │ ├── hwloc_opencl_get_device_cpuset.3 │ │ │ │ ├── hwloc_opencl_get_device_osdev.3 │ │ │ │ ├── hwloc_opencl_get_device_osdev_by_index.3 │ │ │ │ ├── hwloc_opencl_get_device_pci_busid.3 │ │ │ │ ├── hwloc_pci_find_by_busid.3 │ │ │ │ ├── hwloc_pci_find_parent_by_busid.3 │ │ │ │ ├── hwloc_pcidisc_check_bridge_type.3 │ │ │ │ ├── hwloc_pcidisc_find_bridge_buses.3 │ │ │ │ ├── hwloc_pcidisc_find_cap.3 │ │ │ │ ├── hwloc_pcidisc_find_linkspeed.3 │ │ │ │ ├── hwloc_pcidisc_tree_attach.3 │ │ │ │ ├── hwloc_pcidisc_tree_insert_by_busid.3 │ │ │ │ ├── hwloc_plugin_check_namespace.3 │ │ │ │ ├── hwloc_restrict_flags_e.3 │ │ │ │ ├── hwloc_rsmi_get_device_cpuset.3 │ │ │ │ ├── hwloc_rsmi_get_device_osdev.3 │ │ │ │ ├── hwloc_rsmi_get_device_osdev_by_index.3 │ │ │ │ ├── hwloc_set_area_membind.3 │ │ │ │ ├── hwloc_set_cpubind.3 │ │ │ │ ├── hwloc_set_membind.3 │ │ │ │ ├── hwloc_set_proc_cpubind.3 │ │ │ │ ├── hwloc_set_proc_membind.3 │ │ │ │ ├── hwloc_set_thread_cpubind.3 │ │ │ │ ├── hwloc_shmem_topology_adopt.3 │ │ │ │ ├── hwloc_shmem_topology_get_length.3 │ │ │ │ ├── hwloc_shmem_topology_write.3 │ │ │ │ ├── hwloc_topology_abi_check.3 │ │ │ │ ├── hwloc_topology_alloc_group_object.3 │ │ │ │ ├── hwloc_topology_allow.3 │ │ │ │ ├── hwloc_topology_check.3 │ │ │ │ ├── hwloc_topology_components_flag_e.3 │ │ │ │ ├── hwloc_topology_cpubind_support.3 │ │ │ │ ├── hwloc_topology_destroy.3 │ │ │ │ ├── hwloc_topology_diff_apply.3 │ │ │ │ ├── hwloc_topology_diff_apply_flags_e.3 │ │ │ │ ├── hwloc_topology_diff_build.3 │ │ │ │ ├── hwloc_topology_diff_destroy.3 │ │ │ │ ├── hwloc_topology_diff_export_xml.3 │ │ │ │ ├── hwloc_topology_diff_export_xmlbuffer.3 │ │ │ │ ├── hwloc_topology_diff_load_xml.3 │ │ │ │ ├── hwloc_topology_diff_load_xmlbuffer.3 │ │ │ │ ├── hwloc_topology_diff_obj_attr_type_e.3 │ │ │ │ ├── hwloc_topology_diff_obj_attr_type_t.3 │ │ │ │ ├── hwloc_topology_diff_obj_attr_u.3 │ │ │ │ ├── hwloc_topology_diff_obj_attr_u_hwloc_topology_diff_obj_attr_generic_s.3 │ │ │ │ ├── hwloc_topology_diff_obj_attr_u_hwloc_topology_diff_obj_attr_string_s.3 │ │ │ │ ├── hwloc_topology_diff_obj_attr_u_hwloc_topology_diff_obj_attr_uint64_s.3 │ │ │ │ ├── hwloc_topology_diff_t.3 │ │ │ │ ├── hwloc_topology_diff_type_e.3 │ │ │ │ ├── hwloc_topology_diff_type_t.3 │ │ │ │ ├── hwloc_topology_diff_u.3 │ │ │ │ ├── hwloc_topology_diff_u_hwloc_topology_diff_generic_s.3 │ │ │ │ ├── hwloc_topology_diff_u_hwloc_topology_diff_obj_attr_s.3 │ │ │ │ ├── hwloc_topology_diff_u_hwloc_topology_diff_too_complex_s.3 │ │ │ │ ├── hwloc_topology_discovery_support.3 │ │ │ │ ├── hwloc_topology_dup.3 │ │ │ │ ├── hwloc_topology_export_synthetic.3 │ │ │ │ ├── hwloc_topology_export_synthetic_flags_e.3 │ │ │ │ ├── hwloc_topology_export_xml.3 │ │ │ │ ├── hwloc_topology_export_xml_flags_e.3 │ │ │ │ ├── hwloc_topology_export_xmlbuffer.3 │ │ │ │ ├── hwloc_topology_flags_e.3 │ │ │ │ ├── hwloc_topology_get_allowed_cpuset.3 │ │ │ │ ├── hwloc_topology_get_allowed_nodeset.3 │ │ │ │ ├── hwloc_topology_get_complete_cpuset.3 │ │ │ │ ├── hwloc_topology_get_complete_nodeset.3 │ │ │ │ ├── hwloc_topology_get_depth.3 │ │ │ │ ├── hwloc_topology_get_flags.3 │ │ │ │ ├── hwloc_topology_get_support.3 │ │ │ │ ├── hwloc_topology_get_topology_cpuset.3 │ │ │ │ ├── hwloc_topology_get_topology_nodeset.3 │ │ │ │ ├── hwloc_topology_get_type_filter.3 │ │ │ │ ├── hwloc_topology_get_userdata.3 │ │ │ │ ├── hwloc_topology_init.3 │ │ │ │ ├── hwloc_topology_insert_group_object.3 │ │ │ │ ├── hwloc_topology_insert_misc_object.3 │ │ │ │ ├── hwloc_topology_is_thissystem.3 │ │ │ │ ├── hwloc_topology_load.3 │ │ │ │ ├── hwloc_topology_membind_support.3 │ │ │ │ ├── hwloc_topology_misc_support.3 │ │ │ │ ├── hwloc_topology_reconnect.3 │ │ │ │ ├── hwloc_topology_refresh.3 │ │ │ │ ├── hwloc_topology_restrict.3 │ │ │ │ ├── hwloc_topology_set_all_types_filter.3 │ │ │ │ ├── hwloc_topology_set_cache_types_filter.3 │ │ │ │ ├── hwloc_topology_set_components.3 │ │ │ │ ├── hwloc_topology_set_flags.3 │ │ │ │ ├── hwloc_topology_set_icache_types_filter.3 │ │ │ │ ├── hwloc_topology_set_io_types_filter.3 │ │ │ │ ├── hwloc_topology_set_pid.3 │ │ │ │ ├── hwloc_topology_set_synthetic.3 │ │ │ │ ├── hwloc_topology_set_type_filter.3 │ │ │ │ ├── hwloc_topology_set_userdata.3 │ │ │ │ ├── hwloc_topology_set_userdata_export_callback.3 │ │ │ │ ├── hwloc_topology_set_userdata_import_callback.3 │ │ │ │ ├── hwloc_topology_set_xml.3 │ │ │ │ ├── hwloc_topology_set_xmlbuffer.3 │ │ │ │ ├── hwloc_topology_support.3 │ │ │ │ ├── hwloc_topology_t.3 │ │ │ │ ├── hwloc_type_filter_e.3 │ │ │ │ ├── hwloc_type_sscanf.3 │ │ │ │ ├── hwloc_type_sscanf_as_depth.3 │ │ │ │ ├── hwloc_windows_get_nr_processor_groups.3 │ │ │ │ ├── hwloc_windows_get_processor_group_cpuset.3 │ │ │ │ ├── hwlocality_advanced_io.3 │ │ │ │ ├── hwlocality_api_error_reporting.3 │ │ │ │ ├── hwlocality_api_version.3 │ │ │ │ ├── hwlocality_bitmap.3 │ │ │ │ ├── hwlocality_components_core_funcs.3 │ │ │ │ ├── hwlocality_components_filtering.3 │ │ │ │ ├── hwlocality_components_pcidisc.3 │ │ │ │ ├── hwlocality_components_pcifind.3 │ │ │ │ ├── hwlocality_configuration.3 │ │ │ │ ├── hwlocality_cpubinding.3 │ │ │ │ ├── hwlocality_cpukinds.3 │ │ │ │ ├── hwlocality_creation.3 │ │ │ │ ├── hwlocality_cuda.3 │ │ │ │ ├── hwlocality_cudart.3 │ │ │ │ ├── hwlocality_diff.3 │ │ │ │ ├── hwlocality_disc_backends.3 │ │ │ │ ├── hwlocality_disc_components.3 │ │ │ │ ├── hwlocality_distances_add.3 │ │ │ │ ├── hwlocality_distances_consult.3 │ │ │ │ ├── hwlocality_distances_get.3 │ │ │ │ ├── hwlocality_distances_remove.3 │ │ │ │ ├── hwlocality_generic_components.3 │ │ │ │ ├── hwlocality_gl.3 │ │ │ │ ├── hwlocality_glibc_sched.3 │ │ │ │ ├── hwlocality_helper_ancestors.3 │ │ │ │ ├── hwlocality_helper_distribute.3 │ │ │ │ ├── hwlocality_helper_find_cache.3 │ │ │ │ ├── hwlocality_helper_find_covering.3 │ │ │ │ ├── hwlocality_helper_find_inside.3 │ │ │ │ ├── hwlocality_helper_find_misc.3 │ │ │ │ ├── hwlocality_helper_nodeset_convert.3 │ │ │ │ ├── hwlocality_helper_topology_sets.3 │ │ │ │ ├── hwlocality_helper_types.3 │ │ │ │ ├── hwlocality_info_attr.3 │ │ │ │ ├── hwlocality_levels.3 │ │ │ │ ├── hwlocality_levelzero.3 │ │ │ │ ├── hwlocality_linux.3 │ │ │ │ ├── hwlocality_linux_libnuma_bitmask.3 │ │ │ │ ├── hwlocality_linux_libnuma_ulongs.3 │ │ │ │ ├── hwlocality_memattrs.3 │ │ │ │ ├── hwlocality_memattrs_manage.3 │ │ │ │ ├── hwlocality_membinding.3 │ │ │ │ ├── hwlocality_nvml.3 │ │ │ │ ├── hwlocality_object_sets.3 │ │ │ │ ├── hwlocality_object_strings.3 │ │ │ │ ├── hwlocality_object_types.3 │ │ │ │ ├── hwlocality_objects.3 │ │ │ │ ├── hwlocality_opencl.3 │ │ │ │ ├── hwlocality_openfabrics.3 │ │ │ │ ├── hwlocality_rsmi.3 │ │ │ │ ├── hwlocality_setsource.3 │ │ │ │ ├── hwlocality_shmem.3 │ │ │ │ ├── hwlocality_syntheticexport.3 │ │ │ │ ├── hwlocality_tinker.3 │ │ │ │ ├── hwlocality_windows.3 │ │ │ │ └── hwlocality_xmlexport.3 │ │ ├── doxygen.cfg │ │ ├── doxygen.css │ │ ├── examples │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cpuset+bitmap+cpubind.c │ │ │ ├── get-knl-modes.c │ │ │ ├── gpu.c │ │ │ ├── hwloc-hello-cpp.cpp │ │ │ ├── hwloc-hello.c │ │ │ ├── memory-attributes.c │ │ │ ├── nodeset+membind+policy.c │ │ │ └── sharedcaches.c │ │ ├── hwloc.doxy │ │ ├── images │ │ │ ├── devel09-pci.png │ │ │ ├── diagram.eps │ │ │ ├── diagram.fig │ │ │ ├── diagram.png │ │ │ ├── dudley.png │ │ │ ├── emmett.png │ │ │ ├── hagrid.png │ │ │ ├── netloc_design.png │ │ │ ├── netloc_draw.png │ │ │ ├── ppc64-full-with-smt.png │ │ │ ├── ppc64-with-smt.png │ │ │ └── ppc64-without-smt.png │ │ ├── main.doxy │ │ ├── netloc.doxy │ │ ├── www.open-mpi.org-css.inc │ │ ├── www.open-mpi.org-footer.inc │ │ ├── www.open-mpi.org-header.inc │ │ └── www.open-mpi.org.cfg │ ├── hwloc.pc.in │ ├── hwloc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── base64.c │ │ ├── bind.c │ │ ├── bitmap.c │ │ ├── components.c │ │ ├── cpukinds.c │ │ ├── diff.c │ │ ├── distances.c │ │ ├── hwloc.dtd │ │ ├── hwloc2-diff.dtd │ │ ├── hwloc2.dtd │ │ ├── memattrs.c │ │ ├── misc.c │ │ ├── pci-common.c │ │ ├── shmem.c │ │ ├── topology-aix.c │ │ ├── topology-bgq.c │ │ ├── topology-cuda.c │ │ ├── topology-darwin.c │ │ ├── topology-fake.c │ │ ├── topology-freebsd.c │ │ ├── topology-gl.c │ │ ├── topology-hardwired.c │ │ ├── topology-hpux.c │ │ ├── topology-levelzero.c │ │ ├── topology-linux.c │ │ ├── topology-netbsd.c │ │ ├── topology-noos.c │ │ ├── topology-nvml.c │ │ ├── topology-opencl.c │ │ ├── topology-pci.c │ │ ├── topology-rsmi.c │ │ ├── topology-solaris-chiptype.c │ │ ├── topology-solaris.c │ │ ├── topology-synthetic.c │ │ ├── topology-windows.c │ │ ├── topology-x86.c │ │ ├── topology-xml-libxml.c │ │ ├── topology-xml-nolibxml.c │ │ ├── topology-xml.c │ │ ├── topology.c │ │ └── traversal.c │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hwloc.h │ │ ├── hwloc │ │ │ ├── autogen │ │ │ │ └── config.h.in │ │ │ ├── bitmap.h │ │ │ ├── cpukinds.h │ │ │ ├── cuda.h │ │ │ ├── cudart.h │ │ │ ├── deprecated.h │ │ │ ├── diff.h │ │ │ ├── distances.h │ │ │ ├── export.h │ │ │ ├── gl.h │ │ │ ├── glibc-sched.h │ │ │ ├── helper.h │ │ │ ├── inlines.h │ │ │ ├── levelzero.h │ │ │ ├── linux-libnuma.h │ │ │ ├── linux.h │ │ │ ├── memattrs.h │ │ │ ├── nvml.h │ │ │ ├── opencl.h │ │ │ ├── openfabrics-verbs.h │ │ │ ├── plugins.h │ │ │ ├── rename.h │ │ │ ├── rsmi.h │ │ │ ├── shmem.h │ │ │ └── windows.h │ │ ├── netloc.h │ │ ├── netloc │ │ │ ├── utarray.h │ │ │ └── uthash.h │ │ ├── netlocscotch.h │ │ └── private │ │ │ ├── autogen │ │ │ └── config.h.in │ │ │ ├── components.h │ │ │ ├── cpuid-x86.h │ │ │ ├── debug.h │ │ │ ├── internal-components.h │ │ │ ├── misc.h │ │ │ ├── netloc.h │ │ │ ├── private.h │ │ │ ├── solaris-chiptype.h │ │ │ ├── windows.h │ │ │ └── xml.h │ ├── netloc.pc.in │ ├── netloc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── architecture.c │ │ ├── edge.c │ │ ├── hwloc.c │ │ ├── mpicomm.c │ │ ├── node.c │ │ ├── path.c │ │ ├── physical_link.c │ │ ├── scotch.c │ │ ├── support.c │ │ └── topology.c │ ├── netlocscotch.pc.in │ ├── tests │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hwloc │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── cpukinds.c │ │ │ ├── cpuset_nodeset.c │ │ │ ├── cuda.c │ │ │ ├── cudart.c │ │ │ ├── embedded │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.txt │ │ │ │ ├── autogen.sh │ │ │ │ ├── config │ │ │ │ │ └── README.txt │ │ │ │ ├── configure.ac │ │ │ │ ├── do_test.c │ │ │ │ ├── main.c │ │ │ │ └── run-embedded-tests.sh │ │ │ ├── gl.c │ │ │ ├── glibc-sched.c │ │ │ ├── hwloc_api_version.c │ │ │ ├── hwloc_backends.c │ │ │ ├── hwloc_bind.c │ │ │ ├── hwloc_bitmap.c │ │ │ ├── hwloc_bitmap_compare_inclusion.c │ │ │ ├── hwloc_bitmap_first_last_weight.c │ │ │ ├── hwloc_bitmap_singlify.c │ │ │ ├── hwloc_bitmap_string.c │ │ │ ├── hwloc_distances.c │ │ │ ├── hwloc_get_area_memlocation.c │ │ │ ├── hwloc_get_cache_covering_cpuset.c │ │ │ ├── hwloc_get_closest_objs.c │ │ │ ├── hwloc_get_largest_objs_inside_cpuset.c │ │ │ ├── hwloc_get_last_cpu_location.c │ │ │ ├── hwloc_get_next_obj_covering_cpuset.c │ │ │ ├── hwloc_get_obj_below_array_by_type.c │ │ │ ├── hwloc_get_obj_covering_cpuset.c │ │ │ ├── hwloc_get_obj_inside_cpuset.c │ │ │ ├── hwloc_get_obj_with_same_locality.c │ │ │ ├── hwloc_get_shared_cache_covering_obj.c │ │ │ ├── hwloc_groups.c │ │ │ ├── hwloc_insert_misc.c │ │ │ ├── hwloc_iodevs.c │ │ │ ├── hwloc_is_thissystem.c │ │ │ ├── hwloc_list_components.c │ │ │ ├── hwloc_obj_infos.c │ │ │ ├── hwloc_object_userdata.c │ │ │ ├── hwloc_pci_backend.c │ │ │ ├── hwloc_synthetic.c │ │ │ ├── hwloc_topology_abi.c │ │ │ ├── hwloc_topology_allow.c │ │ │ ├── hwloc_topology_diff.c │ │ │ ├── hwloc_topology_dup.c │ │ │ ├── hwloc_topology_restrict.c │ │ │ ├── hwloc_type_depth.c │ │ │ ├── hwloc_type_sscanf.c │ │ │ ├── levelzero.c │ │ │ ├── linux-libnuma.c │ │ │ ├── linux │ │ │ │ ├── 128arm-2pa2n8cluster4co.output │ │ │ │ ├── 128arm-2pa2n8cluster4co.tar.bz2 │ │ │ │ ├── 128ia64-17n4s2c.output │ │ │ │ ├── 128ia64-17n4s2c.tar.bz2 │ │ │ │ ├── 16amd64-4n4c-cgroup-distance-merge.options │ │ │ │ ├── 16amd64-4n4c-cgroup-distance-merge.output │ │ │ │ ├── 16amd64-4n4c-cgroup-distance-merge.tar.bz2 │ │ │ │ ├── 16amd64-8n2c-cpusets.output │ │ │ │ ├── 16amd64-8n2c-cpusets.tar.bz2 │ │ │ │ ├── 16amd64-8n2c-cpusets.xml.options │ │ │ │ ├── 16amd64-8n2c-cpusets.xml.output │ │ │ │ ├── 16amd64-8n2c-cpusets.xml.source │ │ │ │ ├── 16amd64-8n2c-cpusets_noadmin.options │ │ │ │ ├── 16amd64-8n2c-cpusets_noadmin.output │ │ │ │ ├── 16amd64-8n2c-cpusets_noadmin.source │ │ │ │ ├── 16amd64-8n2c.output │ │ │ │ ├── 16amd64-8n2c.tar.bz2 │ │ │ │ ├── 16em64t-4s2c2t-offlines.output │ │ │ │ ├── 16em64t-4s2c2t-offlines.tar.bz2 │ │ │ │ ├── 16em64t-4s2c2t-offlines.xml.options │ │ │ │ ├── 16em64t-4s2c2t-offlines.xml.output │ │ │ │ ├── 16em64t-4s2c2t-offlines.xml.source │ │ │ │ ├── 16em64t-4s2c2t.output │ │ │ │ ├── 16em64t-4s2c2t.tar.bz2 │ │ │ │ ├── 16em64t-4s2c2t.xml.options │ │ │ │ ├── 16em64t-4s2c2t.xml.output │ │ │ │ ├── 16em64t-4s2c2t.xml.source │ │ │ │ ├── 16em64t-4s2c2t_merge.options │ │ │ │ ├── 16em64t-4s2c2t_merge.output │ │ │ │ ├── 16em64t-4s2c2t_merge.source │ │ │ │ ├── 16em64t-4s2c2t_ncaches.options │ │ │ │ ├── 16em64t-4s2c2t_ncaches.output │ │ │ │ ├── 16em64t-4s2c2t_ncaches.source │ │ │ │ ├── 16em64t-4s2ca2c-cpusetreorder-merge.options │ │ │ │ ├── 16em64t-4s2ca2c-cpusetreorder-merge.output │ │ │ │ ├── 16em64t-4s2ca2c-cpusetreorder-merge.source │ │ │ │ ├── 16em64t-4s2ca2c-cpusetreorder.output │ │ │ │ ├── 16em64t-4s2ca2c-cpusetreorder.tar.bz2 │ │ │ │ ├── 16ia64-8n2s.output │ │ │ │ ├── 16ia64-8n2s.tar.bz2 │ │ │ │ ├── 20s390-2g6s4c.output │ │ │ │ ├── 20s390-2g6s4c.tar.bz2 │ │ │ │ ├── 256ia64-64n2s2c.output │ │ │ │ ├── 256ia64-64n2s2c.tar.bz2 │ │ │ │ ├── 256ppc-8n8s4t.output │ │ │ │ ├── 256ppc-8n8s4t.tar.bz2 │ │ │ │ ├── 2amd64-2n.output │ │ │ │ ├── 2amd64-2n.tar.bz2 │ │ │ │ ├── 2arm-2c.output │ │ │ │ ├── 2arm-2c.tar.bz2 │ │ │ │ ├── 2i386-2c-nohugepage.tar.bz2 │ │ │ │ ├── 2i386-2c-nohugepage.xml.options │ │ │ │ ├── 2i386-2c-nohugepage.xml.output │ │ │ │ ├── 2i386-2c-nohugepage.xml.source │ │ │ │ ├── 2i386-2t-hugepagesizecount.tar.bz2 │ │ │ │ ├── 2i386-2t-hugepagesizecount.xml.options │ │ │ │ ├── 2i386-2t-hugepagesizecount.xml.output │ │ │ │ ├── 2i386-2t-hugepagesizecount.xml.source │ │ │ │ ├── 2pa-pcidomain32bits-disabled.output │ │ │ │ ├── 2pa-pcidomain32bits-disabled.source │ │ │ │ ├── 2pa-pcidomain32bits.output │ │ │ │ ├── 2pa-pcidomain32bits.tar.bz2 │ │ │ │ ├── 2ps3-2t.output │ │ │ │ ├── 2ps3-2t.tar.bz2 │ │ │ │ ├── 2s390-2c.output │ │ │ │ ├── 2s390-2c.tar.bz2 │ │ │ │ ├── 32amd64-4s2n4c-cgroup2.output │ │ │ │ ├── 32amd64-4s2n4c-cgroup2.tar.bz2 │ │ │ │ ├── 32amd64-4s2n4c-cgroup2.xml.options │ │ │ │ ├── 32amd64-4s2n4c-cgroup2.xml.output │ │ │ │ ├── 32amd64-4s2n4c-cgroup2.xml.source │ │ │ │ ├── 32em64t-2n8c+1mic.options │ │ │ │ ├── 32em64t-2n8c+1mic.output │ │ │ │ ├── 32em64t-2n8c+1mic.tar.bz2 │ │ │ │ ├── 32intel64-2p8co2t+8ve.output │ │ │ │ ├── 32intel64-2p8co2t+8ve.tar.bz2 │ │ │ │ ├── 40intel64-2g2n4c+pci.env │ │ │ │ ├── 40intel64-2g2n4c+pci.options │ │ │ │ ├── 40intel64-2g2n4c+pci.output │ │ │ │ ├── 40intel64-2g2n4c+pci.tar.bz2 │ │ │ │ ├── 40intel64-4n10c+pci-conflicts.env │ │ │ │ ├── 40intel64-4n10c+pci-conflicts.output │ │ │ │ ├── 40intel64-4n10c+pci-conflicts.tar.bz2 │ │ │ │ ├── 48amd64-4d2n6c-sparse.output │ │ │ │ ├── 48amd64-4d2n6c-sparse.tar.bz2 │ │ │ │ ├── 4em64t-2c2t-ignore-reorder.options │ │ │ │ ├── 4em64t-2c2t-ignore-reorder.output │ │ │ │ ├── 4em64t-2c2t-ignore-reorder.tar.bz2 │ │ │ │ ├── 4fake-4gr1nu1pu.output │ │ │ │ ├── 4fake-4gr1nu1pu.tar.bz2 │ │ │ │ ├── 4ia64-4s.output │ │ │ │ ├── 4ia64-4s.tar.bz2 │ │ │ │ ├── 64amd64-4s2n4ca2co.output │ │ │ │ ├── 64amd64-4s2n4ca2co.tar.bz2 │ │ │ │ ├── 64fake-4n2s2ca2c2t.output │ │ │ │ ├── 64fake-4n2s2ca2c2t.tar.bz2 │ │ │ │ ├── 64intel64-fakeKNL-A2A-cache.output │ │ │ │ ├── 64intel64-fakeKNL-A2A-cache.tar.bz2 │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid-msc.env │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid-msc.output │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid-msc.source │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid.output │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid.tar.bz2 │ │ │ │ ├── 8amd64-4n2c.output │ │ │ │ ├── 8amd64-4n2c.tar.bz2 │ │ │ │ ├── 8em64t-2s2ca2c-buggynuma.output │ │ │ │ ├── 8em64t-2s2ca2c-buggynuma.tar.bz2 │ │ │ │ ├── 8em64t-2s2ca2c.output │ │ │ │ ├── 8em64t-2s2ca2c.tar.bz2 │ │ │ │ ├── 8em64t-2s4c-heterogeneous.output │ │ │ │ ├── 8em64t-2s4c-heterogeneous.tar.bz2 │ │ │ │ ├── 8em64t-4c2t.output │ │ │ │ ├── 8em64t-4c2t.tar.bz2 │ │ │ │ ├── 8ia64-2n2s2c.output │ │ │ │ ├── 8ia64-2n2s2c.tar.bz2 │ │ │ │ ├── 8ia64-2s2c2t.output │ │ │ │ ├── 8ia64-2s2c2t.tar.bz2 │ │ │ │ ├── 8ia64-4s2c.output │ │ │ │ ├── 8ia64-4s2c.tar.bz2 │ │ │ │ ├── 96em64t-4n4d3ca2co.output │ │ │ │ ├── 96em64t-4n4d3ca2co.tar.bz2 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── allowed │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── test-topology.sh.in │ │ │ │ │ ├── test1.fsroot.tar.bz2 │ │ │ │ │ ├── test1.options │ │ │ │ │ ├── test1.output │ │ │ │ │ └── test1.synthetic │ │ │ │ ├── fakecpuid1f-64intel64-2p4d2n2c2t.output │ │ │ │ ├── fakecpuid1f-64intel64-2p4d2n2c2t.tar.bz2 │ │ │ │ ├── fakeheterocpunuma.env │ │ │ │ ├── fakeheterocpunuma.options │ │ │ │ ├── fakeheterocpunuma.output │ │ │ │ ├── fakeheterocpunuma.tar.bz2 │ │ │ │ ├── fakeheteromemtiers.output │ │ │ │ ├── fakeheteromemtiers.tar.bz2 │ │ │ │ ├── fakememinitiators-1np2c+1npp+gi.output │ │ │ │ ├── fakememinitiators-1np2c+1npp+gi.tar.bz2 │ │ │ │ ├── gather │ │ │ │ │ ├── Makefile.am │ │ │ │ │ ├── Makefile.in │ │ │ │ │ └── test-gather-topology.sh.in │ │ │ │ ├── nvidiagpunumanodes.kept.env │ │ │ │ ├── nvidiagpunumanodes.kept.output │ │ │ │ ├── nvidiagpunumanodes.kept.source │ │ │ │ ├── nvidiagpunumanodes.output │ │ │ │ ├── nvidiagpunumanodes.tar.bz2 │ │ │ │ ├── offline-cpu0-node0.output │ │ │ │ ├── offline-cpu0-node0.tar.bz2 │ │ │ │ └── test-topology.sh.in │ │ │ ├── memattrs.c │ │ │ ├── memtiers.c │ │ │ ├── nvml.c │ │ │ ├── opencl.c │ │ │ ├── openfabrics-verbs.c │ │ │ ├── ports │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── include │ │ │ │ │ ├── aix │ │ │ │ │ ├── procinfo.h │ │ │ │ │ └── sys │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── rset.h │ │ │ │ │ │ ├── systemcfg.h │ │ │ │ │ │ └── thread.h │ │ │ │ │ ├── bgq │ │ │ │ │ └── spi │ │ │ │ │ │ └── include │ │ │ │ │ │ └── kernel │ │ │ │ │ │ ├── location.h │ │ │ │ │ │ └── process.h │ │ │ │ │ ├── cuda │ │ │ │ │ ├── cuda.h │ │ │ │ │ └── cuda_runtime_api.h │ │ │ │ │ ├── darwin │ │ │ │ │ ├── Availability.h │ │ │ │ │ ├── CoreFoundation │ │ │ │ │ │ └── CoreFoundation.h │ │ │ │ │ ├── IOKit │ │ │ │ │ │ └── IOKitLib.h │ │ │ │ │ └── sys │ │ │ │ │ │ └── sysctl.h │ │ │ │ │ ├── freebsd │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── pthread_np.h │ │ │ │ │ └── sys │ │ │ │ │ │ ├── cpuset.h │ │ │ │ │ │ ├── domainset.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── sysctl.h │ │ │ │ │ │ ├── thr.h │ │ │ │ │ │ └── user.h │ │ │ │ │ ├── gl │ │ │ │ │ ├── NVCtrl │ │ │ │ │ │ ├── NVCtrl.h │ │ │ │ │ │ └── NVCtrlLib.h │ │ │ │ │ └── X11 │ │ │ │ │ │ └── Xlib.h │ │ │ │ │ ├── hpux │ │ │ │ │ └── sys │ │ │ │ │ │ └── mpctl.h │ │ │ │ │ ├── levelzero │ │ │ │ │ └── level_zero │ │ │ │ │ │ ├── ze_api.h │ │ │ │ │ │ └── zes_api.h │ │ │ │ │ ├── netbsd │ │ │ │ │ ├── pthread.h │ │ │ │ │ ├── sched.h │ │ │ │ │ └── sys │ │ │ │ │ │ └── sysctl.h │ │ │ │ │ ├── nvml │ │ │ │ │ └── nvml.h │ │ │ │ │ ├── opencl │ │ │ │ │ └── CL │ │ │ │ │ │ └── cl.h │ │ │ │ │ ├── rsmi │ │ │ │ │ └── rocm_smi │ │ │ │ │ │ └── rocm_smi.h │ │ │ │ │ ├── solaris │ │ │ │ │ ├── kstat.h │ │ │ │ │ ├── picl.h │ │ │ │ │ └── sys │ │ │ │ │ │ ├── lgrp_user.h │ │ │ │ │ │ ├── processor.h │ │ │ │ │ │ ├── procset.h │ │ │ │ │ │ └── systeminfo.h │ │ │ │ │ └── windows │ │ │ │ │ ├── windows.h │ │ │ │ │ └── windowsx.h │ │ │ ├── rename │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── main.c │ │ │ ├── rsmi.c │ │ │ ├── shmem.c │ │ │ ├── windows_processor_groups.c │ │ │ ├── wrapper.sh.in │ │ │ ├── x86+linux │ │ │ │ ├── 5intel64-hybrid-lakefield.env │ │ │ │ ├── 5intel64-hybrid-lakefield.options │ │ │ │ ├── 5intel64-hybrid-lakefield.output │ │ │ │ ├── 5intel64-hybrid-lakefield.tar.bz2 │ │ │ │ ├── 64amd64-4p2n4ca2co.output │ │ │ │ ├── 64amd64-4p2n4ca2co.tar.bz2 │ │ │ │ ├── 64amd64-4p2n4ca2co.topoextnuma.env │ │ │ │ ├── 64amd64-4p2n4ca2co.topoextnuma.output │ │ │ │ ├── 64amd64-4p2n4ca2co.topoextnuma.source │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ └── test-topology.sh.in │ │ │ ├── x86 │ │ │ │ ├── AMD-15h-Bulldozer-4xOpteron-6272.output │ │ │ │ ├── AMD-15h-Bulldozer-4xOpteron-6272.tar.bz2 │ │ │ │ ├── AMD-15h-Piledriver-4xOpteron-6348.output │ │ │ │ ├── AMD-15h-Piledriver-4xOpteron-6348.tar.bz2 │ │ │ │ ├── AMD-17h-Zen-2xEpyc-7451.output │ │ │ │ ├── AMD-17h-Zen-2xEpyc-7451.tar.bz2 │ │ │ │ ├── AMD-19h-Zen3-2xEpyc-7763.output │ │ │ │ ├── AMD-19h-Zen3-2xEpyc-7763.tar.bz2 │ │ │ │ ├── AMD-K10-Istanbul-8xOpteron-8439SE.output │ │ │ │ ├── AMD-K10-Istanbul-8xOpteron-8439SE.tar.bz2 │ │ │ │ ├── AMD-K10-MagnyCours-2xOpteron-6164HE.output │ │ │ │ ├── AMD-K10-MagnyCours-2xOpteron-6164HE.tar.bz2 │ │ │ │ ├── AMD-K8-SantaRosa-2xOpteron-2218.output │ │ │ │ ├── AMD-K8-SantaRosa-2xOpteron-2218.tar.bz2 │ │ │ │ ├── AMD-K8-SledgeHammer-2xOpteron-250.output │ │ │ │ ├── AMD-K8-SledgeHammer-2xOpteron-250.tar.bz2 │ │ │ │ ├── Hygon-Dhyana-32cores.output │ │ │ │ ├── Hygon-Dhyana-32cores.tar.bz2 │ │ │ │ ├── Intel-Broadwell-2xXeon-E5-2650Lv4.output │ │ │ │ ├── Intel-Broadwell-2xXeon-E5-2650Lv4.tar.bz2 │ │ │ │ ├── Intel-CPUID.1A-1p2co2t.env │ │ │ │ ├── Intel-CPUID.1A-1p2co2t.output │ │ │ │ ├── Intel-CPUID.1A-1p2co2t.tar.bz2 │ │ │ │ ├── Intel-CPUID.1F-Qemu-2p3d3c2t.output │ │ │ │ ├── Intel-CPUID.1F-Qemu-2p3d3c2t.tar.bz2 │ │ │ │ ├── Intel-CascadeLake-2xXeon6230.output │ │ │ │ ├── Intel-CascadeLake-2xXeon6230.tar.bz2 │ │ │ │ ├── Intel-Core-2xXeon-E5345.output │ │ │ │ ├── Intel-Core-2xXeon-E5345.tar.bz2 │ │ │ │ ├── Intel-Haswell-2xXeon-E5-2680v3.output │ │ │ │ ├── Intel-Haswell-2xXeon-E5-2680v3.tar.bz2 │ │ │ │ ├── Intel-IvyBridge-12xXeon-E5-4620v2.output │ │ │ │ ├── Intel-IvyBridge-12xXeon-E5-4620v2.tar.bz2 │ │ │ │ ├── Intel-KnightsCorner-XeonPhi-SE10P.output │ │ │ │ ├── Intel-KnightsCorner-XeonPhi-SE10P.tar.bz2 │ │ │ │ ├── Intel-KnightsLanding-XeonPhi-7210.output │ │ │ │ ├── Intel-KnightsLanding-XeonPhi-7210.tar.bz2 │ │ │ │ ├── Intel-Nehalem-2xXeon-X5550.output │ │ │ │ ├── Intel-Nehalem-2xXeon-X5550.tar.bz2 │ │ │ │ ├── Intel-Penryn-4xXeon-X7460.output │ │ │ │ ├── Intel-Penryn-4xXeon-X7460.tar.bz2 │ │ │ │ ├── Intel-SandyBridge-2xXeon-E5-2650.output │ │ │ │ ├── Intel-SandyBridge-2xXeon-E5-2650.tar.bz2 │ │ │ │ ├── Intel-Skylake-2xXeon6140.output │ │ │ │ ├── Intel-Skylake-2xXeon6140.tar.bz2 │ │ │ │ ├── Intel-Westmere-2xXeon-X5650.output │ │ │ │ ├── Intel-Westmere-2xXeon-X5650.tar.bz2 │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Zhaoxin-CentaurHauls-ZXD-4600.output │ │ │ │ ├── Zhaoxin-CentaurHauls-ZXD-4600.tar.bz2 │ │ │ │ ├── Zhaoxin-Shanghai-KaiSheng-ZXC+-FC1081.output │ │ │ │ ├── Zhaoxin-Shanghai-KaiSheng-ZXC+-FC1081.tar.bz2 │ │ │ │ └── test-topology.sh.in │ │ │ ├── xml │ │ │ │ ├── 16-2gr2gr2n2c+misc.console.options │ │ │ │ ├── 16-2gr2gr2n2c+misc.console.output │ │ │ │ ├── 16-2gr2gr2n2c+misc.console.source │ │ │ │ ├── 16-2gr2gr2n2c+misc.xml │ │ │ │ ├── 16amd64-4distances.console.env │ │ │ │ ├── 16amd64-4distances.console.options │ │ │ │ ├── 16amd64-4distances.console.output │ │ │ │ ├── 16amd64-4distances.console.source │ │ │ │ ├── 16amd64-4distances.v1.xml │ │ │ │ ├── 16amd64-4distances.v1tov2.source │ │ │ │ ├── 16amd64-4distances.v1tov2.xml │ │ │ │ ├── 16amd64-4distances.v2tov1.options │ │ │ │ ├── 16amd64-4distances.v2tov1.source │ │ │ │ ├── 16amd64-4distances.v2tov1.xml │ │ │ │ ├── 16amd64-4distances.xml │ │ │ │ ├── 16amd64-8n2c-cpusets.xml │ │ │ │ ├── 16em64t-4s2c2t-offlines.xml │ │ │ │ ├── 16em64t-4s2c2t.console.options │ │ │ │ ├── 16em64t-4s2c2t.console.output │ │ │ │ ├── 16em64t-4s2c2t.console.source │ │ │ │ ├── 16em64t-4s2c2t.xml │ │ │ │ ├── 16intel64-manyVFs.console.nocollapse.options │ │ │ │ ├── 16intel64-manyVFs.console.nocollapse.output │ │ │ │ ├── 16intel64-manyVFs.console.nocollapse.source │ │ │ │ ├── 16intel64-manyVFs.console.options │ │ │ │ ├── 16intel64-manyVFs.console.output │ │ │ │ ├── 16intel64-manyVFs.console.source │ │ │ │ ├── 16intel64-manyVFs.xml │ │ │ │ ├── 192em64t-12gr2n8c2t.xml │ │ │ │ ├── 192em64t-24n8c2t.xml │ │ │ │ ├── 24em64t-2n6c2t-pci.xml │ │ │ │ ├── 28intel64-2p2g7c-CoD.nogroups.v1tov2.options │ │ │ │ ├── 28intel64-2p2g7c-CoD.nogroups.v1tov2.source │ │ │ │ ├── 28intel64-2p2g7c-CoD.nogroups.v1tov2.xml │ │ │ │ ├── 28intel64-2p2g7c-CoDgroups.v1.xml │ │ │ │ ├── 28intel64-2p2g7c-CoDgroups.v1tov2.source │ │ │ │ ├── 28intel64-2p2g7c-CoDgroups.v1tov2.xml │ │ │ │ ├── 2intel64-1n2c-numaroot.v1.xml │ │ │ │ ├── 2intel64-1n2c-numaroot.v1tov2.source │ │ │ │ ├── 2intel64-1n2c-numaroot.v1tov2.xml │ │ │ │ ├── 32em64t-2n8c2t-pci-noio.options │ │ │ │ ├── 32em64t-2n8c2t-pci-noio.source │ │ │ │ ├── 32em64t-2n8c2t-pci-noio.xml │ │ │ │ ├── 32em64t-2n8c2t-pci-normalio.source │ │ │ │ ├── 32em64t-2n8c2t-pci-normalio.xml │ │ │ │ ├── 32em64t-2n8c2t-pci-wholeio.options │ │ │ │ ├── 32em64t-2n8c2t-pci-wholeio.xml │ │ │ │ ├── 64intel64-3g2n+2n-irregulargroups+pci.console.env │ │ │ │ ├── 64intel64-3g2n+2n-irregulargroups+pci.console.options │ │ │ │ ├── 64intel64-3g2n+2n-irregulargroups+pci.console.output │ │ │ │ ├── 64intel64-3g2n+2n-irregulargroups+pci.console.source │ │ │ │ ├── 64intel64-3g2n+2n-irregulargroups+pci.options │ │ │ │ ├── 64intel64-3g2n+2n-irregulargroups+pci.xml │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid.v1tov2.source │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid.v1tov2.xml │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid.v2tov1.options │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid.v2tov1.source │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid.v2tov1.xml │ │ │ │ ├── 64intel64-fakeKNL-SNC4-hybrid.xml │ │ │ │ ├── 8em64t-2p2ca2co-nonodesets.v1.xml │ │ │ │ ├── 8em64t-2p2ca2co-nonodesets.v1tov2.source │ │ │ │ ├── 8em64t-2p2ca2co-nonodesets.v1tov2.xml │ │ │ │ ├── 8ia64-2n2s2c+1n.v1.xml │ │ │ │ ├── 8ia64-2n2s2c+1n.v1tov2.source │ │ │ │ ├── 8ia64-2n2s2c+1n.v1tov2.xml │ │ │ │ ├── 8intel64-4n2t-memattrs.xml │ │ │ │ ├── 8intel64-fakeKNL-A2A-hybrid.rootattachednumas.v1tov2.source │ │ │ │ ├── 8intel64-fakeKNL-A2A-hybrid.rootattachednumas.v1tov2.xml │ │ │ │ ├── 8intel64-fakeKNL-A2A-hybrid.rootattachednumas.v2tov1.options │ │ │ │ ├── 8intel64-fakeKNL-A2A-hybrid.rootattachednumas.v2tov1.source │ │ │ │ ├── 8intel64-fakeKNL-A2A-hybrid.rootattachednumas.v2tov1.xml │ │ │ │ ├── 8intel64-fakeKNL-A2A-hybrid.rootattachednumas.xml │ │ │ │ ├── 96em64t-4n4d3ca2co-pci.xml │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── fakecpukinds.xml │ │ │ │ ├── fakeheterodistances.xml │ │ │ │ ├── power8gpudistances.xml │ │ │ │ └── test-topology.sh.in │ │ │ └── xmlbuffer.c │ │ └── netloc │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── data │ │ │ ├── avakas.txz │ │ │ ├── plafrim.txz │ │ │ ├── plafrim2.txz │ │ │ ├── scotch.txz │ │ │ ├── tests_draw.txt │ │ │ ├── tests_extract.txt │ │ │ ├── tests_mpiscotch.txt │ │ │ └── tests_scotch.txt │ │ │ └── tests.sh.in │ └── utils │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── hwloc │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── common-ps.c │ │ ├── common-ps.h │ │ ├── hwloc-annotate.1in │ │ ├── hwloc-annotate.c │ │ ├── hwloc-bind.1in │ │ ├── hwloc-bind.c │ │ ├── hwloc-calc.1in │ │ ├── hwloc-calc.c │ │ ├── hwloc-calc.h │ │ ├── hwloc-compress-dir.1in │ │ ├── hwloc-compress-dir.in │ │ ├── hwloc-diff.1in │ │ ├── hwloc-diff.c │ │ ├── hwloc-distrib.1in │ │ ├── hwloc-distrib.c │ │ ├── hwloc-dump-hwdata-knl.c │ │ ├── hwloc-dump-hwdata.1in │ │ ├── hwloc-dump-hwdata.c │ │ ├── hwloc-gather-cpuid.1in │ │ ├── hwloc-gather-cpuid.c │ │ ├── hwloc-gather-topology.1in │ │ ├── hwloc-gather-topology.in │ │ ├── hwloc-info.1in │ │ ├── hwloc-info.c │ │ ├── hwloc-patch.1in │ │ ├── hwloc-patch.c │ │ ├── hwloc-ps.1in │ │ ├── hwloc-ps.c │ │ ├── hwloc.7in │ │ ├── misc.h │ │ ├── test-build-custom-topology.output │ │ ├── test-build-custom-topology.sh.in │ │ ├── test-fake-plugin.sh.in │ │ ├── test-hwloc-annotate.input │ │ ├── test-hwloc-annotate.output │ │ ├── test-hwloc-annotate.output2 │ │ ├── test-hwloc-annotate.sh.in │ │ ├── test-hwloc-calc.output │ │ ├── test-hwloc-calc.sh.in │ │ ├── test-hwloc-compress-dir.input.tar.gz │ │ ├── test-hwloc-compress-dir.output.tar.gz │ │ ├── test-hwloc-compress-dir.sh.in │ │ ├── test-hwloc-diffpatch.input1 │ │ ├── test-hwloc-diffpatch.input2 │ │ ├── test-hwloc-diffpatch.sh.in │ │ ├── test-hwloc-distrib.output │ │ ├── test-hwloc-distrib.sh.in │ │ ├── test-hwloc-dump-hwdata │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── knl-snc4h50.tar.bz2 │ │ │ └── test-hwloc-dump-hwdata.sh.in │ │ ├── test-hwloc-info.output │ │ ├── test-hwloc-info.sh.in │ │ └── test-parsing-flags.sh.in │ │ ├── lstopo │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lstopo-android.c │ │ ├── lstopo-ascii.c │ │ ├── lstopo-cairo.c │ │ ├── lstopo-draw.c │ │ ├── lstopo-fig.c │ │ ├── lstopo-no-graphics.1in │ │ ├── lstopo-shmem.c │ │ ├── lstopo-svg.c │ │ ├── lstopo-text.c │ │ ├── lstopo-tikz.c │ │ ├── lstopo-windows.c │ │ ├── lstopo-xml.c │ │ ├── lstopo.c │ │ ├── lstopo.desktop │ │ ├── lstopo.h │ │ ├── test-lstopo-shmem.sh.in │ │ ├── test-lstopo.output │ │ └── test-lstopo.sh.in │ │ └── netloc │ │ ├── draw │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── netloc_draw.html │ │ ├── netloc_draw.js │ │ ├── netloc_draw_to_json.c │ │ └── visdist │ │ │ ├── vis.min.css │ │ │ └── vis.min.js │ │ ├── infiniband │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── netloc_ib_extract_dats.c │ │ └── netloc_ib_gather_raw.in │ │ ├── mpi │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── netloc_mpi_find_hosts.c │ │ ├── netloc_mpi_rank_file.c │ │ └── netloc_rank_order.c │ │ └── scotch │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ └── netlocscotch_get_arch.c ├── json │ ├── LICENSE.MIT │ ├── VERSION │ ├── include │ │ └── nlohmann │ │ │ ├── adl_serializer.hpp │ │ │ ├── byte_container_with_subtype.hpp │ │ │ ├── detail │ │ │ ├── conversions │ │ │ │ ├── from_json.hpp │ │ │ │ ├── to_chars.hpp │ │ │ │ └── to_json.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── hash.hpp │ │ │ ├── input │ │ │ │ ├── binary_reader.hpp │ │ │ │ ├── input_adapters.hpp │ │ │ │ ├── json_sax.hpp │ │ │ │ ├── lexer.hpp │ │ │ │ ├── parser.hpp │ │ │ │ └── position_t.hpp │ │ │ ├── iterators │ │ │ │ ├── internal_iterator.hpp │ │ │ │ ├── iter_impl.hpp │ │ │ │ ├── iteration_proxy.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── json_reverse_iterator.hpp │ │ │ │ └── primitive_iterator.hpp │ │ │ ├── json_pointer.hpp │ │ │ ├── json_ref.hpp │ │ │ ├── macro_scope.hpp │ │ │ ├── macro_unscope.hpp │ │ │ ├── meta │ │ │ │ ├── cpp_future.hpp │ │ │ │ ├── detected.hpp │ │ │ │ ├── identity_tag.hpp │ │ │ │ ├── is_sax.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── void_t.hpp │ │ │ ├── output │ │ │ │ ├── binary_writer.hpp │ │ │ │ ├── output_adapters.hpp │ │ │ │ └── serializer.hpp │ │ │ ├── string_escape.hpp │ │ │ └── value_t.hpp │ │ │ ├── json.hpp │ │ │ ├── json_fwd.hpp │ │ │ ├── ordered_map.hpp │ │ │ └── thirdparty │ │ │ └── hedley │ │ │ ├── hedley.hpp │ │ │ └── hedley_undef.hpp │ └── single_include │ │ └── nlohmann │ │ └── json.hpp ├── pcm │ ├── .bdsignore.all │ ├── .codedocs │ ├── .gitattributes │ ├── .github │ │ └── workflows │ │ │ ├── ci-clang-scan.yml │ │ │ ├── ci-cmake-options.yml │ │ │ ├── ci-cov-linux-report.yml │ │ │ ├── ci-cov-linux.yml │ │ │ ├── ci-cov-python.yml │ │ │ ├── ci-cov-report.yml │ │ │ ├── ci-cov-windows-report.yml │ │ │ ├── ci-cov-windows.yml │ │ │ ├── ci-cpack.yml │ │ │ ├── ci-cppcheck.yml │ │ │ ├── ci-gcc10.yml │ │ │ ├── ci-gcc48.yml │ │ │ ├── ci-gcc5.yml │ │ │ ├── ci-gcc7.yml │ │ │ ├── ci-gcc9.yml │ │ │ ├── ci-test.yml │ │ │ ├── ci-windows-ip.yml │ │ │ ├── ci-windows.yml │ │ │ ├── clang_scan.yml │ │ │ ├── cppcheck.yml │ │ │ ├── docker.yml │ │ │ ├── freebsd_build.yml │ │ │ ├── freebsd_scan_build.yml │ │ │ ├── linux_make.yml │ │ │ ├── macos-scan-build.yml │ │ │ ├── macosx_build.yml │ │ │ └── stats-cron-job.yml │ ├── .gitignore │ ├── .gitmodules │ ├── CMakeLists.txt │ ├── Dockerfile │ ├── Doxyfile │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── doc │ │ ├── CUSTOM-COMPILE-OPTIONS.md │ │ ├── CXL_README.md │ │ ├── DOCKER_README.md │ │ ├── ENVVAR_README.md │ │ ├── FAQ.md │ │ ├── FREEBSD_HOWTO.txt │ │ ├── KSysGuard HOWTO.docx │ │ ├── KSysGuard HOWTO.pdf │ │ ├── LINUX_HOWTO.txt │ │ ├── MAC_HOWTO.txt │ │ ├── PCM-EXPORTER.md │ │ ├── PCM-SENSOR-SERVER-README.md │ │ ├── PCM_ACCEL_README.md │ │ ├── PCM_RAW_README.md │ │ ├── STARS.md │ │ ├── WINDOWS_HOWTO.md │ │ ├── generate_summary_readme.md │ │ ├── license.txt │ │ └── run-as-administrator.png │ ├── docker-compose.yml │ ├── examples │ │ ├── CMakeLists.txt │ │ └── c_example.c │ ├── pcm-iio-gpu │ │ ├── CMakeLists.txt │ │ ├── include │ │ │ └── pcm-iio-gpu.h │ │ └── pcm-iio-gpu.cpp │ ├── pcm.spec │ ├── scripts │ │ ├── convert_edp_list.sh │ │ ├── cppcheck.sh │ │ ├── filter.sh │ │ ├── find_field.awk │ │ ├── find_field.sh │ │ ├── generate_summary.py │ │ ├── get_sles_bins.sh │ │ ├── grafana │ │ │ ├── README.md │ │ │ ├── automatic_influxdb.yml │ │ │ ├── automatic_prometheus.yml │ │ │ ├── prometheus.yml.template │ │ │ ├── provisioning │ │ │ │ └── dashboards │ │ │ │ │ └── pcm-provider.yml │ │ │ ├── start-prometheus.sh │ │ │ ├── start.sh │ │ │ ├── stop.sh │ │ │ └── telegraf.conf.template │ │ ├── pcm-background.sh │ │ ├── pcm-exporter │ │ ├── pcm-stop.sh │ │ ├── pcm.plot │ │ ├── pmu-query.py │ │ ├── readmem.sh │ │ ├── single_header.awk │ │ └── single_header.sh │ ├── src │ │ ├── CMakeLists.txt │ │ ├── MacMSRDriver │ │ │ ├── CMakeLists.txt │ │ │ ├── MSRAccessor.cpp │ │ │ ├── MSRAccessor.h │ │ │ ├── MSRKernel.h │ │ │ ├── PCIDriverInterface.cpp │ │ │ ├── PCIDriverInterface.h │ │ │ ├── PcmMsr.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ ├── aiott.xcuserdatad │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ │ │ └── pjkerly.xcuserdatad │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ │ ├── aiott.xcuserdatad │ │ │ │ │ ├── xcdebugger │ │ │ │ │ │ └── Breakpoints.xcbkptlist │ │ │ │ │ └── xcschemes │ │ │ │ │ │ ├── PcmMsr.xcscheme │ │ │ │ │ │ ├── PcmMsrLibrary.xcscheme │ │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ │ └── pjkerly.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── PcmMsrDriver.xcscheme │ │ │ │ │ ├── PcmMsrLibrary.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ ├── PcmMsr │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── PcmMsr-Info.plist │ │ │ │ ├── PcmMsr-Prefix.pch │ │ │ │ ├── PcmMsr.cpp │ │ │ │ ├── PcmMsr.h │ │ │ │ ├── PcmMsrClient.cpp │ │ │ │ ├── PcmMsrClient.h │ │ │ │ ├── PcmMsrDriver_info.c │ │ │ │ ├── UserKernelShared.h │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ ├── kextload.sh │ │ │ └── kextunload.sh │ │ ├── PMURegisterDeclarations │ │ │ ├── GenuineIntel-6-4F-1.json │ │ │ ├── GenuineIntel-6-55-4.json │ │ │ ├── GenuineIntel-6-55-7.json │ │ │ ├── GenuineIntel-6-55-B.json │ │ │ ├── GenuineIntel-6-6A-6.json │ │ │ ├── GenuineIntel-6-86-5.json │ │ │ ├── GenuineIntel-6-8E-C.json │ │ │ ├── GenuineIntel-6-8F-6.json │ │ │ └── GenuineIntel-6-8F-8.json │ │ ├── WinMSRDriver │ │ │ ├── MSR.inf │ │ │ ├── MSR.vcxproj │ │ │ ├── makefile │ │ │ ├── msr.h │ │ │ ├── msrmain.c │ │ │ ├── msrstruct.h │ │ │ └── sources │ │ ├── bw.cpp │ │ ├── bw.h │ │ ├── client │ │ │ ├── .cproject │ │ │ ├── client.cpp │ │ │ ├── client.h │ │ │ └── main.cpp │ │ ├── cpuasynchcounter.h │ │ ├── cpucounters.cpp │ │ ├── cpucounters.h │ │ ├── daemon │ │ │ ├── .cproject │ │ │ ├── .gitignore │ │ │ ├── common.h │ │ │ ├── daemon.cpp │ │ │ ├── daemon.h │ │ │ ├── main.cpp │ │ │ └── pcm.h │ │ ├── dashboard.cpp │ │ ├── dashboard.h │ │ ├── dashboardtest.cpp │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── exceptions │ │ │ └── unsupported_processor_exception.hpp │ │ ├── favicon.ico.h │ │ ├── freegetopt │ │ │ ├── ChangeLog │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── getopt.cpp │ │ │ └── getopt.h │ │ ├── lspci.h │ │ ├── memoptest.cpp │ │ ├── mmio.cpp │ │ ├── mmio.h │ │ ├── msr.cpp │ │ ├── msr.h │ │ ├── msrtest.cpp │ │ ├── mutex.h │ │ ├── opCode-106.txt │ │ ├── opCode-134.txt │ │ ├── opCode-143-accel.txt │ │ ├── opCode-143.txt │ │ ├── opCode-85.txt │ │ ├── pci.cpp │ │ ├── pci.h │ │ ├── pcm-accel-common.cpp │ │ ├── pcm-accel-common.h │ │ ├── pcm-accel.cpp │ │ ├── pcm-bw-histogram.sh │ │ ├── pcm-core.cpp │ │ ├── pcm-iio.cpp │ │ ├── pcm-latency.cpp │ │ ├── pcm-lspci.cpp │ │ ├── pcm-memory.cpp │ │ ├── pcm-mmio.cpp │ │ ├── pcm-msr.cpp │ │ ├── pcm-numa.cpp │ │ ├── pcm-pcicfg.cpp │ │ ├── pcm-pcie.cpp │ │ ├── pcm-pcie.h │ │ ├── pcm-power.cpp │ │ ├── pcm-raw.cpp │ │ ├── pcm-sensor-server.cpp │ │ ├── pcm-sensor-server.service.in │ │ ├── pcm-sensor.cpp │ │ ├── pcm-tpmi.cpp │ │ ├── pcm-tsx.cpp │ │ ├── pcm.cpp │ │ ├── readmem.cpp │ │ ├── realtime.cpp │ │ ├── resctrl.cpp │ │ ├── resctrl.h │ │ ├── threadpool.cpp │ │ ├── threadpool.h │ │ ├── topology.cpp │ │ ├── topology.h │ │ ├── topologyentry.h │ │ ├── types.h │ │ ├── uncore_pmu_discovery.cpp │ │ ├── uncore_pmu_discovery.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── version.h │ │ ├── width_extender.h │ │ ├── windows │ │ │ ├── AssemblyInfo.cpp │ │ │ ├── PCM-Service.exe.config │ │ │ ├── PCMInstaller.cpp │ │ │ ├── PCMInstaller.h │ │ │ ├── PCMService.cpp │ │ │ ├── PCMService.h │ │ │ ├── PCM_cpp_ReadMe.txt │ │ │ ├── ReadMe_PCMService.txt │ │ │ ├── dllmain.cpp │ │ │ ├── pcm-core-win.cpp │ │ │ ├── pcm-iio-win.cpp │ │ │ ├── pcm-latency-win.cpp │ │ │ ├── pcm-lib.cpp │ │ │ ├── pcm-lib.h │ │ │ ├── pcm-lspci-win.cpp │ │ │ ├── pcm-memory-win.cpp │ │ │ ├── pcm-mmio-win.cpp │ │ │ ├── pcm-msr-win.cpp │ │ │ ├── pcm-numa-win.cpp │ │ │ ├── pcm-pcicfg-win.cpp │ │ │ ├── pcm-pcie-win.cpp │ │ │ ├── pcm-power-win.cpp │ │ │ ├── pcm-raw-win.cpp │ │ │ ├── pcm-tsx-win.cpp │ │ │ ├── pcm.cpp │ │ │ ├── pcm_lib_ReadMe.txt │ │ │ ├── pcm_power_ReadMe.txt │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── windriver.h │ │ ├── winpmem │ │ │ ├── LICENSE.txt │ │ │ ├── winpmem.cpp │ │ │ └── winpmem.h │ │ └── winring0 │ │ │ ├── COPYRIGHT.txt │ │ │ ├── OlsApi.h │ │ │ ├── OlsApiInit.h │ │ │ ├── OlsApiInitDef.h │ │ │ ├── OlsApiInitExt.h │ │ │ └── OlsDef.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── daemon_alignment_test.cpp │ │ ├── test.sh │ │ └── urltest.cpp └── spdlog │ ├── .clang-format │ ├── .clang-tidy │ ├── .git-blame-ignore-revs │ ├── .gitattributes │ ├── .github │ └── workflows │ │ ├── linux.yml │ │ ├── macos.yml │ │ └── windows.yml │ ├── .gitignore │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README.md │ ├── appveyor.yml │ ├── bench │ ├── CMakeLists.txt │ ├── async_bench.cpp │ ├── bench.cpp │ ├── formatter-bench.cpp │ ├── latency.cpp │ └── utils.h │ ├── cmake │ ├── ide.cmake │ ├── pch.h.in │ ├── spdlog.pc.in │ ├── spdlogCPack.cmake │ ├── spdlogConfig.cmake.in │ ├── utils.cmake │ └── version.rc.in │ ├── example │ ├── CMakeLists.txt │ └── example.cpp │ ├── include │ └── spdlog │ │ ├── async.h │ │ ├── async_logger-inl.h │ │ ├── async_logger.h │ │ ├── cfg │ │ ├── argv.h │ │ ├── env.h │ │ ├── helpers-inl.h │ │ └── helpers.h │ │ ├── common-inl.h │ │ ├── common.h │ │ ├── details │ │ ├── backtracer-inl.h │ │ ├── backtracer.h │ │ ├── circular_q.h │ │ ├── console_globals.h │ │ ├── file_helper-inl.h │ │ ├── file_helper.h │ │ ├── fmt_helper.h │ │ ├── log_msg-inl.h │ │ ├── log_msg.h │ │ ├── log_msg_buffer-inl.h │ │ ├── log_msg_buffer.h │ │ ├── mpmc_blocking_q.h │ │ ├── null_mutex.h │ │ ├── os-inl.h │ │ ├── os.h │ │ ├── periodic_worker-inl.h │ │ ├── periodic_worker.h │ │ ├── registry-inl.h │ │ ├── registry.h │ │ ├── synchronous_factory.h │ │ ├── tcp_client-windows.h │ │ ├── tcp_client.h │ │ ├── thread_pool-inl.h │ │ ├── thread_pool.h │ │ ├── udp_client-windows.h │ │ ├── udp_client.h │ │ └── windows_include.h │ │ ├── fmt │ │ ├── bin_to_hex.h │ │ ├── bundled │ │ │ ├── args.h │ │ │ ├── base.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── fmt.license.rst │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ ├── std.h │ │ │ └── xchar.h │ │ ├── chrono.h │ │ ├── compile.h │ │ ├── fmt.h │ │ ├── ostr.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h │ │ ├── formatter.h │ │ ├── fwd.h │ │ ├── logger-inl.h │ │ ├── logger.h │ │ ├── mdc.h │ │ ├── pattern_formatter-inl.h │ │ ├── pattern_formatter.h │ │ ├── sinks │ │ ├── android_sink.h │ │ ├── ansicolor_sink-inl.h │ │ ├── ansicolor_sink.h │ │ ├── base_sink-inl.h │ │ ├── base_sink.h │ │ ├── basic_file_sink-inl.h │ │ ├── basic_file_sink.h │ │ ├── callback_sink.h │ │ ├── daily_file_sink.h │ │ ├── dist_sink.h │ │ ├── dup_filter_sink.h │ │ ├── hourly_file_sink.h │ │ ├── kafka_sink.h │ │ ├── mongo_sink.h │ │ ├── msvc_sink.h │ │ ├── null_sink.h │ │ ├── ostream_sink.h │ │ ├── qt_sinks.h │ │ ├── ringbuffer_sink.h │ │ ├── rotating_file_sink-inl.h │ │ ├── rotating_file_sink.h │ │ ├── sink-inl.h │ │ ├── sink.h │ │ ├── stdout_color_sinks-inl.h │ │ ├── stdout_color_sinks.h │ │ ├── stdout_sinks-inl.h │ │ ├── stdout_sinks.h │ │ ├── syslog_sink.h │ │ ├── systemd_sink.h │ │ ├── tcp_sink.h │ │ ├── udp_sink.h │ │ ├── win_eventlog_sink.h │ │ ├── wincolor_sink-inl.h │ │ └── wincolor_sink.h │ │ ├── spdlog-inl.h │ │ ├── spdlog.h │ │ ├── stopwatch.h │ │ ├── tweakme.h │ │ └── version.h │ ├── logos │ ├── jetbrains-variant-4.svg │ └── spdlog.png │ ├── scripts │ ├── ci_setup_clang.sh │ ├── extract_version.py │ └── format.sh │ ├── src │ ├── async.cpp │ ├── bundled_fmtlib_format.cpp │ ├── cfg.cpp │ ├── color_sinks.cpp │ ├── file_sinks.cpp │ ├── spdlog.cpp │ └── stdout_sinks.cpp │ └── tests │ ├── CMakeLists.txt │ ├── includes.h │ ├── main.cpp │ ├── test_async.cpp │ ├── test_backtrace.cpp │ ├── test_bin_to_hex.cpp │ ├── test_cfg.cpp │ ├── test_circular_q.cpp │ ├── test_create_dir.cpp │ ├── test_custom_callbacks.cpp │ ├── test_daily_logger.cpp │ ├── test_dup_filter.cpp │ ├── test_errors.cpp │ ├── test_eventlog.cpp │ ├── test_file_helper.cpp │ ├── test_file_logging.cpp │ ├── test_fmt_helper.cpp │ ├── test_macros.cpp │ ├── test_misc.cpp │ ├── test_mpmc_q.cpp │ ├── test_pattern_formatter.cpp │ ├── test_registry.cpp │ ├── test_sink.h │ ├── test_stdout_api.cpp │ ├── test_stopwatch.cpp │ ├── test_systemd.cpp │ ├── test_time_point.cpp │ ├── utils.cpp │ └── utils.h └── windows ├── README.md └── winxpum ├── cli ├── Resource.rc ├── cli.vcxproj ├── cli.vcxproj.filters ├── cli.vcxproj.user ├── lib-headers │ ├── CLI │ │ ├── App.hpp │ │ ├── CLI.hpp │ │ ├── Config.hpp │ │ ├── ConfigFwd.hpp │ │ ├── Error.hpp │ │ ├── Formatter.hpp │ │ ├── FormatterFwd.hpp │ │ ├── Macros.hpp │ │ ├── Option.hpp │ │ ├── Split.hpp │ │ ├── StringTools.hpp │ │ ├── Timer.hpp │ │ ├── TypeTools.hpp │ │ ├── Validators.hpp │ │ └── Version.hpp │ └── nlohmann │ │ └── json.hpp ├── resource.h └── src │ ├── cli_resource.cpp │ ├── cli_resource.h │ ├── cli_table.cpp │ ├── cli_table.h │ ├── cli_wrapper.cpp │ ├── cli_wrapper.h │ ├── comlet_base.h │ ├── comlet_config.cpp │ ├── comlet_config.h │ ├── comlet_discovery.cpp │ ├── comlet_discovery.h │ ├── comlet_dump.cpp │ ├── comlet_dump.h │ ├── comlet_firmware.cpp │ ├── comlet_firmware.h │ ├── comlet_statistics.cpp │ ├── comlet_statistics.h │ ├── comlet_version.cpp │ ├── comlet_version.h │ ├── core_stub.cpp │ ├── core_stub.h │ ├── core_stub │ ├── dll_core_stub.cpp │ └── dll_core_stub.h │ ├── exit_code.cpp │ ├── exit_code.h │ ├── help_formatter.cpp │ ├── help_formatter.h │ ├── utility.cpp │ ├── utility.h │ └── xpu-smi.cpp ├── core ├── Resource.rc ├── core.vcxproj ├── core.vcxproj.filters ├── core.vcxproj.user ├── include │ └── internal_api.h ├── lib-headers │ ├── igsc │ │ ├── gcc │ │ │ └── config.h │ │ ├── igsc_lib.h │ │ └── msvc │ │ │ └── config.h │ ├── level_zero │ │ ├── layers │ │ │ ├── zel_tracing_api.h │ │ │ ├── zel_tracing_ddi.h │ │ │ └── zel_tracing_register_cb.h │ │ ├── loader │ │ │ └── ze_loader.h │ │ ├── ze_api.h │ │ ├── ze_ddi.h │ │ ├── ze_ddi_common.h │ │ ├── zes_api.h │ │ ├── zes_ddi.h │ │ ├── zet_api.h │ │ └── zet_ddi.h │ └── spdlog │ │ ├── async.h │ │ ├── async_logger-inl.h │ │ ├── async_logger.h │ │ ├── cfg │ │ ├── argv.h │ │ ├── env.h │ │ ├── helpers-inl.h │ │ └── helpers.h │ │ ├── common-inl.h │ │ ├── common.h │ │ ├── details │ │ ├── backtracer-inl.h │ │ ├── backtracer.h │ │ ├── circular_q.h │ │ ├── console_globals.h │ │ ├── file_helper-inl.h │ │ ├── file_helper.h │ │ ├── fmt_helper.h │ │ ├── log_msg-inl.h │ │ ├── log_msg.h │ │ ├── log_msg_buffer-inl.h │ │ ├── log_msg_buffer.h │ │ ├── mpmc_blocking_q.h │ │ ├── null_mutex.h │ │ ├── os-inl.h │ │ ├── os.h │ │ ├── periodic_worker-inl.h │ │ ├── periodic_worker.h │ │ ├── registry-inl.h │ │ ├── registry.h │ │ ├── synchronous_factory.h │ │ ├── tcp_client-windows.h │ │ ├── tcp_client.h │ │ ├── thread_pool-inl.h │ │ ├── thread_pool.h │ │ ├── udp_client-windows.h │ │ ├── udp_client.h │ │ └── windows_include.h │ │ ├── fmt │ │ ├── bin_to_hex.h │ │ ├── bundled │ │ │ ├── args.h │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── fmt.license.rst │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── os.h │ │ │ ├── ostream.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ └── xchar.h │ │ ├── chrono.h │ │ ├── compile.h │ │ ├── fmt.h │ │ ├── ostr.h │ │ ├── ranges.h │ │ └── xchar.h │ │ ├── formatter.h │ │ ├── fwd.h │ │ ├── logger-inl.h │ │ ├── logger.h │ │ ├── pattern_formatter-inl.h │ │ ├── pattern_formatter.h │ │ ├── sinks │ │ ├── android_sink.h │ │ ├── ansicolor_sink-inl.h │ │ ├── ansicolor_sink.h │ │ ├── base_sink-inl.h │ │ ├── base_sink.h │ │ ├── basic_file_sink-inl.h │ │ ├── basic_file_sink.h │ │ ├── daily_file_sink.h │ │ ├── dist_sink.h │ │ ├── dup_filter_sink.h │ │ ├── hourly_file_sink.h │ │ ├── mongo_sink.h │ │ ├── msvc_sink.h │ │ ├── null_sink.h │ │ ├── ostream_sink.h │ │ ├── qt_sinks.h │ │ ├── ringbuffer_sink.h │ │ ├── rotating_file_sink-inl.h │ │ ├── rotating_file_sink.h │ │ ├── sink-inl.h │ │ ├── sink.h │ │ ├── stdout_color_sinks-inl.h │ │ ├── stdout_color_sinks.h │ │ ├── stdout_sinks-inl.h │ │ ├── stdout_sinks.h │ │ ├── syslog_sink.h │ │ ├── systemd_sink.h │ │ ├── tcp_sink.h │ │ ├── udp_sink.h │ │ ├── win_eventlog_sink.h │ │ ├── wincolor_sink-inl.h │ │ └── wincolor_sink.h │ │ ├── spdlog-inl.h │ │ ├── spdlog.h │ │ ├── stopwatch.h │ │ ├── tweakme.h │ │ └── version.h ├── libs │ ├── igsc.lib │ ├── spdlog.lib │ └── ze_loader.lib ├── resource.h └── src │ ├── api │ ├── api_types.h │ ├── device_model.cpp │ ├── device_model.h │ ├── unsupported.cpp │ └── xpum_api.cpp │ ├── control │ ├── device_manager.cpp │ ├── device_manager.h │ └── device_manager_interface.h │ ├── core │ ├── core.cpp │ └── core.h │ ├── device │ ├── device.cpp │ ├── device.h │ ├── gpu │ │ ├── gpu_device.cpp │ │ ├── gpu_device.h │ │ ├── gpu_device_stub.cpp │ │ └── gpu_device_stub.h │ ├── memoryEcc.cpp │ ├── memoryEcc.h │ ├── pcie_manager.cpp │ ├── pcie_manager.h │ ├── performancefactor.cpp │ ├── performancefactor.h │ ├── win_native.cpp │ └── win_native.h │ ├── dllmain.cpp │ ├── firmware │ ├── amc │ │ ├── amc_manager.h │ │ ├── ipmi_amc_manager.cpp │ │ └── ipmi_amc_manager.h │ ├── firmware_manager.cpp │ ├── firmware_manager.h │ └── ipmi │ │ ├── bsmc_interface.cpp │ │ ├── bsmc_interface.h │ │ ├── bsmc_ipmi_oem_cmd.h │ │ ├── bsmc_ipmi_storage_cmd.h │ │ ├── build_config.h │ │ ├── compiler_specific.h │ │ ├── file_util.h │ │ ├── file_utils.cpp │ │ ├── firmware.cpp │ │ ├── fru.cpp │ │ ├── fru.h │ │ ├── ipmi.cpp │ │ ├── ipmi.h │ │ ├── ipmi_interface.cpp │ │ ├── ipmi_interface.h │ │ ├── openipmi.h │ │ ├── pci.cpp │ │ ├── pci.h │ │ ├── pci_address.h │ │ ├── tool.h │ │ ├── winipmi.c │ │ ├── winipmi.h │ │ ├── winopenssl.h │ │ └── wintypes.h │ ├── framework.h │ ├── infrastructure │ ├── configuration.cpp │ ├── configuration.h │ ├── device_capability.h │ ├── device_property.cpp │ ├── device_property.h │ ├── error_code.h │ ├── exception │ │ ├── base_exception.h │ │ └── level_zero_initialization_exception.h │ ├── handle_lock.cpp │ ├── handle_lock.h │ ├── init_close_interface.h │ ├── logger.h │ ├── measurement_data.cpp │ ├── measurement_data.h │ ├── measurement_type.h │ ├── property.h │ ├── utility.cpp │ ├── utility.h │ ├── version.cpp │ └── version.h │ ├── pch.cpp │ └── pch.h └── winxpum.sln /.cmake/grpc_common.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/.cmake/grpc_common.cmake -------------------------------------------------------------------------------- /.cmake/os_release_info.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/.cmake/os_release_info.cmake -------------------------------------------------------------------------------- /.cmake/xpum_version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/.cmake/xpum_version.cmake -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .ci 2 | .git 3 | .vscode 4 | **/build 5 | validation 6 | deployment 7 | **/*.log -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/.gitignore -------------------------------------------------------------------------------- /3rd_party_src/libcap2_2.44.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/3rd_party_src/libcap2_2.44.tar.xz -------------------------------------------------------------------------------- /3rd_party_src/libnl-3.5.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/3rd_party_src/libnl-3.5.0.tar.gz -------------------------------------------------------------------------------- /3rd_party_src/readline-8.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/3rd_party_src/readline-8.1.tar.gz -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SMI_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/SMI_README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.3.4 -------------------------------------------------------------------------------- /amcmcli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/amcmcli/CMakeLists.txt -------------------------------------------------------------------------------- /amcmcli/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/amcmcli/src/config.h.in -------------------------------------------------------------------------------- /amcmcli/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/amcmcli/src/main.cpp -------------------------------------------------------------------------------- /cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/CMakeLists.txt -------------------------------------------------------------------------------- /cli/src/cli_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/cli_resource.cpp -------------------------------------------------------------------------------- /cli/src/cli_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/cli_resource.h -------------------------------------------------------------------------------- /cli/src/cli_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/cli_table.cpp -------------------------------------------------------------------------------- /cli/src/cli_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/cli_table.h -------------------------------------------------------------------------------- /cli/src/cli_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/cli_wrapper.cpp -------------------------------------------------------------------------------- /cli/src/cli_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/cli_wrapper.h -------------------------------------------------------------------------------- /cli/src/comlet_agentset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_agentset.cpp -------------------------------------------------------------------------------- /cli/src/comlet_agentset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_agentset.h -------------------------------------------------------------------------------- /cli/src/comlet_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_base.h -------------------------------------------------------------------------------- /cli/src/comlet_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_config.cpp -------------------------------------------------------------------------------- /cli/src/comlet_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_config.h -------------------------------------------------------------------------------- /cli/src/comlet_diagnostic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_diagnostic.cpp -------------------------------------------------------------------------------- /cli/src/comlet_diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_diagnostic.h -------------------------------------------------------------------------------- /cli/src/comlet_discovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_discovery.cpp -------------------------------------------------------------------------------- /cli/src/comlet_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_discovery.h -------------------------------------------------------------------------------- /cli/src/comlet_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_dump.cpp -------------------------------------------------------------------------------- /cli/src/comlet_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_dump.h -------------------------------------------------------------------------------- /cli/src/comlet_firmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_firmware.cpp -------------------------------------------------------------------------------- /cli/src/comlet_firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_firmware.h -------------------------------------------------------------------------------- /cli/src/comlet_group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_group.cpp -------------------------------------------------------------------------------- /cli/src/comlet_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_group.h -------------------------------------------------------------------------------- /cli/src/comlet_health.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_health.cpp -------------------------------------------------------------------------------- /cli/src/comlet_health.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_health.h -------------------------------------------------------------------------------- /cli/src/comlet_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_log.cpp -------------------------------------------------------------------------------- /cli/src/comlet_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_log.h -------------------------------------------------------------------------------- /cli/src/comlet_policy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_policy.cpp -------------------------------------------------------------------------------- /cli/src/comlet_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_policy.h -------------------------------------------------------------------------------- /cli/src/comlet_ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_ps.cpp -------------------------------------------------------------------------------- /cli/src/comlet_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_ps.h -------------------------------------------------------------------------------- /cli/src/comlet_reset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_reset.cpp -------------------------------------------------------------------------------- /cli/src/comlet_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_reset.h -------------------------------------------------------------------------------- /cli/src/comlet_sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_sensor.cpp -------------------------------------------------------------------------------- /cli/src/comlet_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_sensor.h -------------------------------------------------------------------------------- /cli/src/comlet_statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_statistics.cpp -------------------------------------------------------------------------------- /cli/src/comlet_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_statistics.h -------------------------------------------------------------------------------- /cli/src/comlet_topdown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_topdown.cpp -------------------------------------------------------------------------------- /cli/src/comlet_topdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_topdown.h -------------------------------------------------------------------------------- /cli/src/comlet_topology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_topology.cpp -------------------------------------------------------------------------------- /cli/src/comlet_topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_topology.h -------------------------------------------------------------------------------- /cli/src/comlet_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_version.cpp -------------------------------------------------------------------------------- /cli/src/comlet_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_version.h -------------------------------------------------------------------------------- /cli/src/comlet_vgpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_vgpu.cpp -------------------------------------------------------------------------------- /cli/src/comlet_vgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/comlet_vgpu.h -------------------------------------------------------------------------------- /cli/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/config.h.in -------------------------------------------------------------------------------- /cli/src/core_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/core_stub.cpp -------------------------------------------------------------------------------- /cli/src/core_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/core_stub.h -------------------------------------------------------------------------------- /cli/src/core_stub/dump_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/core_stub/dump_stub.cpp -------------------------------------------------------------------------------- /cli/src/core_stub/lib_core_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/core_stub/lib_core_stub.h -------------------------------------------------------------------------------- /cli/src/exit_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/exit_code.cpp -------------------------------------------------------------------------------- /cli/src/exit_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/exit_code.h -------------------------------------------------------------------------------- /cli/src/grpc_stub/dump_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/grpc_stub/dump_stub.cpp -------------------------------------------------------------------------------- /cli/src/help_formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/help_formatter.cpp -------------------------------------------------------------------------------- /cli/src/help_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/help_formatter.h -------------------------------------------------------------------------------- /cli/src/local_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/local_functions.cpp -------------------------------------------------------------------------------- /cli/src/local_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/local_functions.h -------------------------------------------------------------------------------- /cli/src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/logger.cpp -------------------------------------------------------------------------------- /cli/src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/logger.h -------------------------------------------------------------------------------- /cli/src/pretty_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/pretty_table.cpp -------------------------------------------------------------------------------- /cli/src/pretty_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/pretty_table.h -------------------------------------------------------------------------------- /cli/src/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/utility.cpp -------------------------------------------------------------------------------- /cli/src/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/utility.h -------------------------------------------------------------------------------- /cli/src/xpumcli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/cli/src/xpumcli.cpp -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/README.md -------------------------------------------------------------------------------- /core/include/xpum_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/include/xpum_api.h -------------------------------------------------------------------------------- /core/include/xpum_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/include/xpum_structs.h -------------------------------------------------------------------------------- /core/resources/config/pci.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/resources/config/pci.conf -------------------------------------------------------------------------------- /core/resources/config/pci.ids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/resources/config/pci.ids -------------------------------------------------------------------------------- /core/resources/config/vgpu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/resources/config/vgpu.conf -------------------------------------------------------------------------------- /core/resources/config/xpum.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/resources/kernels/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/resources/kernels/LICENSE -------------------------------------------------------------------------------- /core/resources/mediadata/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/resources/mediadata/LICENSE -------------------------------------------------------------------------------- /core/src/amc/amc_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/amc/amc_manager.h -------------------------------------------------------------------------------- /core/src/amc/ipmi_amc_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/amc/ipmi_amc_manager.cpp -------------------------------------------------------------------------------- /core/src/amc/ipmi_amc_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/amc/ipmi_amc_manager.h -------------------------------------------------------------------------------- /core/src/api/api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/api/api_types.h -------------------------------------------------------------------------------- /core/src/api/device_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/api/device_model.cpp -------------------------------------------------------------------------------- /core/src/api/device_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/api/device_model.h -------------------------------------------------------------------------------- /core/src/api/internal_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/api/internal_api.h -------------------------------------------------------------------------------- /core/src/api/psc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/api/psc.h -------------------------------------------------------------------------------- /core/src/api/xpum_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/api/xpum_api.cpp -------------------------------------------------------------------------------- /core/src/api/xpum_topology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/api/xpum_topology.cpp -------------------------------------------------------------------------------- /core/src/control/device_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/control/device_manager.h -------------------------------------------------------------------------------- /core/src/core/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/core/core.cpp -------------------------------------------------------------------------------- /core/src/core/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/core/core.h -------------------------------------------------------------------------------- /core/src/data_logic/data_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/data_logic/data_logic.h -------------------------------------------------------------------------------- /core/src/data_logic/persistency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/data_logic/persistency.h -------------------------------------------------------------------------------- /core/src/data_logic/shared_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/data_logic/shared_data.h -------------------------------------------------------------------------------- /core/src/device/amcInBand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/amcInBand.cpp -------------------------------------------------------------------------------- /core/src/device/amcInBand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/amcInBand.h -------------------------------------------------------------------------------- /core/src/device/cpu/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/src/device/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/device.cpp -------------------------------------------------------------------------------- /core/src/device/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/device.h -------------------------------------------------------------------------------- /core/src/device/engine_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/engine_info.cpp -------------------------------------------------------------------------------- /core/src/device/engine_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/engine_info.h -------------------------------------------------------------------------------- /core/src/device/fpga/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/src/device/frequency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/frequency.cpp -------------------------------------------------------------------------------- /core/src/device/frequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/frequency.h -------------------------------------------------------------------------------- /core/src/device/gpu/gpu_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/gpu/gpu_device.h -------------------------------------------------------------------------------- /core/src/device/memoryEcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/memoryEcc.cpp -------------------------------------------------------------------------------- /core/src/device/memoryEcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/memoryEcc.h -------------------------------------------------------------------------------- /core/src/device/pcie_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/pcie_manager.cpp -------------------------------------------------------------------------------- /core/src/device/pcie_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/pcie_manager.h -------------------------------------------------------------------------------- /core/src/device/pciedown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/pciedown.cpp -------------------------------------------------------------------------------- /core/src/device/pciedown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/pciedown.h -------------------------------------------------------------------------------- /core/src/device/power.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/power.cpp -------------------------------------------------------------------------------- /core/src/device/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/power.h -------------------------------------------------------------------------------- /core/src/device/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/scheduler.cpp -------------------------------------------------------------------------------- /core/src/device/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/scheduler.h -------------------------------------------------------------------------------- /core/src/device/skuType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/skuType.cpp -------------------------------------------------------------------------------- /core/src/device/skuType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/skuType.h -------------------------------------------------------------------------------- /core/src/device/standby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/standby.cpp -------------------------------------------------------------------------------- /core/src/device/standby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/device/standby.h -------------------------------------------------------------------------------- /core/src/diagnostic/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/diagnostic/helper.cpp -------------------------------------------------------------------------------- /core/src/diagnostic/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/diagnostic/helper.h -------------------------------------------------------------------------------- /core/src/diagnostic/precheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/diagnostic/precheck.cpp -------------------------------------------------------------------------------- /core/src/diagnostic/precheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/diagnostic/precheck.h -------------------------------------------------------------------------------- /core/src/event/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/src/ext-include/igsc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ext-include/igsc_lib.h -------------------------------------------------------------------------------- /core/src/firmware/fwdata_mgmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/firmware/fwdata_mgmt.cpp -------------------------------------------------------------------------------- /core/src/firmware/fwdata_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/firmware/fwdata_mgmt.h -------------------------------------------------------------------------------- /core/src/firmware/igsc_err_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/firmware/igsc_err_msg.h -------------------------------------------------------------------------------- /core/src/firmware/load_igsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/firmware/load_igsc.h -------------------------------------------------------------------------------- /core/src/firmware/oprom_fw_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/firmware/oprom_fw_mgmt.h -------------------------------------------------------------------------------- /core/src/firmware/psc_mgmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/firmware/psc_mgmt.cpp -------------------------------------------------------------------------------- /core/src/firmware/psc_mgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/firmware/psc_mgmt.h -------------------------------------------------------------------------------- /core/src/firmware/system_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/firmware/system_cmd.h -------------------------------------------------------------------------------- /core/src/group/group_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/group/group_manager.cpp -------------------------------------------------------------------------------- /core/src/group/group_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/group/group_manager.h -------------------------------------------------------------------------------- /core/src/group/group_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/group/group_unit.cpp -------------------------------------------------------------------------------- /core/src/group/group_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/group/group_unit.h -------------------------------------------------------------------------------- /core/src/health/health_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/health/health_manager.h -------------------------------------------------------------------------------- /core/src/infrastructure/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/infrastructure/const.h -------------------------------------------------------------------------------- /core/src/infrastructure/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/infrastructure/logger.h -------------------------------------------------------------------------------- /core/src/infrastructure/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/infrastructure/timer.cpp -------------------------------------------------------------------------------- /core/src/infrastructure/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/infrastructure/timer.h -------------------------------------------------------------------------------- /core/src/infrastructure/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/infrastructure/utility.h -------------------------------------------------------------------------------- /core/src/infrastructure/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/infrastructure/version.h -------------------------------------------------------------------------------- /core/src/ipmi/bsmc_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/bsmc_interface.cpp -------------------------------------------------------------------------------- /core/src/ipmi/bsmc_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/bsmc_interface.h -------------------------------------------------------------------------------- /core/src/ipmi/bsmc_ipmi_oem_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/bsmc_ipmi_oem_cmd.h -------------------------------------------------------------------------------- /core/src/ipmi/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/file_util.h -------------------------------------------------------------------------------- /core/src/ipmi/file_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/file_utils.cpp -------------------------------------------------------------------------------- /core/src/ipmi/firmware.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/firmware.cpp -------------------------------------------------------------------------------- /core/src/ipmi/fru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/fru.cpp -------------------------------------------------------------------------------- /core/src/ipmi/fru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/fru.h -------------------------------------------------------------------------------- /core/src/ipmi/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/hal.h -------------------------------------------------------------------------------- /core/src/ipmi/ipmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/ipmi.cpp -------------------------------------------------------------------------------- /core/src/ipmi/ipmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/ipmi.h -------------------------------------------------------------------------------- /core/src/ipmi/ipmi_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/ipmi_interface.cpp -------------------------------------------------------------------------------- /core/src/ipmi/ipmi_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/ipmi_interface.h -------------------------------------------------------------------------------- /core/src/ipmi/lcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/lcr.h -------------------------------------------------------------------------------- /core/src/ipmi/pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/pci.cpp -------------------------------------------------------------------------------- /core/src/ipmi/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/pci.h -------------------------------------------------------------------------------- /core/src/ipmi/pci_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/pci_address.h -------------------------------------------------------------------------------- /core/src/ipmi/scr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/scr.h -------------------------------------------------------------------------------- /core/src/ipmi/sdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/sdr.cpp -------------------------------------------------------------------------------- /core/src/ipmi/sdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/sdr.h -------------------------------------------------------------------------------- /core/src/ipmi/sensor_reading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/sensor_reading.cpp -------------------------------------------------------------------------------- /core/src/ipmi/sensor_reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/sensor_reading.h -------------------------------------------------------------------------------- /core/src/ipmi/tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/tool.h -------------------------------------------------------------------------------- /core/src/ipmi/winopenssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/ipmi/winopenssl.h -------------------------------------------------------------------------------- /core/src/log/dbg_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/log/dbg_log.cpp -------------------------------------------------------------------------------- /core/src/log/dbg_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/log/dbg_log.h -------------------------------------------------------------------------------- /core/src/monitor/monitor_task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/monitor/monitor_task.cpp -------------------------------------------------------------------------------- /core/src/monitor/monitor_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/monitor/monitor_task.h -------------------------------------------------------------------------------- /core/src/policy/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/src/policy/policy_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/policy/policy_manager.h -------------------------------------------------------------------------------- /core/src/redfish/libcurl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/redfish/libcurl.cpp -------------------------------------------------------------------------------- /core/src/redfish/libcurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/redfish/libcurl.h -------------------------------------------------------------------------------- /core/src/redfish/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/redfish/util.cpp -------------------------------------------------------------------------------- /core/src/redfish/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/redfish/util.h -------------------------------------------------------------------------------- /core/src/topology/hwinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/topology/hwinfo.cpp -------------------------------------------------------------------------------- /core/src/topology/hwinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/topology/hwinfo.h -------------------------------------------------------------------------------- /core/src/topology/pci_database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/topology/pci_database.h -------------------------------------------------------------------------------- /core/src/topology/topology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/topology/topology.cpp -------------------------------------------------------------------------------- /core/src/topology/topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/topology/topology.h -------------------------------------------------------------------------------- /core/src/topology/xe_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/topology/xe_link.h -------------------------------------------------------------------------------- /core/src/vgpu/precheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/vgpu/precheck.cpp -------------------------------------------------------------------------------- /core/src/vgpu/precheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/vgpu/precheck.h -------------------------------------------------------------------------------- /core/src/vgpu/vgpu_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/vgpu/vgpu_manager.cpp -------------------------------------------------------------------------------- /core/src/vgpu/vgpu_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/vgpu/vgpu_manager.h -------------------------------------------------------------------------------- /core/src/vgpu/vgpu_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/core/src/vgpu/vgpu_types.h -------------------------------------------------------------------------------- /daemon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/CMakeLists.txt -------------------------------------------------------------------------------- /daemon/compileProto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/compileProto.sh -------------------------------------------------------------------------------- /daemon/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/config.h.in -------------------------------------------------------------------------------- /daemon/core.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/core.proto -------------------------------------------------------------------------------- /daemon/daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/daemon.cpp -------------------------------------------------------------------------------- /daemon/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/logger.h -------------------------------------------------------------------------------- /daemon/xpum.service.template.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/xpum.service.template.in -------------------------------------------------------------------------------- /daemon/xpum_core_service_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/xpum_core_service_impl.cpp -------------------------------------------------------------------------------- /daemon/xpum_core_service_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/daemon/xpum_core_service_impl.h -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/deployment/README.md -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | !doxyrest/* -------------------------------------------------------------------------------- /doc/CLI_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/CLI_user_guide.md -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/Install_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/Install_guide.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/amcmcli_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/amcmcli_user_guide.md -------------------------------------------------------------------------------- /doc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/build.sh -------------------------------------------------------------------------------- /doc/img/Grafana.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/img/Grafana.PNG -------------------------------------------------------------------------------- /doc/img/Grafana_config.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/img/Grafana_config.PNG -------------------------------------------------------------------------------- /doc/img/Grafana_set_variables.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/img/Grafana_set_variables.PNG -------------------------------------------------------------------------------- /doc/img/architecture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/img/architecture.PNG -------------------------------------------------------------------------------- /doc/img/cli_gpu_info.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/img/cli_gpu_info.PNG -------------------------------------------------------------------------------- /doc/img/cli_settings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/img/cli_settings.PNG -------------------------------------------------------------------------------- /doc/img/ilo-setup-virtual-nic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/img/ilo-setup-virtual-nic.png -------------------------------------------------------------------------------- /doc/img/ilo-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/img/ilo-setup.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/restful.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/restful.rst -------------------------------------------------------------------------------- /doc/smi_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/smi_index.rst -------------------------------------------------------------------------------- /doc/smi_install_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/smi_install_guide.md -------------------------------------------------------------------------------- /doc/smi_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/smi_user_guide.md -------------------------------------------------------------------------------- /doc/smidoc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/smidoc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/sphinxconf/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/sphinxconf/conf.py -------------------------------------------------------------------------------- /doc/win_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/win_index.rst -------------------------------------------------------------------------------- /doc/xpum_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/xpum_index.rst -------------------------------------------------------------------------------- /doc/xpum_win_user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/xpum_win_user_guide.md -------------------------------------------------------------------------------- /doc/xpumdoc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/doc/xpumdoc/CMakeLists.txt -------------------------------------------------------------------------------- /docs/.doctrees/README.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/README.doctree -------------------------------------------------------------------------------- /docs/.doctrees/SMI_README.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/SMI_README.doctree -------------------------------------------------------------------------------- /docs/.doctrees/WIN_README.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/WIN_README.doctree -------------------------------------------------------------------------------- /docs/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/.doctrees/restful.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/restful.doctree -------------------------------------------------------------------------------- /docs/.doctrees/smi_index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/smi_index.doctree -------------------------------------------------------------------------------- /docs/.doctrees/win_index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/win_index.doctree -------------------------------------------------------------------------------- /docs/.doctrees/xpum_index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/.doctrees/xpum_index.doctree -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CLI_user_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/CLI_user_guide.html -------------------------------------------------------------------------------- /docs/Install_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/Install_guide.html -------------------------------------------------------------------------------- /docs/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/README.html -------------------------------------------------------------------------------- /docs/REST_README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/REST_README.html -------------------------------------------------------------------------------- /docs/SMI_README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/SMI_README.html -------------------------------------------------------------------------------- /docs/WIN_README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/WIN_README.html -------------------------------------------------------------------------------- /docs/_images/Grafana.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_images/Grafana.PNG -------------------------------------------------------------------------------- /docs/_images/architecture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_images/architecture.PNG -------------------------------------------------------------------------------- /docs/_images/cli_gpu_info.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_images/cli_gpu_info.PNG -------------------------------------------------------------------------------- /docs/_images/cli_settings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_images/cli_settings.PNG -------------------------------------------------------------------------------- /docs/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/basic.css -------------------------------------------------------------------------------- /docs/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/css/theme.css -------------------------------------------------------------------------------- /docs/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/doctools.js -------------------------------------------------------------------------------- /docs/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/file.png -------------------------------------------------------------------------------- /docs/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/jquery.js -------------------------------------------------------------------------------- /docs/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/js/theme.js -------------------------------------------------------------------------------- /docs/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/language_data.js -------------------------------------------------------------------------------- /docs/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/minus.png -------------------------------------------------------------------------------- /docs/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/plus.png -------------------------------------------------------------------------------- /docs/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/pygments.css -------------------------------------------------------------------------------- /docs/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/searchtools.js -------------------------------------------------------------------------------- /docs/_static/sphinx_highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/sphinx_highlight.js -------------------------------------------------------------------------------- /docs/_static/target-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/_static/target-highlight.js -------------------------------------------------------------------------------- /docs/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/genindex.html -------------------------------------------------------------------------------- /docs/http-routingtable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/http-routingtable.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/installation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/installation.html -------------------------------------------------------------------------------- /docs/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/objects.inv -------------------------------------------------------------------------------- /docs/restful.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/restful.html -------------------------------------------------------------------------------- /docs/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/search.html -------------------------------------------------------------------------------- /docs/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/searchindex.js -------------------------------------------------------------------------------- /docs/smi_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/smi_index.html -------------------------------------------------------------------------------- /docs/smi_install_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/smi_install_guide.html -------------------------------------------------------------------------------- /docs/smi_user_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/smi_user_guide.html -------------------------------------------------------------------------------- /docs/smidoc/rst/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/smidoc/rst/global.html -------------------------------------------------------------------------------- /docs/smidoc/rst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/smidoc/rst/index.html -------------------------------------------------------------------------------- /docs/win_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/win_index.html -------------------------------------------------------------------------------- /docs/xpum_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/xpum_index.html -------------------------------------------------------------------------------- /docs/xpum_win_user_guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/xpum_win_user_guide.html -------------------------------------------------------------------------------- /docs/xpumdoc/rst/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/xpumdoc/rst/global.html -------------------------------------------------------------------------------- /docs/xpumdoc/rst/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/docs/xpumdoc/rst/index.html -------------------------------------------------------------------------------- /icinga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/icinga/README.md -------------------------------------------------------------------------------- /icinga/check_intel_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/icinga/check_intel_gpu.py -------------------------------------------------------------------------------- /icinga/check_xpu_smi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/icinga/check_xpu_smi.conf -------------------------------------------------------------------------------- /icinga/check_xpu_smi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/icinga/check_xpu_smi.py -------------------------------------------------------------------------------- /icinga/gpu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/icinga/gpu.conf -------------------------------------------------------------------------------- /install/script/deb/postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/install/script/deb/postinst.in -------------------------------------------------------------------------------- /install/script/deb/prerm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/install/script/deb/prerm.in -------------------------------------------------------------------------------- /install/script/rpm/postin.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/install/script/rpm/postin.in -------------------------------------------------------------------------------- /install/script/rpm/posttrans.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/install/script/rpm/posttrans.in -------------------------------------------------------------------------------- /install/script/rpm/preun.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/install/script/rpm/preun.in -------------------------------------------------------------------------------- /install/tools/rest/keytool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/install/tools/rest/keytool.sh -------------------------------------------------------------------------------- /install/tools/rest/rest_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/install/tools/rest/rest_config.py -------------------------------------------------------------------------------- /intel_graphics_linux_pgp.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/intel_graphics_linux_pgp.pem -------------------------------------------------------------------------------- /rest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/.gitignore -------------------------------------------------------------------------------- /rest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/CMakeLists.txt -------------------------------------------------------------------------------- /rest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/README.md -------------------------------------------------------------------------------- /rest/gen_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/gen_doc.py -------------------------------------------------------------------------------- /rest/gen_grpc_py_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/gen_grpc_py_files.sh -------------------------------------------------------------------------------- /rest/grafana-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/grafana-dashboard.json -------------------------------------------------------------------------------- /rest/gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/gunicorn.conf.py -------------------------------------------------------------------------------- /rest/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/requirements.txt -------------------------------------------------------------------------------- /rest/stub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/__init__.py -------------------------------------------------------------------------------- /rest/stub/agent_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/agent_settings.py -------------------------------------------------------------------------------- /rest/stub/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/config.py -------------------------------------------------------------------------------- /rest/stub/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/devices.py -------------------------------------------------------------------------------- /rest/stub/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/diagnostics.py -------------------------------------------------------------------------------- /rest/stub/dump_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/dump_raw_data.py -------------------------------------------------------------------------------- /rest/stub/firmwares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/firmwares.py -------------------------------------------------------------------------------- /rest/stub/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/groups.py -------------------------------------------------------------------------------- /rest/stub/grpc_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/grpc_stub.py -------------------------------------------------------------------------------- /rest/stub/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/health.py -------------------------------------------------------------------------------- /rest/stub/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/policy.py -------------------------------------------------------------------------------- /rest/stub/ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/ps.py -------------------------------------------------------------------------------- /rest/stub/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/sensor.py -------------------------------------------------------------------------------- /rest/stub/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/statistics.py -------------------------------------------------------------------------------- /rest/stub/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/topology.py -------------------------------------------------------------------------------- /rest/stub/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/versions.py -------------------------------------------------------------------------------- /rest/stub/vgpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/vgpu.py -------------------------------------------------------------------------------- /rest/stub/xpum_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/stub/xpum_enums.py -------------------------------------------------------------------------------- /rest/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/__init__.py -------------------------------------------------------------------------------- /rest/views/agent_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/agent_settings.py -------------------------------------------------------------------------------- /rest/views/device_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/device_config.py -------------------------------------------------------------------------------- /rest/views/devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/devices.py -------------------------------------------------------------------------------- /rest/views/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/diagnostics.py -------------------------------------------------------------------------------- /rest/views/dump_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/dump_raw_data.py -------------------------------------------------------------------------------- /rest/views/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/exporter.py -------------------------------------------------------------------------------- /rest/views/firmwares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/firmwares.py -------------------------------------------------------------------------------- /rest/views/groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/groups.py -------------------------------------------------------------------------------- /rest/views/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/health.py -------------------------------------------------------------------------------- /rest/views/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/policy.py -------------------------------------------------------------------------------- /rest/views/ps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/ps.py -------------------------------------------------------------------------------- /rest/views/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/sensor.py -------------------------------------------------------------------------------- /rest/views/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/statistics.py -------------------------------------------------------------------------------- /rest/views/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/topology.py -------------------------------------------------------------------------------- /rest/views/versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/versions.py -------------------------------------------------------------------------------- /rest/views/vgpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/views/vgpu.py -------------------------------------------------------------------------------- /rest/xpum_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/xpum_logger.py -------------------------------------------------------------------------------- /rest/xpum_rest_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/rest/xpum_rest_main.py -------------------------------------------------------------------------------- /third-party-programs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third-party-programs.txt -------------------------------------------------------------------------------- /third_party/CLI11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/CLI11/LICENSE -------------------------------------------------------------------------------- /third_party/CLI11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/CLI11/README.md -------------------------------------------------------------------------------- /third_party/CLI11/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/CLI11/VERSION -------------------------------------------------------------------------------- /third_party/hwloc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/AUTHORS -------------------------------------------------------------------------------- /third_party/hwloc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/hwloc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/COPYING -------------------------------------------------------------------------------- /third_party/hwloc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/Makefile.am -------------------------------------------------------------------------------- /third_party/hwloc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/Makefile.in -------------------------------------------------------------------------------- /third_party/hwloc/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/NEWS -------------------------------------------------------------------------------- /third_party/hwloc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/README -------------------------------------------------------------------------------- /third_party/hwloc/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/VERSION -------------------------------------------------------------------------------- /third_party/hwloc/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/aclocal.m4 -------------------------------------------------------------------------------- /third_party/hwloc/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/autogen.sh -------------------------------------------------------------------------------- /third_party/hwloc/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/build.sh -------------------------------------------------------------------------------- /third_party/hwloc/config/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/config/ar-lib -------------------------------------------------------------------------------- /third_party/hwloc/config/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/config/compile -------------------------------------------------------------------------------- /third_party/hwloc/config/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/config/depcomp -------------------------------------------------------------------------------- /third_party/hwloc/config/hwloc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/config/hwloc.m4 -------------------------------------------------------------------------------- /third_party/hwloc/config/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/config/missing -------------------------------------------------------------------------------- /third_party/hwloc/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/configure -------------------------------------------------------------------------------- /third_party/hwloc/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/configure.ac -------------------------------------------------------------------------------- /third_party/hwloc/doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/doc/Makefile.am -------------------------------------------------------------------------------- /third_party/hwloc/doc/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/doc/Makefile.in -------------------------------------------------------------------------------- /third_party/hwloc/doc/README.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/doc/README.sed -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_ALLOW_FLAG_ALL.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_ALLOW_FLAG_CUSTOM.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_ALLOW_FLAG_LOCAL_RESTRICTIONS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_API_VERSION.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_api_version.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_COMPONENT_ABI.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_api_version.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_COMPONENT_TYPE_DISC.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_generic_components.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_COMPONENT_TYPE_XML.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_generic_components.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_CPUBIND_NOMEMBIND.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_CPUBIND_PROCESS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_CPUBIND_STRICT.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_CPUBIND_THREAD.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISC_PHASE_ANNOTATE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISC_PHASE_CPU.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISC_PHASE_GLOBAL.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISC_PHASE_IO.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISC_PHASE_MEMORY.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISC_PHASE_MISC.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISC_PHASE_PCI.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISC_PHASE_TWEAK.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISTANCES_ADD_FLAG_GROUP.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_add.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISTANCES_KIND_FROM_OS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISTANCES_KIND_FROM_USER.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISTANCES_TRANSFORM_LINKS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_DISTRIB_FLAG_REVERSE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_distribute.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_LOCAL_NUMANODE_FLAG_ALL.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_LOCATION_TYPE_CPUSET.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_LOCATION_TYPE_OBJECT.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_FLAG_HIGHER_FIRST.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_FLAG_LOWER_FIRST.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_ID_BANDWIDTH.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_ID_CAPACITY.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_ID_LATENCY.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_ID_LOCALITY.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_ID_READ_BANDWIDTH.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_ID_READ_LATENCY.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_ID_WRITE_BANDWIDTH.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMATTR_ID_WRITE_LATENCY.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_BIND.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_BYNODESET.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_DEFAULT.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_FIRSTTOUCH.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_INTERLEAVE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_MIGRATE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_MIXED.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_NEXTTOUCH.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_NOCPUBIND.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_PROCESS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_STRICT.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_MEMBIND_THREAD.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_BRIDGE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_BRIDGE_HOST.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_BRIDGE_PCI.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_CACHE_DATA.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_CACHE_INSTRUCTION.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_CACHE_UNIFIED.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_CORE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_DIE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_GROUP.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_L1CACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_L1ICACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_L2CACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_L2ICACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_L3CACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_L3ICACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_L4CACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_L5CACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_MACHINE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_MEMCACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_MISC.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_NUMANODE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_OSDEV_BLOCK.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_OSDEV_COPROC.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_OSDEV_DMA.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_OSDEV_GPU.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_OSDEV_NETWORK.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_OSDEV_OPENFABRICS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_OS_DEVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_PACKAGE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_PCI_DEVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_OBJ_PU.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_RESTRICT_FLAG_ADAPT_IO.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_RESTRICT_FLAG_ADAPT_MISC.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_RESTRICT_FLAG_BYNODESET.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_RESTRICT_FLAG_REMOVE_CPULESS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_RESTRICT_FLAG_REMOVE_MEMLESS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_SHOW_ALL_ERRORS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_components_core_funcs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_DIFF_APPLY_REVERSE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_DIFF_OBJ_ATTR.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_INFO.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_NAME.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_DIFF_OBJ_ATTR_SIZE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_DIFF_TOO_COMPLEX.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_EXPORT_XML_FLAG_V1.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_xmlexport.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_FLAG_IS_THISSYSTEM.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_FLAG_NO_CPUKINDS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_FLAG_NO_DISTANCES.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TOPOLOGY_FLAG_NO_MEMATTRS.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_DEPTH_BRIDGE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_DEPTH_MEMCACHE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_DEPTH_MISC.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_DEPTH_MULTIPLE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_DEPTH_NUMANODE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_DEPTH_OS_DEVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_DEPTH_PCI_DEVICE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_DEPTH_UNKNOWN.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_FILTER_KEEP_ALL.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_FILTER_KEEP_IMPORTANT.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_FILTER_KEEP_NONE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_FILTER_KEEP_STRUCTURE.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/HWLOC_TYPE_UNORDERED.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_alloc.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_alloc_membind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_alloc_membind_policy.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_alloc_setup_object.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_components_core_funcs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_allow_flags_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_backend_alloc.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_backend_enable.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_allbut.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_alloc.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_alloc_full.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_and.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_andnot.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_asprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_clr.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_clr_range.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_compare.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_compare_first.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_copy.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_dup.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_fill.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_first.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_first_unset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_foreach_begin.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_foreach_end.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_free.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_from_ith_ulong.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_from_ulong.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_from_ulongs.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_intersects.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_isequal.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_isfull.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_isincluded.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_isset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_iszero.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_last.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_last_unset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_list_asprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_list_snprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_list_sscanf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_next.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_next_unset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_not.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_nr_ulongs.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_only.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_or.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_set.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_set_ith_ulong.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_set_range.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_singlify.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_singlify_per_core.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_find_misc.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_snprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_sscanf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_taskset_asprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_taskset_snprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_taskset_sscanf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_to_ith_ulong.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_to_ulong.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_to_ulongs.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_weight.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_xor.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bitmap_zero.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_bridge_covers_pcibus.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_advanced_io.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_compare_types.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_component_type_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_generic_components.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_component_type_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_generic_components.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_const_bitmap_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_bitmap.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_const_cpuset_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_sets.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_const_nodeset_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_sets.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cpubind_flags_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cpukinds_get_by_cpuset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpukinds.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cpukinds_get_info.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpukinds.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cpukinds_get_nr.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpukinds.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cpukinds_register.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpukinds.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cpuset_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_sets.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cpuset_to_nodeset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_nodeset_convert.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cuda_get_device_cpuset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cuda.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cuda_get_device_osdev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cuda.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cuda_get_device_osdev_by_index.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cuda.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cuda_get_device_pci_ids.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cuda.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cuda_get_device_pcidev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cuda.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cudart_get_device_cpuset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cudart.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cudart_get_device_osdev_by_index.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cudart.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cudart_get_device_pci_ids.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cudart.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_cudart_get_device_pcidev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cudart.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_disc_phase_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_disc_phase_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_disc_status_flag_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_disc_backends.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_add_commit.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_add.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_add_create.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_add.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_add_flag_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_add.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_add_handle_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_add.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_add_values.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_add.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_get.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_get_by_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_get_by_name.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_get_by_type.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_get_name.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_kind_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_obj_index.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_consult.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_release.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_release_remove.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_remove.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_remove.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_remove.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_remove_by_type.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_remove.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_transform.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distances_transform_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_distances_get.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distrib.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_distribute.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_distrib_flags_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_distribute.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_export_obj_userdata.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_xmlexport.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_export_obj_userdata_base64.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_xmlexport.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_free.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_free_xmlbuffer.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_xmlexport.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_ancestor_obj_by_type.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_ancestors.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_api_version.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_api_version.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_area_membind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_area_memlocation.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_cache_type_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_find_cache.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_closest_objs.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_find_misc.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_common_ancestor_obj.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_ancestors.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_cpubind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_depth_type.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_last_cpu_location.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_local_numanode_objs.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_membind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_memory_parents_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_nbobjs_by_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_nbobjs_by_type.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_next_bridge.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_advanced_io.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_next_child.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_ancestors.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_next_obj_by_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_next_obj_by_type.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_next_osdev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_advanced_io.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_next_pcidev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_advanced_io.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_non_io_ancestor_obj.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_advanced_io.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_obj_below_by_type.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_find_misc.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_obj_by_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_obj_by_type.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_pcidev_by_busid.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_advanced_io.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_pcidev_by_busidstring.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_advanced_io.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_proc_cpubind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_proc_last_cpu_location.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_proc_membind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_pu_obj_by_os_index.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_find_misc.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_root_obj.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_thread_cpubind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_type_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_type_depth_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_type_or_above_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_get_type_or_below_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_gl_get_display_by_osdev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_gl.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_gl_get_display_osdev_by_name.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_gl.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_gl_get_display_osdev_by_port_device.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_gl.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_hide_errors.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_components_core_funcs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_ibv_get_device_cpuset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_openfabrics.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_ibv_get_device_osdev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_openfabrics.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_ibv_get_device_osdev_by_name.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_openfabrics.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_levelzero_get_device_cpuset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levelzero.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_levelzero_get_device_osdev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levelzero.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_linux_get_tid_cpubind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_linux.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_linux_get_tid_last_cpu_location.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_linux.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_linux_read_path_as_cpumask.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_linux.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_linux_set_tid_cpubind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_linux.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_local_numanode_flag_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_location_type_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_flag_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_get_best_initiator.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_get_best_target.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_get_by_name.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_get_flags.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_get_initiators.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_get_name.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_get_targets.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_get_value.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_id_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_id_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_register.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_memattr_set_value.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_memattrs_manage.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_membind_flags_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_membind_policy_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_nodeset_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_sets.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_nvml_get_device_cpuset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_nvml.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_nvml_get_device_osdev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_nvml.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_nvml_get_device_osdev_by_index.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_nvml.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_add_info.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_info_attr.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_add_other_obj_sets.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_attr_snprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_strings.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_bridge_type_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_bridge_type_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_cache_type_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_cache_type_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_get_info_by_name.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_info_attr.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_is_in_subtree.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_ancestors.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_osdev_type_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_osdev_type_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_objects.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_is_cache.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_is_dcache.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_is_icache.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_is_io.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_is_memory.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_is_normal.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_helper_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_snprintf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_strings.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_string.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_strings.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_obj_type_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_types.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_opencl_get_device_cpuset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_opencl.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_opencl_get_device_osdev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_opencl.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_opencl_get_device_osdev_by_index.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_opencl.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_opencl_get_device_pci_busid.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_opencl.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_pci_find_by_busid.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_components_pcifind.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_pcidisc_find_cap.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_components_pcidisc.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_pcidisc_find_linkspeed.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_components_pcidisc.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_pcidisc_tree_attach.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_components_pcidisc.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_restrict_flags_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_rsmi_get_device_cpuset.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_rsmi.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_rsmi_get_device_osdev.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_rsmi.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_rsmi_get_device_osdev_by_index.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_rsmi.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_set_area_membind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_set_cpubind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_set_membind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_set_proc_cpubind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_set_proc_membind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_membinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_set_thread_cpubind.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_cpubinding.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_shmem_topology_adopt.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_shmem.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_shmem_topology_get_length.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_shmem.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_shmem_topology_write.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_shmem.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_abi_check.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_creation.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_alloc_group_object.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_allow.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_check.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_creation.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_components_flag_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_setsource.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_destroy.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_creation.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_apply.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_apply_flags_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_build.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_destroy.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_export_xml.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_export_xmlbuffer.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_load_xml.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_load_xmlbuffer.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_obj_attr_type_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_obj_attr_type_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_type_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_diff_type_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_diff.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_dup.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_creation.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_export_synthetic.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_syntheticexport.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_export_xml.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_xmlexport.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_export_xml_flags_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_xmlexport.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_export_xmlbuffer.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_xmlexport.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_flags_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_get_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_levels.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_get_flags.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_get_support.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_get_type_filter.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_get_userdata.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_init.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_creation.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_insert_group_object.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_insert_misc_object.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_is_thissystem.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_load.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_creation.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_reconnect.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_components_core_funcs.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_refresh.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_restrict.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_tinker.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_set_components.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_setsource.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_set_flags.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_set_pid.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_setsource.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_set_synthetic.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_setsource.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_set_type_filter.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_set_userdata.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_set_xml.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_setsource.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_set_xmlbuffer.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_setsource.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_topology_t.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_creation.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_type_filter_e.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_configuration.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_type_sscanf.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_strings.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_type_sscanf_as_depth.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_object_strings.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen-doc/man/man3/hwloc_windows_get_nr_processor_groups.3: -------------------------------------------------------------------------------- 1 | .so man3/hwlocality_windows.3 2 | -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/doc/doxygen.cfg -------------------------------------------------------------------------------- /third_party/hwloc/doc/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/doc/doxygen.css -------------------------------------------------------------------------------- /third_party/hwloc/doc/hwloc.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/doc/hwloc.doxy -------------------------------------------------------------------------------- /third_party/hwloc/doc/main.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/doc/main.doxy -------------------------------------------------------------------------------- /third_party/hwloc/doc/netloc.doxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/doc/netloc.doxy -------------------------------------------------------------------------------- /third_party/hwloc/hwloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/hwloc.pc.in -------------------------------------------------------------------------------- /third_party/hwloc/hwloc/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/hwloc/base64.c -------------------------------------------------------------------------------- /third_party/hwloc/hwloc/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/hwloc/bind.c -------------------------------------------------------------------------------- /third_party/hwloc/hwloc/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/hwloc/bitmap.c -------------------------------------------------------------------------------- /third_party/hwloc/hwloc/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/hwloc/diff.c -------------------------------------------------------------------------------- /third_party/hwloc/hwloc/hwloc.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/hwloc/hwloc.dtd -------------------------------------------------------------------------------- /third_party/hwloc/hwloc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/hwloc/misc.c -------------------------------------------------------------------------------- /third_party/hwloc/hwloc/shmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/hwloc/shmem.c -------------------------------------------------------------------------------- /third_party/hwloc/include/hwloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/include/hwloc.h -------------------------------------------------------------------------------- /third_party/hwloc/netloc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/netloc.pc.in -------------------------------------------------------------------------------- /third_party/hwloc/netloc/edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/netloc/edge.c -------------------------------------------------------------------------------- /third_party/hwloc/netloc/hwloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/netloc/hwloc.c -------------------------------------------------------------------------------- /third_party/hwloc/netloc/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/netloc/node.c -------------------------------------------------------------------------------- /third_party/hwloc/netloc/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/netloc/path.c -------------------------------------------------------------------------------- /third_party/hwloc/netloc/scotch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/hwloc/netloc/scotch.c -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/embedded/autogen.sh: -------------------------------------------------------------------------------- 1 | : 2 | autoreconf -ivf 3 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16amd64-8n2c-cpusets.xml.options: -------------------------------------------------------------------------------- 1 | -p -v --of xml --no-icaches 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16amd64-8n2c-cpusets.xml.source: -------------------------------------------------------------------------------- 1 | 16amd64-8n2c-cpusets.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16amd64-8n2c-cpusets_noadmin.options: -------------------------------------------------------------------------------- 1 | - -v --disallowed 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16amd64-8n2c-cpusets_noadmin.source: -------------------------------------------------------------------------------- 1 | 16amd64-8n2c-cpusets.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2c2t-offlines.xml.options: -------------------------------------------------------------------------------- 1 | -p -v --of xml --no-icaches 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2c2t-offlines.xml.source: -------------------------------------------------------------------------------- 1 | 16em64t-4s2c2t-offlines.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2c2t.xml.options: -------------------------------------------------------------------------------- 1 | -v --of xml --no-icaches 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2c2t.xml.source: -------------------------------------------------------------------------------- 1 | 16em64t-4s2c2t.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2c2t_merge.options: -------------------------------------------------------------------------------- 1 | - -v --merge --no-icaches 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2c2t_merge.source: -------------------------------------------------------------------------------- 1 | 16em64t-4s2c2t.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2c2t_ncaches.options: -------------------------------------------------------------------------------- 1 | - -v --no-caches 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2c2t_ncaches.source: -------------------------------------------------------------------------------- 1 | 16em64t-4s2c2t.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/16em64t-4s2ca2c-cpusetreorder-merge.options: -------------------------------------------------------------------------------- 1 | - -v --filter all:structure 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/2i386-2c-nohugepage.xml.options: -------------------------------------------------------------------------------- 1 | -p -v --of xml --no-icaches 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/2i386-2c-nohugepage.xml.source: -------------------------------------------------------------------------------- 1 | 2i386-2c-nohugepage.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/2i386-2t-hugepagesizecount.xml.options: -------------------------------------------------------------------------------- 1 | -p -v --of xml --no-icaches 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/2i386-2t-hugepagesizecount.xml.source: -------------------------------------------------------------------------------- 1 | 2i386-2t-hugepagesizecount.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/2pa-pcidomain32bits-disabled.source: -------------------------------------------------------------------------------- 1 | 2pa-pcidomain32bits.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/32amd64-4s2n4c-cgroup2.xml.options: -------------------------------------------------------------------------------- 1 | -v --of xml --no-icaches 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/32amd64-4s2n4c-cgroup2.xml.source: -------------------------------------------------------------------------------- 1 | 32amd64-4s2n4c-cgroup2.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/32em64t-2n8c+1mic.options: -------------------------------------------------------------------------------- 1 | -v --of xml --whole-io 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/40intel64-2g2n4c+pci.options: -------------------------------------------------------------------------------- 1 | -v --of xml --whole-io 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/64intel64-fakeKNL-SNC4-hybrid-msc.source: -------------------------------------------------------------------------------- 1 | 64intel64-fakeKNL-SNC4-hybrid.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/allowed/test1.options: -------------------------------------------------------------------------------- 1 | -v -.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/allowed/test1.synthetic: -------------------------------------------------------------------------------- 1 | numa:4 core:2 pu:2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/fakeheterocpunuma.options: -------------------------------------------------------------------------------- 1 | -v --of xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/linux/nvidiagpunumanodes.kept.source: -------------------------------------------------------------------------------- 1 | nvidiagpunumanodes.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/x86+linux/5intel64-hybrid-lakefield.options: -------------------------------------------------------------------------------- 1 | -v 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/x86+linux/64amd64-4p2n4ca2co.topoextnuma.source: -------------------------------------------------------------------------------- 1 | 64amd64-4p2n4ca2co.tar.bz2 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16-2gr2gr2n2c+misc.console.options: -------------------------------------------------------------------------------- 1 | --of console -v 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16amd64-4distances.console.options: -------------------------------------------------------------------------------- 1 | --of console -v 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16amd64-4distances.console.source: -------------------------------------------------------------------------------- 1 | 16amd64-4distances.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16amd64-4distances.v1tov2.source: -------------------------------------------------------------------------------- 1 | 16amd64-4distances.v1.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16amd64-4distances.v2tov1.options: -------------------------------------------------------------------------------- 1 | --of xml --export-xml-flags 1 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16amd64-4distances.v2tov1.source: -------------------------------------------------------------------------------- 1 | 16amd64-4distances.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16em64t-4s2c2t.console.options: -------------------------------------------------------------------------------- 1 | --of console 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16em64t-4s2c2t.console.source: -------------------------------------------------------------------------------- 1 | 16em64t-4s2c2t.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16intel64-manyVFs.console.nocollapse.options: -------------------------------------------------------------------------------- 1 | --of console -v --no-collapse 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16intel64-manyVFs.console.nocollapse.source: -------------------------------------------------------------------------------- 1 | 16intel64-manyVFs.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16intel64-manyVFs.console.options: -------------------------------------------------------------------------------- 1 | --of console -v 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/16intel64-manyVFs.console.source: -------------------------------------------------------------------------------- 1 | 16intel64-manyVFs.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/28intel64-2p2g7c-CoD.nogroups.v1tov2.options: -------------------------------------------------------------------------------- 1 | --ignore group 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/28intel64-2p2g7c-CoD.nogroups.v1tov2.source: -------------------------------------------------------------------------------- 1 | 28intel64-2p2g7c-CoDgroups.v1.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/28intel64-2p2g7c-CoDgroups.v1tov2.source: -------------------------------------------------------------------------------- 1 | 28intel64-2p2g7c-CoDgroups.v1.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/2intel64-1n2c-numaroot.v1tov2.source: -------------------------------------------------------------------------------- 1 | 2intel64-1n2c-numaroot.v1.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/32em64t-2n8c2t-pci-noio.options: -------------------------------------------------------------------------------- 1 | --no-io 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/32em64t-2n8c2t-pci-noio.source: -------------------------------------------------------------------------------- 1 | 32em64t-2n8c2t-pci-wholeio.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/32em64t-2n8c2t-pci-normalio.source: -------------------------------------------------------------------------------- 1 | 32em64t-2n8c2t-pci-wholeio.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/32em64t-2n8c2t-pci-wholeio.options: -------------------------------------------------------------------------------- 1 | --whole-io 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/64intel64-3g2n+2n-irregulargroups+pci.options: -------------------------------------------------------------------------------- 1 | --disallowed 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/64intel64-fakeKNL-SNC4-hybrid.v2tov1.options: -------------------------------------------------------------------------------- 1 | --of xml --export-xml-flags 1 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/64intel64-fakeKNL-SNC4-hybrid.v2tov1.source: -------------------------------------------------------------------------------- 1 | 64intel64-fakeKNL-SNC4-hybrid.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/8em64t-2p2ca2co-nonodesets.v1tov2.source: -------------------------------------------------------------------------------- 1 | 8em64t-2p2ca2co-nonodesets.v1.xml 2 | -------------------------------------------------------------------------------- /third_party/hwloc/tests/hwloc/xml/8ia64-2n2s2c+1n.v1tov2.source: -------------------------------------------------------------------------------- 1 | 8ia64-2n2s2c+1n.v1.xml 2 | -------------------------------------------------------------------------------- /third_party/json/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/json/LICENSE.MIT -------------------------------------------------------------------------------- /third_party/json/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/json/VERSION -------------------------------------------------------------------------------- /third_party/pcm/.bdsignore.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/.bdsignore.all -------------------------------------------------------------------------------- /third_party/pcm/.codedocs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/.codedocs -------------------------------------------------------------------------------- /third_party/pcm/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/.gitattributes -------------------------------------------------------------------------------- /third_party/pcm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/.gitignore -------------------------------------------------------------------------------- /third_party/pcm/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/.gitmodules -------------------------------------------------------------------------------- /third_party/pcm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/CMakeLists.txt -------------------------------------------------------------------------------- /third_party/pcm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/Dockerfile -------------------------------------------------------------------------------- /third_party/pcm/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/Doxyfile -------------------------------------------------------------------------------- /third_party/pcm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/LICENSE -------------------------------------------------------------------------------- /third_party/pcm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/README.md -------------------------------------------------------------------------------- /third_party/pcm/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/appveyor.yml -------------------------------------------------------------------------------- /third_party/pcm/doc/CXL_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/doc/CXL_README.md -------------------------------------------------------------------------------- /third_party/pcm/doc/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/doc/FAQ.md -------------------------------------------------------------------------------- /third_party/pcm/doc/MAC_HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/doc/MAC_HOWTO.txt -------------------------------------------------------------------------------- /third_party/pcm/doc/STARS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/doc/STARS.md -------------------------------------------------------------------------------- /third_party/pcm/doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/doc/license.txt -------------------------------------------------------------------------------- /third_party/pcm/pcm.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/pcm.spec -------------------------------------------------------------------------------- /third_party/pcm/scripts/filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/scripts/filter.sh -------------------------------------------------------------------------------- /third_party/pcm/scripts/find_field.sh: -------------------------------------------------------------------------------- 1 | 2 | 3 | head -1 $1 | awk -F ',' -v term="$2" -f find_field.awk 4 | 5 | 6 | -------------------------------------------------------------------------------- /third_party/pcm/scripts/pcm-stop.sh: -------------------------------------------------------------------------------- 1 | 2 | kill `cat pcm.pid` 3 | -------------------------------------------------------------------------------- /third_party/pcm/scripts/pcm.plot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/scripts/pcm.plot -------------------------------------------------------------------------------- /third_party/pcm/src/WinMSRDriver/makefile: -------------------------------------------------------------------------------- 1 | !INCLUDE $(NTMAKEENV)\makefile.def -------------------------------------------------------------------------------- /third_party/pcm/src/bw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/bw.cpp -------------------------------------------------------------------------------- /third_party/pcm/src/bw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/bw.h -------------------------------------------------------------------------------- /third_party/pcm/src/cpucounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/cpucounters.h -------------------------------------------------------------------------------- /third_party/pcm/src/daemon/pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/daemon/pcm.h -------------------------------------------------------------------------------- /third_party/pcm/src/dashboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/dashboard.cpp -------------------------------------------------------------------------------- /third_party/pcm/src/dashboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/dashboard.h -------------------------------------------------------------------------------- /third_party/pcm/src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/debug.cpp -------------------------------------------------------------------------------- /third_party/pcm/src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/debug.h -------------------------------------------------------------------------------- /third_party/pcm/src/favicon.ico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/favicon.ico.h -------------------------------------------------------------------------------- /third_party/pcm/src/lspci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/lspci.h -------------------------------------------------------------------------------- /third_party/pcm/src/mmio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/mmio.cpp -------------------------------------------------------------------------------- /third_party/pcm/src/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/mmio.h -------------------------------------------------------------------------------- /third_party/pcm/src/msr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/msr.cpp -------------------------------------------------------------------------------- /third_party/pcm/src/msr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/msr.h -------------------------------------------------------------------------------- /third_party/pcm/src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/mutex.h -------------------------------------------------------------------------------- /third_party/pcm/src/pci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/pci.cpp -------------------------------------------------------------------------------- /third_party/pcm/src/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/pci.h -------------------------------------------------------------------------------- /third_party/pcm/src/pcm-pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/pcm-pcie.h -------------------------------------------------------------------------------- /third_party/pcm/src/pcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/pcm.cpp -------------------------------------------------------------------------------- /third_party/pcm/src/resctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/resctrl.h -------------------------------------------------------------------------------- /third_party/pcm/src/topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/topology.h -------------------------------------------------------------------------------- /third_party/pcm/src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/types.h -------------------------------------------------------------------------------- /third_party/pcm/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/utils.cpp -------------------------------------------------------------------------------- /third_party/pcm/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/src/utils.h -------------------------------------------------------------------------------- /third_party/pcm/src/version.h: -------------------------------------------------------------------------------- 1 | #define PCM_VERSION "(2023-11-10 13:26:36 +0100 ID=dd02c99b)" 2 | -------------------------------------------------------------------------------- /third_party/pcm/tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/pcm/tests/test.sh -------------------------------------------------------------------------------- /third_party/spdlog/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/spdlog/.clang-tidy -------------------------------------------------------------------------------- /third_party/spdlog/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=false 2 | -------------------------------------------------------------------------------- /third_party/spdlog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/spdlog/.gitignore -------------------------------------------------------------------------------- /third_party/spdlog/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/spdlog/INSTALL -------------------------------------------------------------------------------- /third_party/spdlog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/spdlog/LICENSE -------------------------------------------------------------------------------- /third_party/spdlog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/spdlog/README.md -------------------------------------------------------------------------------- /third_party/spdlog/src/cfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/third_party/spdlog/src/cfg.cpp -------------------------------------------------------------------------------- /windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/windows/README.md -------------------------------------------------------------------------------- /windows/winxpum/cli/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/windows/winxpum/cli/resource.h -------------------------------------------------------------------------------- /windows/winxpum/core/src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/windows/winxpum/core/src/pch.h -------------------------------------------------------------------------------- /windows/winxpum/winxpum.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/xpumanager/HEAD/windows/winxpum/winxpum.sln --------------------------------------------------------------------------------