!452 x86: use total l3cache for non_temporal_threshold
From: @liqingqing_1229 Reviewed-by: @yang_yanchao Signed-off-by: @yang_yanchao
This commit is contained in:
commit
a1598a26b7
@ -65,7 +65,7 @@
|
||||
##############################################################################
|
||||
Name: glibc
|
||||
Version: 2.35
|
||||
Release: 11
|
||||
Release: 12
|
||||
Summary: The GNU libc libraries
|
||||
License: %{all_license}
|
||||
URL: http://www.gnu.org/software/glibc/
|
||||
@ -98,6 +98,7 @@ Patch0: glibc-1070416.patch
|
||||
#Patch9010: 0009-add-unwind-with-longjmp.patch
|
||||
Patch9011: use-region-to-instead-of-country-for-extract-timezon.patch
|
||||
Patch9012: malloc-use-__get_nprocs-replace-__get_nprocs_sched.patch
|
||||
Patch9013: x86-use-total-l3cache-for-non_temporal_threshold.patch
|
||||
|
||||
Provides: ldconfig rtld(GNU_HASH) bundled(gnulib)
|
||||
|
||||
@ -1246,6 +1247,9 @@ fi
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Mon Jun 27 2022 Qingqing Li <liqingqing3@huawei.com> - 2.35-12
|
||||
- x86: use total l3cache size for non_temporal_threshold
|
||||
|
||||
* Tue Jun 14 2022 Yang Yanchao <yangyanchao6@huawei.com> - 2.35-11
|
||||
- Use Lua to compile the installation scripts of glibc-common and glibc-locale-archive.
|
||||
|
||||
|
||||
74
x86-use-total-l3cache-for-non_temporal_threshold.patch
Normal file
74
x86-use-total-l3cache-for-non_temporal_threshold.patch
Normal file
@ -0,0 +1,74 @@
|
||||
From af0606f5d626b92d6e59da3a797548e9daab5580 Mon Sep 17 00:00:00 2001
|
||||
From: Qingqing Li <liqingqing3@huawei.com>
|
||||
Date: Sat, 25 Jun 2022 15:36:44 +0800
|
||||
Subject: [PATCH] x86: use total l3cache for non_temporal_threshold
|
||||
|
||||
Below glibc upstream patch modified the default behavoir for large size of memcpy,
|
||||
such as 1M~10M. revert it and use GLIBC_TUNABLES="glibc.cpu.x86_non_temporal_threshold=xxx"
|
||||
to tune the application when needed.
|
||||
|
||||
d3c57027470b78dba79c6d931e4e409b1fecfc80
|
||||
Author: Patrick McGehearty <patrick.mcgehearty@oracle.com>
|
||||
Date: Mon Sep 28 20:11:28 2020 +0000
|
||||
|
||||
Reversing calculation of __x86_shared_non_temporal_threshold
|
||||
|
||||
The __x86_shared_non_temporal_threshold determines when memcpy on x86
|
||||
uses non_temporal stores to avoid pushing other data out of the last
|
||||
level cache.
|
||||
uses non_temporal stores to avoid pushing other data out of the last
|
||||
level cache.
|
||||
|
||||
This patch proposes to revert the calculation change made by H.J. Lu's
|
||||
patch of June 2, 2017.
|
||||
|
||||
H.J. Lu's patch selected a threshold suitable for a single thread
|
||||
getting maximum performance. It was tuned using the single threaded
|
||||
large memcpy micro benchmark on an 8 core processor. The last change
|
||||
changes the threshold from using 3/4 of one thread's share of the
|
||||
cache to using 3/4 of the entire cache of a multi-threaded system
|
||||
before switching to non-temporal stores. Multi-threaded systems with
|
||||
more than a few threads are server-class and typically have many
|
||||
active threads. If one thread consumes 3/4 of the available cache for
|
||||
all threads, it will cause other active threads to have data removed
|
||||
from the cache. Two examples show the range of the effect. John
|
||||
McCalpin's widely parallel Stream benchmark, which runs in parallel
|
||||
and fetches data sequentially, saw a 20% slowdown with this patch on
|
||||
an internal system test of 128 threads. This regression was discovered
|
||||
when comparing OL8 performance to OL7. An example that compares
|
||||
normal stores to non-temporal stores may be found at
|
||||
https://vgatherps.github.io/2018-09-02-nontemporal/. A simple test
|
||||
shows performance loss of 400 to 500% due to a failure to use
|
||||
nontemporal stores. These performance losses are most likely to occur
|
||||
when the system load is heaviest and good performance is critical.
|
||||
|
||||
The tunable x86_non_temporal_threshold can be used to override the
|
||||
default for the knowledgable user who really wants maximum cache
|
||||
allocation to a single thread in a multi-threaded system.
|
||||
The manual entry for the tunable has been expanded to provide
|
||||
more information about its purpose.
|
||||
|
||||
modified: sysdeps/x86/cacheinfo.c
|
||||
modified: manual/tunables.texi
|
||||
---
|
||||
sysdeps/x86/dl-cacheinfo.h | 4 ++++++
|
||||
1 file changed, 4 insertions(+)
|
||||
|
||||
diff --git a/sysdeps/x86/dl-cacheinfo.h b/sysdeps/x86/dl-cacheinfo.h
|
||||
index e6c94dfd..c5e8deb3 100644
|
||||
--- a/sysdeps/x86/dl-cacheinfo.h
|
||||
+++ b/sysdeps/x86/dl-cacheinfo.h
|
||||
@@ -926,6 +926,10 @@ dl_init_cacheinfo (struct cpu_features *cpu_features)
|
||||
if (tunable_size != 0)
|
||||
shared = tunable_size;
|
||||
|
||||
+ /* keep x86 to use the same non_temporal_threshold like glibc2.28 */
|
||||
+ if (threads != 0)
|
||||
+ non_temporal_threshold *= threads;
|
||||
+
|
||||
tunable_size = TUNABLE_GET (x86_non_temporal_threshold, long int, NULL);
|
||||
/* NB: Ignore the default value 0. */
|
||||
if (tunable_size != 0)
|
||||
--
|
||||
2.30.0
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user