Framework Definitions
At a high level, Framework definitions (FWDs) are the tests a user or administrator chooses to run. We call them Framework Definitions because they are more than just tests. Rather they are plugins with the purpose of defining the scope of both data collection and analysis for Intel® Cluster Checker. Unless otherwise specified, Intel® Cluster Checker will use the health_base framework definition (health_base.xml). Pre-defined framework definitions are located at /opt/intel/clck/20.x.y/etc/fwd/ or /opt/intel/oneapi/clck/<version>/etc/fwd/.
Framework definitions can come in many shapes and sizes. They can be ‘atomic’, containing only a single provider or test. Or the can be a meta framework calling on other frameworks, creating a tree of providers and tests.
What Makes a Framework Definition
FWDs can contain:
Other framework definitions: A framework definition may contain other framework definitions. They are found inside the includes tag. The path to a framework definition must be defined as an include element within the tag.
<includes> <include>path/to/fwd.xml</include> </include>
Data providers: For data collection, the providers contained in a framework definition define the data to be collected. The tag providers contains a list of providers, each defined by a provider element.
<providers> <provider>provider_name</provider> </providers>
Message catalogs (signs and diagnoses): The message catalog defines what messages will appear to describe signs, diagnoses, and remedies. The tag message catalogs contains a list of elements group. Each group contains elements with the tag entry that each define a message catalog, which is a .xmc file.
<message_catalogs> <group> <entry>message_catalog.xmc</entry> </group> </message_catalogs>
Analyzer extensions: During analysis, an analyzer_extension filters raw data for use by the knowledge base modules. The tag analyzer_extension contains a list of group elements. Each group contains elements with the tag entry that specify an analyzer extension.
<analyzer_extension> <group> <entry>analyzer_extension_name</entry> </group> </analyzer_extension>
Knowledge base modules: The knowledge base contains rules that produce signs and diagnoses. The tag kb_mods contains a list of elements mod. Each mod specifies a knowledge base module in the form of a .clp file.
<kb_mods> <mod>kb_mod.clp</mod> </kb_mods>
A description: The tag fwd_descr contains a description of the framework definition.
<fwd_descr>This framework definition is an example</fwd_descr>
Postprocessor extensions: Postprocessor extensions are responsible for formatting the results of analysis and providing readable output. The tag postproc_extensions contains elements with the tag group, which contain entry tags. The entries indicate postprocessor extensions. For more information about postprocessor extensions, see Extending Intel® Cluster Checker.
<postproc_extensions> <group> <entry>postprocessor_extension_name</entry> </group> </postproc_extensions>
Groups: The group tag groups elements together by path. For example, to use two analyzer extensions from path abc and from path def, use the group tag as follows:
<analyzer_extension> <group path="abc/"> <entry>extension1</entry> <entry>extension2</entry> </group> <group path="def/"> <entry>extension3</entry> <entry>extension4</entry> </group> </analyzer_extension>
Provider path: The provider_path tag defines a custom path for provider XML files. The default provider path is /opt/intel/clck/20.x.y/etc/providers.
<provider_path>custom_provider_path</provider_path>
Provider auxiliary path: The provider_auxiliary_path tag defines a custom path for provider scripts. The default provider path is /opt/intel/clck/20.x.y/provider/share.
<provider_auxiliary_path>custom_provider_auxiliary_path</provider_auxiliary_path>
Analyzer extension path: The extension_path tag defines a custom path for analyzer extensions. The default analyzer extension path is /opt/intel/clck/20.x.y/analyzer/intel64/cpp.
<extension_path>analyzer_extension_path</extension_path>
Knowledge base path: The kb_path tag defines a custom path for knowledge base modules. The default KB path is /opt/intel/clck/20.x.y/kb.
<kb_path>custom_kb_path</kb_path>
The following file myFramework.xml contains an example of a custom framework definition. This framework definition includes the framework definition myFramework2.xml. Additionally, it specifies the provider myProvider and the analyzer extension myExtension. The CLIPS knowledge base module myKB_Module.clp defines the classes and rules to run. The message catalog messages.xmc will define any messages to display.
The provider path, provider auxiliary path, extension path, and knowledge base path are commented out in this example. The tool will now use the default locations for these paths
<configuration> <framework_definition name="myFramework"> <includes> <include>fwd/myFramework2.xml</include> </includes> <providers> <provider>myProvider<provider> </providers> <message_catalogs> <group> <entry>messages.xmc</entry> </group> </message_catalogs> <analyzer_extension> <group> <entry>myExtension</entry> </group> </analyzer_extension> <kb_mods> <mod>myKB_Module.clp</mod> </kb_mods> <!--<provider_path></provider_path> --> <!--<provider_auxiliary_path></provider_auxiliary_path> --> <!--<extension_path></extension_path> --> <!--<kb_path></kb_path> --> <fwd_desc>This is my custom framework definition</fwd_desc> <framework_definition> </configuration>
Select Solutions Framework Definition Layout
You can find lots of details about different framework definitions and how they all work together using -X flag with clck. For example, I want to look at all the Intel Select Solution frameworks.
[user@cluster ~]$ clck -X list | grep select* select_solutions_network_performance select_solutions_provis_benchmarks_base_2022.0 select_solutions_provis_benchmarks_plus_2022.0 select_solutions_provis_user_base_2022.0 select_solutions_provis_user_plus_2022.0 select_solutions_redhat_openshift_base select_solutions_redhat_openshift_plus select_solutions_sim_mod_benchmarks_base_2018.0 select_solutions_sim_mod_benchmarks_plus_2018.0 select_solutions_sim_mod_benchmarks_plus_2021.0 select_solutions_sim_mod_benchmarks_plus_second_gen_xeon_sp select_solutions_sim_mod_priv_base_2018.0 select_solutions_sim_mod_priv_plus_2018.0 select_solutions_sim_mod_priv_plus_2021.0 select_solutions_sim_mod_priv_plus_second_gen_xeon_sp select_solutions_sim_mod_user_base_2018.0 select_solutions_sim_mod_user_plus_2018.0 select_solutions_sim_mod_user_plus_2021.0 select_solutions_sim_mod_user_plus_second_gen_xeon_sp
Once you have a specific framework in mind, you can use -X and the frameworks name to get even more specific detail about the tests and providers. Including an overview of what the items are looking for.
Lets review each of these Frameworks individually to understand what other providers they call.
select_solutions_network_performance
select_solutions_network_performance |--imb_uniband |--tmiconf |--datconf |--ethtool |--ethtool_show_coalesce |--ibstat |--ipaddr |--lspci |--ofedinfo |--tmiconf |--udevadm-net |--uname
select_solutions_provis_benchmarks_base_2022.0, select_solutions_provis_benchmarks_plus_2022.0, select_solutions_provis_user_base_2022.0 and select_solutions_provis_user_plus_2022.0
select_solutions_provis_benchmarks_base(plus)_2022.0 ~or~ select_solutions_provis_user_base(plus)_2022.0 |--embree |--oidn |--uname
select_solutions_redhat_openshift_base and select_solutions_redhat_openshift_plus
select_solutions_redhat_openshift_base(plus) |--bios_checker |--cpuinfo |--cpupower |--dmesg |--dmidecode |--ethernet_info |--hwloc_dump_hwdata |--intel_pstate_status |--kernel_tools |--lshw |--lscpu |--meminfo |--numactl |--nvme_info |--rhostools |--uname
select_solutions_sim_mod_benchmarks_base_2018.0, select_solutions_sim_mod_benchmarks_plus_second_gen_xeon_sp and select_solutions_sim_mod_benchmarks_plus_2018.0
select_solutions_sim_mod_benchmarks_base(plus)_2018.0 ~or~ select_solutions_sim_mod_benchmarks_plus_second_gen_xeon_sp |--dgemm |--hpcg_cluster |--hpcg_single |--hpl_cluster |--imb_pingpong |--stream |--uname
select_solutions_sim_mod_benchmarks_plus_2021.0
select_solutions_sim_mod_benchmarks_plus_2021.0 |--dgemm |--hpcg_cluster |--hpcg_single |--hpl_cluster |--imb_uniband |--stream |--uname
select_solutions_sim_mod_priv_base_2018.0, select_solutions_sim_mod_priv_plus_2018.0 and select_solutions_sim_mod_priv_plus_second_gen_xeon_sp
select_solutions_sim_mod_priv_base_2018.0 |-- privileged_user | |--id | |--uname |-- cpuid |-- cpuinfo |-- cpupower |-- dmesg |-- hwloc_dump_hwdata |-- intel_pstate_status |-- kernel_tools |-- lspci_verbose |-- lscpu |-- numactl |-- dmidecode |-- meminfo |-- uname
select_solutions_sim_mod_priv_plus_2021.0
select_solutions_sim_mod_priv_plus_2021.0 |-- privileged_user | |-- id | |-- uname |-- third-gen-xeon-sp | |-- cpuid | |-- cpuinfo | |-- cpupower | |-- dmesg | |-- hwloc_dump_hwdata | |-- intel_pstate_status | |-- kernel_tools | |-- lscpu | |-- numactl | |-- uname |-- lspci_verbose |-- dmidecode |-- meminfo |-- uname
select_solutions_sim_mod_user_base_2018.0, select_solutions_sim_mod_user_plus_2018.0
select_solutions_sim_mod_user_base_2018.0 |-- select_solutions_sim_mod_benchmarks_base(plus)_2018.0 | |--dgemm | |--hpcg_cluster | |--hpcg_single | |--hpl_cluster | |--imb_pingpong | |--stream | |--uname |-- intel_hpc_platform_compat-hpc-2018.0 | |--intel_hpc_platform_base_compat-hpc-2018.0 | | |-- intel_hpc_platform_version_compat-hpc-2018.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- intel_hpc_platform_minimum_memory_requirements_compat-hpc-2018.0 | | | |-- cpuid | | | |-- cpuinfo | | | |-- cpupower | | | |-- dmesg | | | |-- hwloc_dump_hwdata | | | |-- kernel_tools | | | |-- lscpu | | | |-- meminfo | | | |-- numactl | | | |-- uname | | |-- intel_hpc_platform_minimum_storage | | | |-- df | | | |-- mount | | | |-- uname | | |-- lsb_libraries | | | |-- libraries | | | |-- uname | |--intel_hpc_platform_hpc-cluster-2018.0 | | |-- intel_hpc_platform_base_hpc-cluster-2018.0 | | | |-- intel_hpc_platform_version_hpc-cluster-2018.0 | | | | |-- intel_hpc_platform_version | | | | |-- uname | | | |-- basic_internode_connectivity | | | | |-- all_to_all | | | | |-- uname | | |-- intel_hpc_platform_core-intel-runtime-2018.0 | | | |-- intel_hpc_platform_base_core-intel-runtime-2018.0 | | | | |-- intel_hpc_platform_version_core-intel-runtime-2018.0 | | | | | |-- intel_hpc_platform_version | | | | | |-- uname | | | | |-- std_libraries | | | | | |-- libraries | | | | | |-- uname | | | | |-- intel_hpc_platform_libraries_core-intel-runtime-2018.0 | | | | | |-- detect_fort_info | | | | | |-- detect_gcc_info | | | | | |-- detect_gxx_info | | | | | |-- intel_python_version | | | | | |-- ldconfig | | | | | |-- ldlibpath | | | | | |-- mkl_version | | | | | |-- mpi_versions | | | | | |-- tbb_version | | | | | |-- uname | | | | |-- intel_hpc_platform_linux_based_tools_present_core-intel-runtime-2018.0 | | | | | |-- lsb_tools | | | | | |-- uname | | | | |-- intel_hpc_platform_perl_core-intel-runtime-2018.0 | | | | | |-- perl | | | | | |-- uname | | | | |-- intel_hpc_platform_compliance_tcl_version | | | | | |-- tcl | | | | | |-- uname | | | |-- intel_hpc_platform_core-2018.0 | | | | |-- intel_hpc_platform_version_core-2018.0 | | | | | |-- intel_hpc_platform_version | | | | | |-- uname | | | | |-- cpu_intel64 | | | | | |-- cpuid | | | | | |-- cpuinfo | | | | | |-- cpupower | | | | | |-- dmesg | | | | | |-- hwloc_dump_hwdata | | | | | |-- intel_pstate_status | | | | | |-- kernel_tools | | | | | |-- lscpu | | | | | |-- numactl | | | | | |-- uname | | | | |-- intel_hpc_platform_kernel_version_core-2018.0 | | | | | |-- uname | | | | |-- intel_hpc_platform_mount | | | | | |-- home_expected | | | | | |-- mount | | | | | |-- stat_home | | | | | |-- stat_tmp | | | | | |-- uname |-- intel_hpc_platform_high-performance-fabric-2018.0 | |--intel_hpc_platform_base_high-performance-fabric-2018.0 | | |-- intel_hpc_platform_version_high-performance-fabric-2018.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- intel_hpc_platform_libfabric_high-performance-fabric-2018.0 | | | |-- fi_info | | | |-- uname | | |-- intel_hpc_platform_rdma_high-performance-fabric-2018.0 | | | |-- rpm_list | | | |-- uname | | |-- intel_hpc_platform_firmware_high-performance-fabric-2018.0 | | | |-- datconf | | | |-- ethtool | | | |-- ethtool_show_coalesce | | | |-- fw_ver | | | |-- ibstat | | | |-- ibv_devinfo | | | |-- ipaddr | | | |-- lspci | | | |-- ofedinfo | | | |-- opahfirev | | | |-- opatools | | | |-- opasmaquery | | | |-- ulimit | | | |-- uname | | |-- intel_hpc_platform_subnet_management_high-performance-fabric-2018.0 | | | |-- datconf | | | |-- fw_ver | | | |-- ibstat | | | |-- ibv_devinfo | | | |-- lspci | | | |-- ofedinfo | | | |-- opahfirev | | | |-- opatools | | | |-- opasmaquery | | | |-- saquery | | | |-- ulimit | | | |-- uname | |--intel_hpc_platform_core-2018.0 | | |-- intel_hpc_platform_version_core-2018.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- cpu_intel64 | | | |-- cpuid | | | |-- cpuinfo | | | |-- cpupower | | | |-- dmesg | | | |-- hwloc_dump_hwdata | | | |-- intel_pstate_status | | | |-- kernel_tools | | | |-- lscpu | | | |-- numactl | | | |-- uname | | |-- intel_hpc_platform_kernel_version_core-2018.0 | | | |-- uname | | |-- intel_hpc_platform_mount | | | |-- home_expected | | | |-- mount | | | |-- stat_home | | | |-- stat_tmp | | | |-- uname
select_solutions_sim_mod_user_plus_second_gen_xeon_sp
select_solutions_sim_mod_user_plus_second_gen_xeon_sp |-- select_solutions_sim_mod_benchmarks_plus_second_gen_xeon_sp | |--dgemm | |--hpcg_cluster | |--hpcg_single | |--hpl_cluster | |--imb_pingpong | |--stream | |--uname |-- intel_hpc_platform_second-gen-xeon-sp-2019.0 | |-- intel_hpc_platform_libraries_second-gen-xeon-sp-2019.0 | | |-- detect_fort_info | | |-- detect_gcc_info | | |-- detect_gxx_info | | |-- intel_python_version | | |-- ldconfig | | |-- ldlibpath | | |-- mkl_version | | |-- mpi_versions | | |-- rpm_list | | |-- tbb_version | | |-- uname | |-- intel_hpc_platform_version_second-gen-xeon-sp-2019.0 | | |-- intel_hpc_platform_version | | |-- uname | |-- intel_hpc_platform_core-intel-runtime-2018.0 | | |-- intel_hpc_platform_base_core-intel-runtime-2018.0 | | | |-- intel_hpc_platform_version_core-intel-runtime-2018.0 | | | | |-- intel_hpc_platform_version | | | | |-- uname | | | |-- std_libraries | | | | |-- libraries | | | | |-- uname | | | |-- intel_hpc_platform_libraries_core-intel-runtime-2018.0 | | | | |-- detect_fort_info | | | | |-- detect_gcc_info | | | | |-- detect_gxx_info | | | | |-- intel_python_version | | | | |-- ldconfig | | | | |-- ldlibpath | | | | |-- mkl_version | | | | |-- mpi_versions | | | | |-- tbb_version | | | | |-- uname | | | |-- intel_hpc_platform_linux_based_tools_present_core-intel-runtime-2018.0 | | | | |-- lsb_tools | | | | |-- uname | | | |-- intel_hpc_platform_perl_core-intel-runtime-2018.0 | | | | |-- perl | | | | |-- uname | | | |-- intel_hpc_platform_compliance_tcl_version | | | | |-- tcl | | | | |-- uname | | |-- intel_hpc_platform_core-2018.0 | | | |-- intel_hpc_platform_version_core-2018.0 | | | | |-- intel_hpc_platform_version | | | | |-- uname | | | |-- cpu_intel64 | | | | |-- cpuid | | | | |-- cpuinfo | | | | |-- cpupower | | | | |-- dmesg | | | | |-- hwloc_dump_hwdata | | | | |-- intel_pstate_status | | | | |-- kernel_tools | | | | |-- lscpu | | | | |-- numactl | | | | |-- uname | | | |-- intel_hpc_platform_kernel_version_core-2018.0 | | | | |-- uname | | | |-- intel_hpc_platform_mount | | | | |-- home_expected | | | | |-- mount | | | | |-- stat_home | | | | |-- stat_tmp | | | | |-- uname |-- intel_hpc_platform_high-performance-fabric-2018.0 | |--intel_hpc_platform_base_high-performance-fabric-2018.0 | | |-- intel_hpc_platform_version_high-performance-fabric-2018.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- intel_hpc_platform_libfabric_high-performance-fabric-2018.0 | | | |-- fi_info | | | |-- uname | | |-- intel_hpc_platform_rdma_high-performance-fabric-2018.0 | | | |-- rpm_list | | | |-- uname | | |-- intel_hpc_platform_firmware_high-performance-fabric-2018.0 | | | |-- datconf | | | |-- ethtool | | | |-- ethtool_show_coalesce | | | |-- fw_ver | | | |-- ibstat | | | |-- ibv_devinfo | | | |-- ipaddr | | | |-- lspci | | | |-- ofedinfo | | | |-- opahfirev | | | |-- opatools | | | |-- opasmaquery | | | |-- ulimit | | | |-- uname | | |-- intel_hpc_platform_subnet_management_high-performance-fabric-2018.0 | | | |-- datconf | | | |-- fw_ver | | | |-- ibstat | | | |-- ibv_devinfo | | | |-- lspci | | | |-- ofedinfo | | | |-- opahfirev | | | |-- opatools | | | |-- opasmaquery | | | |-- saquery | | | |-- ulimit | | | |-- uname | |--intel_hpc_platform_core-2018.0 | | |-- intel_hpc_platform_version_core-2018.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- cpu_intel64 | | | |-- cpuid | | | |-- cpuinfo | | | |-- cpupower | | | |-- dmesg | | | |-- hwloc_dump_hwdata | | | |-- intel_pstate_status | | | |-- kernel_tools | | | |-- lscpu | | | |-- numactl | | | |-- uname | | |-- intel_hpc_platform_kernel_version_core-2018.0 | | | |-- uname | | |-- intel_hpc_platform_mount | | | |-- home_expected | | | |-- mount | | | |-- stat_home | | | |-- stat_tmp | | | |-- uname |-- intel_hpc_platform_compat-hpc-2018.0 | |--intel_hpc_platform_base_compat-hpc-2018.0 | | |-- intel_hpc_platform_version_compat-hpc-2018.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- intel_hpc_platform_minimum_memory_requirements_compat-hpc-2018.0 | | | |-- cpuid | | | |-- cpuinfo | | | |-- cpupower | | | |-- dmesg | | | |-- hwloc_dump_hwdata | | | |-- kernel_tools | | | |-- lscpu | | | |-- meminfo | | | |-- numactl | | | |-- uname | | |-- intel_hpc_platform_minimum_storage | | | |-- df | | | |-- mount | | | |-- uname | | |-- lsb_libraries | | | |-- libraries | | | |-- uname | |--intel_hpc_platform_hpc-cluster-2018.0 | | |-- intel_hpc_platform_base_hpc-cluster-2018.0 | | | |-- intel_hpc_platform_version_hpc-cluster-2018.0 | | | | |-- intel_hpc_platform_version | | | | |-- uname | | | |-- basic_internode_connectivity | | | | |-- all_to_all | | | | |-- uname | | |-- intel_hpc_platform_core-intel-runtime-2018.0 | | | |-- intel_hpc_platform_base_core-intel-runtime-2018.0 | | | | |-- intel_hpc_platform_version_core-intel-runtime-2018.0 | | | | | |-- intel_hpc_platform_version | | | | | |-- uname | | | | |-- std_libraries | | | | | |-- libraries | | | | | |-- uname | | | | |-- intel_hpc_platform_libraries_core-intel-runtime-2018.0 | | | | | |-- detect_fort_info | | | | | |-- detect_gcc_info | | | | | |-- detect_gxx_info | | | | | |-- intel_python_version | | | | | |-- ldconfig | | | | | |-- ldlibpath | | | | | |-- mkl_version | | | | | |-- mpi_versions | | | | | |-- tbb_version | | | | | |-- uname | | | | |-- intel_hpc_platform_linux_based_tools_present_core-intel-runtime-2018.0 | | | | | |-- lsb_tools | | | | | |-- uname | | | | |-- intel_hpc_platform_perl_core-intel-runtime-2018.0 | | | | | |-- perl | | | | | |-- uname | | | | |-- intel_hpc_platform_compliance_tcl_version | | | | | |-- tcl | | | | | |-- uname | | | |-- intel_hpc_platform_core-2018.0 | | | | |-- intel_hpc_platform_version_core-2018.0 | | | | | |-- intel_hpc_platform_version | | | | | |-- uname | | | | |-- cpu_intel64 | | | | | |-- cpuid | | | | | |-- cpuinfo | | | | | |-- cpupower | | | | | |-- dmesg | | | | | |-- hwloc_dump_hwdata | | | | | |-- intel_pstate_status | | | | | |-- kernel_tools | | | | | |-- lscpu | | | | | |-- numactl | | | | | |-- uname | | | | |-- intel_hpc_platform_kernel_version_core-2018.0 | | | | | |-- uname | | | | |-- intel_hpc_platform_mount | | | | | |-- home_expected | | | | | |-- mount | | | | | |-- stat_home | | | | | |-- stat_tmp | | | | | |-- uname
select_solutions_sim_mod_user_plus_2021.0
select_solutions_sim_mod_user_plus_2021.0 |-- select_solutions_sim_mod_benchmarks_plus_2021.0 | |-- dgemm | |-- hpcg_cluster | |-- hpcg_single | |-- hpl_cluster | |-- imb_uniband | |-- stream | |-- uname |-- intel_hpc_platform_high-performance-fabric-2.0 | |-- intel_hpc_platform_base_high-performance-fabric-2.0 | | |-- intel_hpc_platform_version_high-performance-fabric-2.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- intel_hpc_platform_libfabric_high-performance-fabric-2.0 | | | |-- fi_info | | | |-- uname | | |-- intel_hpc_platform_rdma_high-performance-fabric-2.0 | | | |-- rpm_list | | | |-- uname | | |-- intel_hpc_platform_firmware_high-performance-fabric-2.0 | | | |-- datconf | | | |-- ethtool | | | |-- ethtool_show_coalesce | | | |-- fw_ver | | | |-- ibstat | | | |-- ibv_devinfo | | | |-- ipaddr | | | |-- lspci | | | |-- ofedinfo | | | |-- opahfirev | | | |-- opatools | | | |-- opasmaquery | | | |-- ulimit | | | |-- uname | | |-- intel_hpc_platform_subnet_management_high-performance-fabric-2.0 | | | |-- datconf | | | |-- fw_ver | | | |-- ibstat | | | |-- ibv_devinfo | | | |-- lspci | | | |-- ofedinfo | | | |-- opahfirev | | | |-- opatools | | | |-- opasmaquery | | | |-- saquery | | | |-- ulimit | | | |-- uname | |-- intel_hpc_platform_core-2.0 | | |-- intel_hpc_platform_version_core-2.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- cpu_intel64 | | | |-- cpuid | | | |-- cpuinfo | | | |-- cpupower | | | |-- dmesg | | | |-- hwloc_dump_hwdata | | | |-- intel_pstate_status | | | |-- kernel_tools | | | |-- lscpu | | | |-- numactl | | | |-- uname | | |-- intel_hpc_platform_kernel_version_core-2.0 | | | |-- uname | | |-- intel_hpc_platform_mount | | | |-- home_expected | | | |-- mount | | | |-- stat_home | | | |-- stat_tmp | | | |-- uname |-- intel_hpc_platform_compat-hpc-cluster-2.0 | |-- intel_hpc_platform_base_compat-hpc-cluster-2.0 | | |-- intel_hpc_platform_version_compat-hpc-cluster-2.0 | | | |-- intel_hpc_platform_version | | | |-- uname | | |-- intel_hpc_platform_minimum_memory_requirements_compat-hpc-cluster-2.0 | | | |-- cpuid | | | |-- cpuinfo | | | |-- cpupower | | | |-- dmesg | | | |-- hwloc_dump_hwdata | | | |-- kernel_tools | | | |-- lscpu | | | |-- meminfo | | | |-- numactl | | | |-- uname | | |-- intel_hpc_platform_minimum_storage-2.0 | | | |-- df | | | |-- mount | | | |-- uname | | |-- intel_hpc_platform_lsb_libraries-2.0 | | | |-- libraries | | | |-- uname | |-- intel_hpc_platform_hpc-cluster-2.0 | | |-- intel_hpc_platform_base_hpc-cluster-2.0 | | | |-- intel_hpc_platform_version_hpc-cluster-2.0 | | | | |-- intel_hpc_platform_version | | | | |-- uname | | | |-- basic_internode_connectivity | | | | |-- all_to_all | | | | |-- uname | | |-- intel_hpc_platform_core-intel-runtime-2.0 | | | |-- intel_hpc_platform_base_core-intel-runtime-2.0 | | | | |-- intel_hpc_platform_version_core-intel-runtime-2.0 | | | | | |-- intel_hpc_platform_version | | | | | |-- uname | | | | |-- intel_hpc_platform_std_libraries-2.0 | | | | | |-- libraries | | | | | |-- uname | | | | |-- intel_hpc_platform_libraries_core-intel-runtime-2.0 | | | | | |-- detect_dpcpp_info | | | | | |-- detect_fort_info | | | | | |-- detect_gcc_info | | | | | |-- detect_gxx_info | | | | | |-- detect_lib_info | | | | | |-- intel_python_version | | | | | |-- ldconfig | | | | | |-- ldlibpath | | | | | |-- mkl_version | | | | | |-- mpi_versions | | | | | |-- rpm_list | | | | | |-- uname | | | | |-- intel_hpc_platform_linux_based_tools_present_core-intel-runtime-2.0 | | | | | |-- lsb_tools | | | | | |-- uname | | | | |-- intel_hpc_platform_perl_core-intel-runtime-2.0 | | | | | |-- perl | | | | | |-- uname | | | | |-- intel_hpc_platform_compliance_tcl_version-2.0 | | | | | |-- tcl | | | | | |-- uname | | | |-- intel_hpc_platform_core-2.0 | | | | |-- intel_hpc_platform_version_core-2.0 | | | | | |-- intel_hpc_platform_version | | | | | |-- uname | | | | |-- cpu_intel64 | | | | | |-- cpuid | | | | | |-- cpuinfo | | | | | |-- cpupower | | | | | |-- dmesg | | | | | |-- hwloc_dump_hwdata | | | | | |-- kernel_tools | | | | | |-- lscpu | | | | | |-- meminfo | | | | | |-- numactl | | | | | |-- uname | | | | |-- intel_hpc_platform_kernel_version_core-2.0 | | | | | |-- uname | | | | |-- intel_hpc_platform_mount | | | | | |-- home_expected | | | | | |-- mount | | | | | |-- stat_home | | | | | |-- stat_tmp | | | | | |-- uname