On Fri, Dec 18, 2015 at 1:11 AM, Kacper Michajlow wrote:
> 18 gru 2015 10:06 AM "Kacper Michajlow" napisał(a):
>>
>> One minor nitpick about commit message. You could mention which compiler
> was used to generate code for benchmark. For example Clang 3.7 replaces
> pow(2,...) with exp2(...) call
18 gru 2015 10:06 AM "Kacper Michajlow" napisał(a):
>
> One minor nitpick about commit message. You could mention which compiler
was used to generate code for benchmark. For example Clang 3.7 replaces
pow(2,...) with exp2(...) call by itself. So you probably did use gcc.
Anyway since it is already
One minor nitpick about commit message. You could mention which compiler
was used to generate code for benchmark. For example Clang 3.7 replaces
pow(2,...) with exp2(...) call by itself. So you probably did use gcc.
Anyway since it is already merged I guess take my reply as a hint for next
time :)
On Tue, Dec 15, 2015 at 6:40 PM, Ganesh Ajjanagadde wrote:
> On Tue, Dec 15, 2015 at 5:25 PM, Ganesh Ajjanagadde wrote:
>> On Tue, Dec 15, 2015 at 2:23 AM, Michael Niedermayer
>> wrote:
>>> On Wed, Dec 09, 2015 at 06:55:25PM -0500, Ganesh Ajjanagadde wrote:
> [...]
diff --git a/libavc
On Tue, Dec 15, 2015 at 5:25 PM, Ganesh Ajjanagadde wrote:
> On Tue, Dec 15, 2015 at 2:23 AM, Michael Niedermayer wrote:
>> On Wed, Dec 09, 2015 at 06:55:25PM -0500, Ganesh Ajjanagadde wrote:
[...]
>>>
>>> diff --git a/libavcodec/nellymoserenc.c b/libavcodec/nellymoserenc.c
>>> index d998dba..e60
On Tue, Dec 15, 2015 at 2:23 AM, Michael Niedermayer wrote:
> On Wed, Dec 09, 2015 at 06:55:25PM -0500, Ganesh Ajjanagadde wrote:
>> exp2 suffices here. Some trivial (~ 4x) speedup is done in addition here by
>> reusing results.
>>
>
>> This is bit-identical to the old values.
>
> That may be true
On Wed, Dec 09, 2015 at 06:55:25PM -0500, Ganesh Ajjanagadde wrote:
> exp2 suffices here. Some trivial (~ 4x) speedup is done in addition here by
> reusing results.
>
> This is bit-identical to the old values.
That may be true with a specific compiler and version but
C makes no such guarantee un
On Wed, Dec 9, 2015 at 6:55 PM, Ganesh Ajjanagadde
wrote:
> exp2 suffices here. Some trivial (~ 4x) speedup is done in addition here by
> reusing results.
>
> This is bit-identical to the old values.
>
> Signed-off-by: Ganesh Ajjanagadde
> ---
> libavcodec/nellymoserenc.c | 11 +--
> 1 f