E.V.E
v2023.02.15
 
Loading...
Searching...
No Matches

◆ sinpicospi

auto eve::sinpicospi = functor<sinpicospi_t>
inlineconstexpr

Header file

#include <eve/module/math.hpp>

Callable Signatures

namespace eve
{
// Regular overload
constexpr auto sinpicospi(floating_value auto x) noexcept; // 1
// Lanes masking
constexpr auto sinpicospi[conditional_expr auto c](floating_value auto x) noexcept; // 2
constexpr auto sinpicospi[logical_value auto m](floating_value auto x) noexcept; // 2
// Semantic options
constexpr auto sinpicospi[quarter_circle](floating_value auto x) noexcept; // 3
}
Specifies that a type is a Conditional Expression.
Definition conditional.hpp:28
The concept floating_value<T> is satisfied if and only if T satisfies eve::value and the element type...
Definition value.hpp:116
The concept logical_value<T> is satisfied if and only if T satisfies eve::value and the element type ...
Definition value.hpp:132
constexpr auto sinpicospi
elementwise_callable object computing the simultaneous computation of sin an cos from an argument in ...
Definition sinpicospi.hpp:79
EVE Main Namespace.
Definition abi.hpp:18

Parameters

 * `x`: [floating value](@ref eve::floating_value).
 * `c`: [Conditional expression](@ref eve::conditional_expr) masking the operation.
 * `m`: [Logical value](@ref eve::logical_value) masking the operation.

Return value 1 .The computation returns a tuple-like whose elements are sinpi(x) and cospi(x)

  1. The operation is performed conditionnaly.
  2. Assumes that the inputs elements belong to \([-1/4,\1/4]\) and return NaN outside.

Example

// revision 1
#include <eve/module/math.hpp>
#include <iostream>
int main()
{
eve::wide<float> wf = [](auto i, auto c) { return 2.f*(i-c/2);};
std::cout << "<- wf = " << wf << "\n";
std::cout << "-> sinpicospi(wf) = " << eve::sinpicospi(wf) << "\n";
std::cout << "-> sinpicospi[quarter_circle](wf)= " << eve::sinpicospi[eve::quarter_circle](wf) << "\n";
}
Wrapper for SIMD registers.
Definition wide.hpp:70