Docs.rs
generic-simd-0.1.0
generic-simd 0.1.0
Permalink
Docs.rs crate page
MIT
OR
Apache-2.0
Links
Repository
crates.io
Source
Owners
calebzulawski
Dependencies
generic-simd-macros ^0.1
normal
multiversion ^0.6.1
normal
num-complex ^0.3
normal
optional
Versions
95.68%
of the crate is documented
Platform
armv7-unknown-linux-gnueabihf
i686-unknown-linux-gnu
wasm32-unknown-unknown
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
generic_
simd
0.1.0
Native
Required Associated Types
Width
Implementations on Foreign Types
Complex<f32>
Complex<f32>
Complex<f32>
Complex<f64>
Complex<f64>
Complex<f64>
[T]
f32
f32
f32
f64
f64
f64
Implementors
In generic_
simd::
vector
generic_simd
::
vector
Trait
Native
Copy item path
Source
pub trait Native<Token> { type
Width
:
Width
; }
Expand description
Indicates the widest native vector.
Required Associated Types
§
Source
type
Width
:
Width
Implementations on Foreign Types
§
Source
§
impl
Native
<
Generic
> for
f32
Source
§
type
Width
=
W1
Source
§
impl
Native
<
Generic
> for
f64
Source
§
type
Width
=
W1
Source
§
impl
Native
<
Generic
> for
Complex
<
f32
>
Source
§
type
Width
=
W1
Source
§
impl
Native
<
Generic
> for
Complex
<
f64
>
Source
§
type
Width
=
W1
Source
§
impl
Native
<
Avx
> for
f32
Source
§
type
Width
=
W8
Source
§
impl
Native
<
Avx
> for
f64
Source
§
type
Width
=
W4
Source
§
impl
Native
<
Avx
> for
Complex
<
f32
>
Source
§
type
Width
=
W4
Source
§
impl
Native
<
Avx
> for
Complex
<
f64
>
Source
§
type
Width
=
W2
Source
§
impl
Native
<
Sse
> for
f32
Source
§
type
Width
=
W4
Source
§
impl
Native
<
Sse
> for
f64
Source
§
type
Width
=
W2
Source
§
impl
Native
<
Sse
> for
Complex
<
f32
>
Source
§
type
Width
=
W2
Source
§
impl
Native
<
Sse
> for
Complex
<
f64
>
Source
§
type
Width
=
W1
Source
§
impl<T, Token>
Native
<Token> for
[T]
where T:
Native
<Token>,
Source
§
type
Width
= <T as
Native
<Token>>::
Width
Implementors
§