This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC 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]

Re: Can I use -Ofast without libmvec


On March 22, 2018 7:48:33 PM GMT+01:00, Steve Ellcey <sellcey@cavium.com> wrote:
>On Thu, 2018-03-22 at 11:42 -0700, H.J. Lu wrote:
>> On Thu, Mar 22, 2018 at 11:08 AM, Steve Ellcey <sellcey@cavium.com>
>> wrote:
>> > 
>> > I have a question about the math vector library routines in
>> > libmvec.
>> > If I compile a program on x86 with -Ofast, something like:
>> > 
>> > void foo(double * __restrict x, double * __restrict y, double *
>> > __restrict z)
>> > {
>> >         for (int i = 0; i < 1000; i++) x[i] = sin(y[i]);
>> > }
>> > 
>> > I get a call to the vector sin routine _ZGVbN2v_sin.  That is fine,
>but
>> > is there some way to compile with -Ofast and not use the libmvec
>vector
>> > routines?  I have tried -fopenmp, -fopenmp-simd, -fno-openmp, and
>-fno-
>> > openmp-simd and I always get a call to _ZGVbN2v_sin.  Is there
>anyway
>> > to stop the use of the vectorized calls (without turning off
>-Ofast)?
>> Have you tried -lm?
>
>It isn't a question of not working.  Everything works and links and
>runs, but I would just like to know if there is any way to compile my
>program in such a way that GCC does not generate calls to the libmvect
>routines.
>
>I am doing some performance analysis and would like to know how much
>(or little) having these vectorized routines help in various
>benchmarks.

Not from the GCC side I think. Maybe look into the glibc headers if there's some macro tricks you can pull off. 

Richard. 

>Steve Ellcey


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