Loading [MathJax]/extensions/tex2jax.js
E.V.E
v2023.02.15
•
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Friends
Modules
Pages
Concepts
Loading...
Searching...
No Matches
◆
countl_zero
eve::countl_zero =
functor
<countl_zero_t>
inline
constexpr
Header file
#include <eve/module/core.hpp>
Callable Signatures
namespace
eve
{
// Regular overload
constexpr
auto
countl_zero
(
unsigned_value
auto
x)
noexcept
;
// 1
// Lanes masking
constexpr
auto
countl_zero
[
conditional_expr
auto
c](
unsigned_value
auto
x)
noexcept
;
// 2
constexpr
auto
countl_zero
[
logical_value
auto
m](
unsigned_value
auto
x)
noexcept
;
// 2
}
eve::conditional_expr
Specifies that a type is a Conditional Expression.
Definition:
conditional.hpp:28
eve::logical_value
The concept logical_value<T> is satisfied if and only if T satisfies eve::value and the element type ...
Definition:
value.hpp:132
eve::unsigned_value
The concept unsigned_value<T> is satisfied if and only if T satisfies eve::value and the element type...
Definition:
value.hpp:84
eve::countl_zero
constexpr auto countl_zero
elementwise_callable` object computing the number of consecutive bits unset in a value starting from ...
Definition:
countl_zero.hpp:72
eve
EVE Main Namespace.
Definition:
abi.hpp:18
Parameters
x
:
argument
.
c
:
Conditional expression
masking the operation.
m
:
Logical value
masking the operation.
Return value
The value of the number of consecutive 0 ("zero") bits in the value of
x
, starting from the most significant bit ("left"), with same type as
x
is returned.
The operation is performed conditionnaly
.
External references
C++ standard reference
Example
// revision 0
#include <eve/module/core.hpp>
#include <iostream>
int
main()
{
eve::wide
wu0{0u, 1u, 2u, 3u, 4u, 5u, 6u, 7u};
std::cout <<
"<- wu0 = "
<< wu0 <<
"\n"
;
std::cout <<
"-> countl_zero(wu0) = "
<<
eve::countl_zero
(wu0) <<
"\n"
;
std::cout <<
"-> countl_zero[ignore_last(2)](wu0) = "
<<
eve::countl_zero
[
eve::ignore_last
(2)](wu0) <<
"\n"
;
std::cout <<
"-> countl_zero[wu0 != 0](wu0) = "
<<
eve::countl_zero
[wu0 != 0](wu0) <<
"\n"
;
}
eve::ignore_last
Conditional expression ignoring the k last lanes from a eve::simd_value.
Definition:
conditional.hpp:307
eve::wide
Wrapper for SIMD registers.
Definition:
wide.hpp:93
eve