-
Notifications
You must be signed in to change notification settings - Fork 8
Support for sincos ? #41
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Description
Activity
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requesthelp wantedExtra attention is neededExtra attention is needed
Hi,
I know it is not standard in C/C++, but popular stdlibs (e.g. gnu, SYCL, CUDA, etc.) provide an efficient implementation to calculate the
sinandcosfor an argument at the same time:sincos(arg)andsincospi(arg).Would it be sensible to have support for
sincos(arg)math invir-simd, too? I checked the code and I think when it refers tosincosit meanssinandcosfunctions separately, did I understand that right?At the same time, I read reports like this and wonder what you think about vectorized versions of
sincos?