Skip to content

Commit

Permalink
Merge pull request #2980 from yosefe/topic/ucx-info-fix-cpu-aarch64
Browse files Browse the repository at this point in the history
TOOLS/INFO: Fix CPU model info for aarch64
  • Loading branch information
yosefe authored Oct 25, 2018
2 parents 52ff23b + 9235462 commit fee17d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/test_jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ build_release_pkg() {
$MAKE distcheck

# Show UCX info
./src/tools/info/ucx_info -f -c -v -y -d -b -p -w -e -uart
./src/tools/info/ucx_info -s -f -c -v -y -d -b -p -w -e -uart

if [ -f /etc/redhat-release -o -f /etc/fedora-release ]; then
rpm_based=yes
Expand Down
3 changes: 2 additions & 1 deletion src/tools/info/sys_info.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ static const char* cpu_model_names[] = {
[UCS_CPU_MODEL_INTEL_WESTMERE] = "Westmere",
[UCS_CPU_MODEL_INTEL_HASWELL] = "Haswell",
[UCS_CPU_MODEL_INTEL_BROADWELL] = "Broadwell",
[UCS_CPU_MODEL_INTEL_SKYLAKE] = "Skylake"
[UCS_CPU_MODEL_INTEL_SKYLAKE] = "Skylake",
[UCS_CPU_MODEL_ARM_AARCH64] = "ARM 64-bit"
};

static double measure_memcpy_bandwidth(size_t size)
Expand Down

0 comments on commit fee17d5

Please sign in to comment.