[PHP-DEV] GOOD Benchmark Results for PHP Master 2017-04-02

2017-04-03 Thread lp_benchmark_robot
Results for project PHP master, build date 2017-04-02 20:28:56-07:00 commit: 19a692b previous commit:e0f68ae revision date: 2017-04-02 13:45:08+02:00 environment:Haswell-EP cpu:Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz 2x18 cores, stepping 2, LLC 45 MB

Re: [PHP-DEV] SHA3 is very slow

2017-04-03 Thread Lauri Kenttä
On 2017-04-03 14:44, Christian Schneider wrote: Am 01.04.2017 um 05:12 schrieb Yasuo Ohgaki : I noticed that our SHA-3 is inefficient. === Ruby SHA3-256 === [yohgaki@dev ~]$ cat t2.rb #!/usr/bin/env ruby require 'digest/sha2' $i = 100 until $i do

Re: [PHP-DEV] Directory separators on Windows

2017-04-03 Thread Fleshgrinder
On 4/2/2017 8:28 PM, Rowan Collins wrote: > On 02/04/2017 09:09, Fleshgrinder wrote: >> Your strategy works in these examples, but the example I gave was >> different. Imagine that we have `/a/b/../c` which we would normalize to >> `/a/c`. However, the `b` component is actually a symbolic link to

Re: [PHP-DEV] SHA3 is very slow

2017-04-03 Thread Christian Schneider
Am 01.04.2017 um 05:12 schrieb Yasuo Ohgaki : > I noticed that our SHA-3 is inefficient. > > === Ruby SHA3-256 === > [yohgaki@dev ~]$ cat t2.rb > #!/usr/bin/env ruby > > require 'digest/sha2' > > $i = 100 > until $i do > Digest::SHA3.hexdigest("abcdedf", 256) >