This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug math/20495] SIMD sincosf implementation lacks VEX encoded version


https://sourceware.org/bugzilla/show_bug.cgi?id=20495

Andrew Senkevich <andrew.n.senkevich at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2016-08-25
     Ever confirmed|0                           |1

--- Comment #5 from Andrew Senkevich <andrew.n.senkevich at gmail dot com> ---
Thanks.

Investigation shows that it is degradation from 2.22 to 2.23 releases.

Simplified testcase is

#include <math.h>

#define NUM 9000*1000

float valsA[NUM];
float a[NUM];

int main(void)
{
    int i;

    for (i = 0; i < NUM; ++i)
    {
        a[i] += sinf(valsA[i]);
    }

    return (int)a[NUM-1];
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]