Hi,
compilation with options -fopenmp -ffast-math -O1 -msse4
of the test
#pragma omp declare simd notinbranch simdlen(2)
extern double log (double);
int N = 3200;
double b[3200];
double a[3200];
int main (void)
{
int i;
#pragma omp simd
for (i = 0; i < N; i += 1)
{
b[i] = log (a[i])
On Mon, Jun 15, 2015 at 9:06 AM, Andrew Senkevich
wrote:
> Hi,
>
> compilation with options -fopenmp -ffast-math -O1 -msse4
>
> of the test
>
> #pragma omp declare simd notinbranch simdlen(2)
> extern double log (double);
>
> int N = 3200;
> double b[3200];
> double a[3200];
>
> int main (void)
>