diff options
author | Ross Burton <ross.burton@intel.com> | 2018-09-03 11:49:09 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-05 18:00:00 +0100 |
commit | 78af3a3e6865cac8bc9fd881af6158ce5e21d4e5 (patch) | |
tree | 676e61496636e6dd05bf6c6ec7e331a67263c641 | |
parent | c6bc6d874ae43eb2808508b935f837c670c1d15e (diff) | |
download | openembedded-core-78af3a3e6865cac8bc9fd881af6158ce5e21d4e5.tar.gz openembedded-core-78af3a3e6865cac8bc9fd881af6158ce5e21d4e5.tar.bz2 openembedded-core-78af3a3e6865cac8bc9fd881af6158ce5e21d4e5.zip |
python: Run pybench once for optimisation task in pgo
There is no good reason to loop 10 times on the test since the profile
optimisation won't change between runs, we don't need/want a statistical
average. This is just burning cpu cycles, just make 1 run.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3_3.5.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3_3.5.5.bb b/meta/recipes-devtools/python/python3_3.5.5.bb index bfe91fb1c7..8afe15eee6 100644 --- a/meta/recipes-devtools/python/python3_3.5.5.bb +++ b/meta/recipes-devtools/python/python3_3.5.5.bb @@ -74,7 +74,7 @@ TARGET_CC_ARCH += "-DNDEBUG -fno-inline" SDK_CC_ARCH += "-DNDEBUG -fno-inline" EXTRA_OEMAKE += "CROSS_COMPILE=yes" EXTRA_OECONF += "CROSSPYTHONPATH=${STAGING_LIBDIR_NATIVE}/python${PYTHON_MAJMIN}/lib-dynload/ --without-ensurepip --enable-optimizations" -PYTHON3_PROFILE_TASK ?= "${S}/Tools/pybench/pybench.py -n 10" +PYTHON3_PROFILE_TASK ?= "${S}/Tools/pybench/pybench.py -n 1" export CROSS_COMPILE = "${TARGET_PREFIX}" export _PYTHON_PROJECT_BASE = "${B}" |