Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions lib/simd/powi.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::ops::MulAssign;
use std::simd::{LaneCount, SimdElement, SupportedLaneCount, prelude::*};
use std::simd::{SimdElement, prelude::*};

/// Trait for [`Simd<_, _>` ] types that implement `powi`.
pub trait Powi {
Expand All @@ -10,7 +10,6 @@ pub trait Powi {
impl<T, const N: usize> Powi for Simd<T, N>
where
T: SimdElement + From<i8>,
LaneCount<N>: SupportedLaneCount,
Self: MulAssign,
{
#[inline(always)]
Expand Down