Skip to content

Commit 8c786f3

Browse files
Merge pull request #397 from taiki-e/imports
Remove redundant imports
2 parents 6491107 + bb4bba5 commit 8c786f3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

crates/core_simd/src/vector.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use crate::simd::{
33
ptr::{SimdConstPtr, SimdMutPtr},
44
LaneCount, Mask, MaskElement, SupportedLaneCount, Swizzle,
55
};
6-
use core::convert::{TryFrom, TryInto};
76

87
/// A SIMD vector with the shape of `[T; N]` but the operations of `T`.
98
///

crates/core_simd/tests/swizzle_dyn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(portable_simd)]
22
use core::{fmt, ops::RangeInclusive};
3-
use test_helpers::{self, biteq, make_runner, prop_assert_biteq};
3+
use test_helpers::{biteq, make_runner, prop_assert_biteq};
44

55
fn swizzle_dyn_scalar_ver<const N: usize>(values: [u8; N], idxs: [u8; N]) -> [u8; N] {
66
let mut array = [0; N];

0 commit comments

Comments
 (0)