![]() |
Blaze 3.9
|
Header file for the SIMD multiplication reduction functionality. More...
#include <blaze/math/Aliases.h>
#include <blaze/math/simd/BasicTypes.h>
#include <blaze/system/Inline.h>
#include <blaze/system/Vectorization.h>
Go to the source code of this file.
Functions | |
template<typename T > | |
BLAZE_ALWAYS_INLINE ValueType_t< T > | blaze::prod (const SIMDi8< T > &a) noexcept |
Returns the product of all elements in the 8-bit integral SIMD vector. More... | |
template<typename T > | |
BLAZE_ALWAYS_INLINE const ValueType_t< T > | blaze::prod (const SIMDci8< T > &a) noexcept |
Returns the product of all elements in the 8-bit integral complex SIMD vector. More... | |
template<typename T > | |
BLAZE_ALWAYS_INLINE ValueType_t< T > | blaze::prod (const SIMDi16< T > &a) noexcept |
Returns the product of all elements in the 16-bit integral SIMD vector. More... | |
template<typename T > | |
BLAZE_ALWAYS_INLINE const ValueType_t< T > | blaze::prod (const SIMDci16< T > &a) noexcept |
Returns the product of all elements in the 16-bit integral complex SIMD vector. More... | |
template<typename T > | |
BLAZE_ALWAYS_INLINE ValueType_t< T > | blaze::prod (const SIMDi32< T > &a) noexcept |
Returns the product of all elements in the 32-bit integral SIMD vector. More... | |
template<typename T > | |
BLAZE_ALWAYS_INLINE const ValueType_t< T > | blaze::prod (const SIMDci32< T > &a) noexcept |
Returns the product of all elements in the 32-bit integral complex SIMD vector. More... | |
template<typename T > | |
BLAZE_ALWAYS_INLINE ValueType_t< T > | blaze::prod (const SIMDi64< T > &a) noexcept |
Returns the product of all elements in the 64-bit integral SIMD vector. More... | |
template<typename T > | |
BLAZE_ALWAYS_INLINE const ValueType_t< T > | blaze::prod (const SIMDci64< T > &a) noexcept |
Returns the product of all elements in the 64-bit integral complex SIMD vector. More... | |
BLAZE_ALWAYS_INLINE float | blaze::prod (const SIMDfloat &a) noexcept |
Returns the product of all elements in the single precision floating point SIMD vector. More... | |
BLAZE_ALWAYS_INLINE const complex< float > | blaze::prod (const SIMDcfloat &a) noexcept |
Returns the product of all elements in the single precision complex SIMD vector. More... | |
BLAZE_ALWAYS_INLINE double | blaze::prod (const SIMDdouble &a) noexcept |
Returns the product of all elements in the double precision floating point SIMD vector. More... | |
BLAZE_ALWAYS_INLINE const complex< double > | blaze::prod (const SIMDcdouble &a) noexcept |
Returns the product of all elements in the double precision complex SIMD vector. More... | |
Header file for the SIMD multiplication reduction functionality.
Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved
This file is part of the Blaze library. You can redistribute it and/or modify it under the terms of the New (Revised) BSD License. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.