Skip to content

Commit

Permalink
revert riscv test
Browse files Browse the repository at this point in the history
  • Loading branch information
SadiinsoSnowfall committed Sep 15, 2024
1 parent 30e375c commit af4d016
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
namespace eve::detail
{
template<callable_options O, typename T, typename U, typename N>
EVE_FORCEINLINE logical<wide<T, N>> logical_and_(EVE_REQUIRES(cpu_), O const&, logical<wide<T, N>> v, logical<wide<U, N>> w) noexcept
// requires(rvv_abi<abi_t<T, N>> || rvv_abi<abi_t<U, N>>)
EVE_FORCEINLINE logical<wide<T, N>> logical_and_(EVE_REQUIRES(rvv_), O const&, logical<wide<T, N>> v, logical<wide<U, N>> w) noexcept
requires(rvv_abi<abi_t<T, N>> || rvv_abi<abi_t<U, N>>)
{
return __riscv_vmand(v, bit_cast(w, as<logical<wide<T, N>>>{}), N::value);
}
Expand Down

0 comments on commit af4d016

Please sign in to comment.