Skip to content

Commit

Permalink
[ci skip] removed unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
SadiinsoSnowfall committed Jul 7, 2024
1 parent 74b043b commit 4d94ffe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/eve/detail/function/simd/arm/sve/make.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace eve::detail

template<callable_options O, arithmetic_scalar_value T, typename N, typename V0, typename... Vs>
requires sve_abi<abi_t<T, N>> && (N::value > 1)
EVE_FORCEINLINE auto make_(EVE_REQUIRES(sve_), O const&, as<wide<T, N>> tgt, V0 v, Vs... vs) noexcept
EVE_FORCEINLINE auto make_(EVE_REQUIRES(sve_), O const&, as<wide<T, N>>, V0 v, Vs... vs) noexcept
{
if constexpr (sizeof...(Vs) == 0)
{
Expand Down Expand Up @@ -69,7 +69,7 @@ EVE_FORCEINLINE auto make_(EVE_REQUIRES(sve_), O const&, as<wide<T, N>> tgt, V0

template<callable_options O, arithmetic_scalar_value T, typename N, typename V0, typename... Vs>
requires sve_abi<abi_t<T, N>> && (N::value > 1)
EVE_FORCEINLINE auto make_(EVE_REQUIRES(sve_), O const&, as<logical<wide<T, N>>> tgt, V0 v, Vs... vs) noexcept
EVE_FORCEINLINE auto make_(EVE_REQUIRES(sve_), O const&, as<logical<wide<T, N>>>, V0 v, Vs... vs) noexcept
{
if constexpr (sizeof...(Vs) == 0)
{
Expand Down
2 changes: 1 addition & 1 deletion include/eve/detail/function/simd/x86/make.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ namespace eve::detail
//================================================================================================
template<callable_options O, arithmetic_scalar_value T, typename N, typename V0, typename... Vs>
requires x86_abi<abi_t<T, N>>
EVE_FORCEINLINE auto make_(EVE_REQUIRES(sse2_), O const&, as<logical<wide<T, N>>> tgt, V0 v, Vs... vs) noexcept
EVE_FORCEINLINE auto make_(EVE_REQUIRES(sse2_), O const&, as<logical<wide<T, N>>>, V0 v, Vs... vs) noexcept
{
if constexpr( !abi_t<T, N>::is_wide_logical )
{
Expand Down

0 comments on commit 4d94ffe

Please sign in to comment.