Hi,
I released performance 0.6.0:
http://pyperformance.readthedocs.io/
This releaes uses the just released perf 1.4 which fix parse_cpu_list() for the Linux setup of Xiang Zhang :-)
https://github.com/python/performance/issues/29
As any performance release, results produced by performance 0.6.0 are incompatible with results produced by an older version. But in this release, it's even more important because of a "fix" in bm_logging.py benchmark: Logger.warning() is now used instead of Logger.warn(), but warning() is faster!
Changes:
Change warn
to warning
in bm_logging.py
. In Python 3, Logger.warn()
calls warnings.warn() to log a deprecation warning, so is slower than
Logger.warning().
Add again the logging_silent
microbenchmark suite.
compile command: update the Git repository before getting the revision
Update requirements
Victor