Struct f16

Source
pub struct f16(/* private fields */);
Expand description

A 16-bit floating point type implementing the IEEE 754-2008 standard binary16 a.k.a “half” format.

This 16-bit floating point type is intended for efficient storage where the full range and precision of a larger floating point value is not required.

Implementations§

Source§

impl f16

Source

pub const DIGITS: u32 = 3u32

Approximate number of f16 significant digits in base 10

Source

pub const EPSILON: f16

f16 machine epsilon value

This is the difference between 1.0 and the next largest representable number.

Source

pub const INFINITY: f16

f16 positive Infinity (+∞)

Source

pub const MANTISSA_DIGITS: u32 = 11u32

Number of f16 significant digits in base 2

Source

pub const MAX: f16

Largest finite f16 value

Source

pub const MAX_10_EXP: i32 = 4i32

Maximum possible f16 power of 10 exponent

Source

pub const MAX_EXP: i32 = 16i32

Maximum possible f16 power of 2 exponent

Source

pub const MIN: f16

Smallest finite f16 value

Source

pub const MIN_10_EXP: i32 = -4i32

Minimum possible normal f16 power of 10 exponent

Source

pub const MIN_EXP: i32 = -13i32

One greater than the minimum possible normal f16 power of 2 exponent

Source

pub const MIN_POSITIVE: f16

Smallest positive normal f16 value

Source

pub const NAN: f16

f16 Not a Number (NaN)

Source

pub const NEG_INFINITY: f16

f16 negative infinity (-∞)

Source

pub const RADIX: u32 = 2u32

The radix or base of the internal representation of f16

Source

pub const MIN_POSITIVE_SUBNORMAL: f16

Minimum positive subnormal f16 value

Source

pub const MAX_SUBNORMAL: f16

Maximum subnormal f16 value

Source

pub const ONE: f16

f16 1

Source

pub const ZERO: f16

f16 0

Source

pub const NEG_ZERO: f16

f16 -0

Source

pub const NEG_ONE: f16

f16 -1

Source

pub const E: f16

f16 Euler’s number (ℯ)

Source

pub const PI: f16

f16 Archimedes’ constant (π)

Source

pub const FRAC_1_PI: f16

f16 1/π

Source

pub const FRAC_1_SQRT_2: f16

f16 1/√2

Source

pub const FRAC_2_PI: f16

f16 2/π

Source

pub const FRAC_2_SQRT_PI: f16

f16 2/√π

Source

pub const FRAC_PI_2: f16

f16 π/2

Source

pub const FRAC_PI_3: f16

f16 π/3

Source

pub const FRAC_PI_4: f16

f16 π/4

Source

pub const FRAC_PI_6: f16

f16 π/6

Source

pub const FRAC_PI_8: f16

f16 π/8

Source

pub const LN_10: f16

f16 𝗅𝗇 10

Source

pub const LN_2: f16

f16 𝗅𝗇 2

Source

pub const LOG10_E: f16

f16 𝗅𝗈𝗀₁₀ℯ

Source

pub const LOG10_2: f16

f16 𝗅𝗈𝗀₁₀2

Source

pub const LOG2_E: f16

f16 𝗅𝗈𝗀₂ℯ

Source

pub const LOG2_10: f16

f16 𝗅𝗈𝗀₂10

Source

pub const SQRT_2: f16

f16 √2

Source

pub const fn from_bits(bits: u16) -> f16

Constructs a 16-bit floating point value from the raw bits.

Source

pub fn from_f32(value: f32) -> f16

Constructs a 16-bit floating point value from a 32-bit floating point value.

This operation is lossy. If the 32-bit value is to large to fit in 16-bits, ±∞ will result. NaN values are preserved. 32-bit subnormal values are too tiny to be represented in 16-bits and result in ±0. Exponents that underflow the minimum 16-bit exponent will result in 16-bit subnormals or ±0. All other values are truncated and rounded to the nearest representable 16-bit value.

Source

pub const fn from_f32_const(value: f32) -> f16

Constructs a 16-bit floating point value from a 32-bit floating point value.

This function is identical to from_f32 except it never uses hardware intrinsics, which allows it to be const. from_f32 should be preferred in any non-const context.

This operation is lossy. If the 32-bit value is to large to fit in 16-bits, ±∞ will result. NaN values are preserved. 32-bit subnormal values are too tiny to be represented in 16-bits and result in ±0. Exponents that underflow the minimum 16-bit exponent will result in 16-bit subnormals or ±0. All other values are truncated and rounded to the nearest representable 16-bit value.

Source

pub fn from_f64(value: f64) -> f16

Constructs a 16-bit floating point value from a 64-bit floating point value.

This operation is lossy. If the 64-bit value is to large to fit in 16-bits, ±∞ will result. NaN values are preserved. 64-bit subnormal values are too tiny to be represented in 16-bits and result in ±0. Exponents that underflow the minimum 16-bit exponent will result in 16-bit subnormals or ±0. All other values are truncated and rounded to the nearest representable 16-bit value.

Source

pub const fn from_f64_const(value: f64) -> f16

Constructs a 16-bit floating point value from a 64-bit floating point value.

This function is identical to from_f64 except it never uses hardware intrinsics, which allows it to be const. from_f64 should be preferred in any non-const context.

This operation is lossy. If the 64-bit value is to large to fit in 16-bits, ±∞ will result. NaN values are preserved. 64-bit subnormal values are too tiny to be represented in 16-bits and result in ±0. Exponents that underflow the minimum 16-bit exponent will result in 16-bit subnormals or ±0. All other values are truncated and rounded to the nearest representable 16-bit value.

Source

pub const fn to_bits(self) -> u16

Converts a f16 into the underlying bit representation.

Source

pub const fn to_le_bytes(self) -> [u8; 2]

Returns the memory representation of the underlying bit representation as a byte array in little-endian byte order.

§Examples
let bytes = f16::from_f32(12.5).to_le_bytes();
assert_eq!(bytes, [0x40, 0x4A]);
Source

pub const fn to_be_bytes(self) -> [u8; 2]

Returns the memory representation of the underlying bit representation as a byte array in big-endian (network) byte order.

§Examples
let bytes = f16::from_f32(12.5).to_be_bytes();
assert_eq!(bytes, [0x4A, 0x40]);
Source

pub const fn to_ne_bytes(self) -> [u8; 2]

Returns the memory representation of the underlying bit representation as a byte array in native byte order.

As the target platform’s native endianness is used, portable code should use to_be_bytes or to_le_bytes, as appropriate, instead.

§Examples
let bytes = f16::from_f32(12.5).to_ne_bytes();
assert_eq!(bytes, if cfg!(target_endian = "big") {
    [0x4A, 0x40]
} else {
    [0x40, 0x4A]
});
Source

pub const fn from_le_bytes(bytes: [u8; 2]) -> f16

Creates a floating point value from its representation as a byte array in little endian.

§Examples
let value = f16::from_le_bytes([0x40, 0x4A]);
assert_eq!(value, f16::from_f32(12.5));
Source

pub const fn from_be_bytes(bytes: [u8; 2]) -> f16

Creates a floating point value from its representation as a byte array in big endian.

§Examples
let value = f16::from_be_bytes([0x4A, 0x40]);
assert_eq!(value, f16::from_f32(12.5));
Source

pub const fn from_ne_bytes(bytes: [u8; 2]) -> f16

Creates a floating point value from its representation as a byte array in native endian.

As the target platform’s native endianness is used, portable code likely wants to use from_be_bytes or from_le_bytes, as appropriate instead.

§Examples
let value = f16::from_ne_bytes(if cfg!(target_endian = "big") {
    [0x4A, 0x40]
} else {
    [0x40, 0x4A]
});
assert_eq!(value, f16::from_f32(12.5));
Source

pub fn to_f32(self) -> f32

Converts a f16 value into a f32 value.

This conversion is lossless as all 16-bit floating point values can be represented exactly in 32-bit floating point.

Source

pub const fn to_f32_const(self) -> f32

Converts a f16 value into a f32 value.

This function is identical to to_f32 except it never uses hardware intrinsics, which allows it to be const. to_f32 should be preferred in any non-const context.

This conversion is lossless as all 16-bit floating point values can be represented exactly in 32-bit floating point.

Source

pub fn to_f64(self) -> f64

Converts a f16 value into a f64 value.

This conversion is lossless as all 16-bit floating point values can be represented exactly in 64-bit floating point.

Source

pub const fn to_f64_const(self) -> f64

Converts a f16 value into a f64 value.

This function is identical to to_f64 except it never uses hardware intrinsics, which allows it to be const. to_f64 should be preferred in any non-const context.

This conversion is lossless as all 16-bit floating point values can be represented exactly in 64-bit floating point.

Source

pub const fn is_nan(self) -> bool

Returns true if this value is NaN and false otherwise.

§Examples

let nan = f16::NAN;
let f = f16::from_f32(7.0_f32);

assert!(nan.is_nan());
assert!(!f.is_nan());
Source

pub const fn is_infinite(self) -> bool

Returns true if this value is ±∞ and false. otherwise.

§Examples

let f = f16::from_f32(7.0f32);
let inf = f16::INFINITY;
let neg_inf = f16::NEG_INFINITY;
let nan = f16::NAN;

assert!(!f.is_infinite());
assert!(!nan.is_infinite());

assert!(inf.is_infinite());
assert!(neg_inf.is_infinite());
Source

pub const fn is_finite(self) -> bool

Returns true if this number is neither infinite nor NaN.

§Examples

let f = f16::from_f32(7.0f32);
let inf = f16::INFINITY;
let neg_inf = f16::NEG_INFINITY;
let nan = f16::NAN;

assert!(f.is_finite());

assert!(!nan.is_finite());
assert!(!inf.is_finite());
assert!(!neg_inf.is_finite());
Source

pub const fn is_normal(self) -> bool

Returns true if the number is neither zero, infinite, subnormal, or NaN.

§Examples

let min = f16::MIN_POSITIVE;
let max = f16::MAX;
let lower_than_min = f16::from_f32(1.0e-10_f32);
let zero = f16::from_f32(0.0_f32);

assert!(min.is_normal());
assert!(max.is_normal());

assert!(!zero.is_normal());
assert!(!f16::NAN.is_normal());
assert!(!f16::INFINITY.is_normal());
// Values between `0` and `min` are Subnormal.
assert!(!lower_than_min.is_normal());
Source

pub const fn classify(self) -> FpCategory

Returns the floating point category of the number.

If only one property is going to be tested, it is generally faster to use the specific predicate instead.

§Examples
use std::num::FpCategory;

let num = f16::from_f32(12.4_f32);
let inf = f16::INFINITY;

assert_eq!(num.classify(), FpCategory::Normal);
assert_eq!(inf.classify(), FpCategory::Infinite);
Source

pub const fn signum(self) -> f16

Returns a number that represents the sign of self.

  • 1.0 if the number is positive, +0.0 or INFINITY
  • -1.0 if the number is negative, -0.0 or NEG_INFINITY
  • NAN if the number is NaN
§Examples

let f = f16::from_f32(3.5_f32);

assert_eq!(f.signum(), f16::from_f32(1.0));
assert_eq!(f16::NEG_INFINITY.signum(), f16::from_f32(-1.0));

assert!(f16::NAN.signum().is_nan());
Source

pub const fn is_sign_positive(self) -> bool

Returns true if and only if self has a positive sign, including +0.0, NaNs with a positive sign bit and +∞.

§Examples

let nan = f16::NAN;
let f = f16::from_f32(7.0_f32);
let g = f16::from_f32(-7.0_f32);

assert!(f.is_sign_positive());
assert!(!g.is_sign_positive());
// `NaN` can be either positive or negative
assert!(nan.is_sign_positive() != nan.is_sign_negative());
Source

pub const fn is_sign_negative(self) -> bool

Returns true if and only if self has a negative sign, including -0.0, NaNs with a negative sign bit and −∞.

§Examples

let nan = f16::NAN;
let f = f16::from_f32(7.0f32);
let g = f16::from_f32(-7.0f32);

assert!(!f.is_sign_negative());
assert!(g.is_sign_negative());
// `NaN` can be either positive or negative
assert!(nan.is_sign_positive() != nan.is_sign_negative());
Source

pub const fn copysign(self, sign: f16) -> f16

Returns a number composed of the magnitude of self and the sign of sign.

Equal to self if the sign of self and sign are the same, otherwise equal to -self. If self is NaN, then NaN with the sign of sign is returned.

§Examples
let f = f16::from_f32(3.5);

assert_eq!(f.copysign(f16::from_f32(0.42)), f16::from_f32(3.5));
assert_eq!(f.copysign(f16::from_f32(-0.42)), f16::from_f32(-3.5));
assert_eq!((-f).copysign(f16::from_f32(0.42)), f16::from_f32(3.5));
assert_eq!((-f).copysign(f16::from_f32(-0.42)), f16::from_f32(-3.5));

assert!(f16::NAN.copysign(f16::from_f32(1.0)).is_nan());
Source

pub fn max(self, other: f16) -> f16

Returns the maximum of the two numbers.

If one of the arguments is NaN, then the other argument is returned.

§Examples
let x = f16::from_f32(1.0);
let y = f16::from_f32(2.0);

assert_eq!(x.max(y), y);
Source

pub fn min(self, other: f16) -> f16

Returns the minimum of the two numbers.

If one of the arguments is NaN, then the other argument is returned.

§Examples
let x = f16::from_f32(1.0);
let y = f16::from_f32(2.0);

assert_eq!(x.min(y), x);
Source

pub fn clamp(self, min: f16, max: f16) -> f16

Restrict a value to a certain interval unless it is NaN.

Returns max if self is greater than max, and min if self is less than min. Otherwise this returns self.

Note that this function returns NaN if the initial value was NaN as well.

§Panics

Panics if min > max, min is NaN, or max is NaN.

§Examples
assert!(f16::from_f32(-3.0).clamp(f16::from_f32(-2.0), f16::from_f32(1.0)) == f16::from_f32(-2.0));
assert!(f16::from_f32(0.0).clamp(f16::from_f32(-2.0), f16::from_f32(1.0)) == f16::from_f32(0.0));
assert!(f16::from_f32(2.0).clamp(f16::from_f32(-2.0), f16::from_f32(1.0)) == f16::from_f32(1.0));
assert!(f16::NAN.clamp(f16::from_f32(-2.0), f16::from_f32(1.0)).is_nan());
Source

pub fn total_cmp(&self, other: &f16) -> Ordering

Returns the ordering between self and other.

Unlike the standard partial comparison between floating point numbers, this comparison always produces an ordering in accordance to the totalOrder predicate as defined in the IEEE 754 (2008 revision) floating point standard. The values are ordered in the following sequence:

  • negative quiet NaN
  • negative signaling NaN
  • negative infinity
  • negative numbers
  • negative subnormal numbers
  • negative zero
  • positive zero
  • positive subnormal numbers
  • positive numbers
  • positive infinity
  • positive signaling NaN
  • positive quiet NaN.

The ordering established by this function does not always agree with the PartialOrd and PartialEq implementations of f16. For example, they consider negative and positive zero equal, while total_cmp doesn’t.

The interpretation of the signaling NaN bit follows the definition in the IEEE 754 standard, which may not match the interpretation by some of the older, non-conformant (e.g. MIPS) hardware implementations.

§Examples
let mut v: Vec<f16> = vec![];
v.push(f16::ONE);
v.push(f16::INFINITY);
v.push(f16::NEG_INFINITY);
v.push(f16::NAN);
v.push(f16::MAX_SUBNORMAL);
v.push(-f16::MAX_SUBNORMAL);
v.push(f16::ZERO);
v.push(f16::NEG_ZERO);
v.push(f16::NEG_ONE);
v.push(f16::MIN_POSITIVE);

v.sort_by(|a, b| a.total_cmp(&b));

assert!(v
    .into_iter()
    .zip(
        [
            f16::NEG_INFINITY,
            f16::NEG_ONE,
            -f16::MAX_SUBNORMAL,
            f16::NEG_ZERO,
            f16::ZERO,
            f16::MAX_SUBNORMAL,
            f16::MIN_POSITIVE,
            f16::ONE,
            f16::INFINITY,
            f16::NAN
        ]
        .iter()
    )
    .all(|(a, b)| a.to_bits() == b.to_bits()));
Source

pub fn serialize_as_f32<S>( &self, serializer: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Alternate serialize adapter for serializing as a float.

By default, f16 serializes as a newtype of u16. This is an alternate serialize implementation that serializes as an f32 value. It is designed for use with serialize_with serde attributes. Deserialization from f32 values is already supported by the default deserialize implementation.

§Examples

A demonstration on how to use this adapater:

use serde::{Serialize, Deserialize};
use half::f16;

#[derive(Serialize, Deserialize)]
struct MyStruct {
    #[serde(serialize_with = "f16::serialize_as_f32")]
    value: f16 // Will be serialized as f32 instead of u16
}
Source

pub fn serialize_as_string<S>( &self, serializer: S, ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
where S: Serializer,

Alternate serialize adapter for serializing as a string.

By default, f16 serializes as a newtype of u16. This is an alternate serialize implementation that serializes as a string value. It is designed for use with serialize_with serde attributes. Deserialization from string values is already supported by the default deserialize implementation.

§Examples

A demonstration on how to use this adapater:

use serde::{Serialize, Deserialize};
use half::f16;

#[derive(Serialize, Deserialize)]
struct MyStruct {
    #[serde(serialize_with = "f16::serialize_as_string")]
    value: f16 // Will be serialized as a string instead of u16
}

Trait Implementations§

§

impl Abs for f16

§

fn abs(x: Self) -> Self

§

fn __expand_abs( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

Source§

impl Add<&f16> for &f16

Source§

type Output = <f16 as Add>::Output

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &f16) -> <&f16 as Add<&f16>>::Output

Performs the + operation. Read more
Source§

impl Add<&f16> for f16

Source§

type Output = <f16 as Add>::Output

The resulting type after applying the + operator.
Source§

fn add(self, rhs: &f16) -> <f16 as Add<&f16>>::Output

Performs the + operation. Read more
Source§

impl Add<f16> for &f16

Source§

type Output = <f16 as Add>::Output

The resulting type after applying the + operator.
Source§

fn add(self, rhs: f16) -> <&f16 as Add<f16>>::Output

Performs the + operation. Read more
Source§

impl Add for f16

Source§

type Output = f16

The resulting type after applying the + operator.
Source§

fn add(self, rhs: f16) -> <f16 as Add>::Output

Performs the + operation. Read more
Source§

impl AddAssign<&f16> for f16

Source§

fn add_assign(&mut self, rhs: &f16)

Performs the += operation. Read more
Source§

impl AddAssign for f16

Source§

fn add_assign(&mut self, rhs: f16)

Performs the += operation. Read more
Source§

impl AsPrimitive<bf16> for f16

Source§

fn as_(self) -> bf16

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<f16> for bf16

Source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<f16> for f16

Source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<f16> for u32

Source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<f32> for f16

Source§

fn as_(self) -> f32

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<f64> for f16

Source§

fn as_(self) -> f64

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<i16> for f16

Source§

fn as_(self) -> i16

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<i32> for f16

Source§

fn as_(self) -> i32

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<i64> for f16

Source§

fn as_(self) -> i64

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<i8> for f16

Source§

fn as_(self) -> i8

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<isize> for f16

Source§

fn as_(self) -> isize

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<u16> for f16

Source§

fn as_(self) -> u16

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<u32> for f16

Source§

fn as_(self) -> u32

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<u64> for f16

Source§

fn as_(self) -> u64

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<u8> for f16

Source§

fn as_(self) -> u8

Convert a value to another, using the as operator.
Source§

impl AsPrimitive<usize> for f16

Source§

fn as_(self) -> usize

Convert a value to another, using the as operator.
§

impl<B> AutodiffModule<B> for f16
where B: AutodiffBackend,

§

type InnerModule = f16

Inner module without auto-differentiation.
§

fn valid(&self) -> <f16 as AutodiffModule<B>>::InnerModule

Get the same module, but on the inner backend without auto-differentiation.
Source§

impl Binary for f16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Bounded for f16

Source§

fn min_value() -> f16

Returns the smallest finite number this type can represent
Source§

fn max_value() -> f16

Returns the largest finite number this type can represent
§

impl Ceil for f16

§

fn ceil(x: Self) -> Self

§

fn __expand_ceil( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl Clamp for f16

§

fn clamp(input: Self, min_value: Self, max_value: Self) -> Self

Clamp the input value between the max and min values provided.
§

fn __expand_clamp( scope: &mut Scope, input: Self::ExpandType, min_value: Self::ExpandType, max_value: Self::ExpandType, ) -> Self::ExpandType

Source§

impl Clone for f16

Source§

fn clone(&self) -> f16

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Cos for f16

§

fn cos(x: Self) -> Self

§

fn __expand_cos( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl CubeElement for f16

§

fn type_name() -> &'static str

Returns the name of the type.
§

fn as_bytes(slice: &[f16]) -> &[u8]

Convert a slice of elements to a slice of bytes.
§

fn from_bytes(bytes: &[u8]) -> &[f16]

Convert a slice of bytes to a slice of elements.
§

fn cube_elem() -> Elem

Element representation for cubecl.
§

fn maximum_value() -> f16

Highest possible value
§

fn minimum_value() -> f16

Lowest possible value
§

impl<I> CubeIndex<I> for f16
where I: Index,

§

type Output = f16

§

fn cube_idx(&self, _i: T) -> &Self::Output

§

impl<I> CubeIndexMut<I> for f16
where I: Index,

§

fn cube_idx_mut(&mut self, _i: T) -> &mut Self::Output

§

impl CubePrimitive for f16

§

fn as_elem_native() -> Option<Elem>

Return the element type to use on GPU

§

fn as_elem(_context: &Scope) -> Elem

Return the element type to use on GPU.
§

fn as_elem_native_unchecked() -> Elem

Native or static element type.
§

fn size() -> Option<usize>

Only native element types have a size.
§

fn from_expand_elem(elem: ExpandElement) -> Self::ExpandType

§

fn is_supported<S, C>(client: &ComputeClient<S, C>) -> bool
where S: ComputeServer<Feature = Feature>, C: ComputeChannel<S>,

§

fn elem_size() -> u32

§

fn __expand_elem_size(context: &Scope) -> u32

§

impl CubeType for f16

§

type ExpandType = ExpandElementTyped<f16>

§

fn init(scope: &mut Scope, expand: Self::ExpandType) -> Self::ExpandType

Wrapper around the init method, necessary to type inference.
Source§

impl Debug for f16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for f16

Source§

fn default() -> f16

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for f16

Source§

fn deserialize<D>( deserializer: D, ) -> Result<f16, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for f16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Div<&f16> for &f16

Source§

type Output = <f16 as Div>::Output

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &f16) -> <&f16 as Div<&f16>>::Output

Performs the / operation. Read more
Source§

impl Div<&f16> for f16

Source§

type Output = <f16 as Div>::Output

The resulting type after applying the / operator.
Source§

fn div(self, rhs: &f16) -> <f16 as Div<&f16>>::Output

Performs the / operation. Read more
Source§

impl Div<f16> for &f16

Source§

type Output = <f16 as Div>::Output

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f16) -> <&f16 as Div<f16>>::Output

Performs the / operation. Read more
Source§

impl Div for f16

Source§

type Output = f16

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f16) -> <f16 as Div>::Output

Performs the / operation. Read more
Source§

impl DivAssign<&f16> for f16

Source§

fn div_assign(&mut self, rhs: &f16)

Performs the /= operation. Read more
Source§

impl DivAssign for f16

Source§

fn div_assign(&mut self, rhs: f16)

Performs the /= operation. Read more
§

impl Dot for f16

§

fn dot(self, _rhs: Self) -> Self

§

fn __expand_dot( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>

§

impl Element for f16

§

fn dtype() -> DType

The dtype of the element.
§

impl ElementComparison for f16

§

fn cmp(&self, other: &f16) -> Ordering

Returns and Ordering between self and other.
§

impl ElementConversion for f16

§

fn from_elem<E>(elem: E) -> f16
where E: ToElement,

Converts an element to another element. Read more
§

fn elem<E>(self) -> E
where E: Element,

Converts and returns the converted element.
§

impl ElementLimits for f16

§

const MIN: f16 = f16::MIN

The minimum representable value
§

const MAX: f16 = f16::MAX

The maximum representable value
§

impl ElementPrecision for f16

§

fn precision() -> Precision

Returns the precision of the element.
§

impl ElementRandom for f16

§

fn random<R>(distribution: Distribution, rng: &mut R) -> f16
where R: RngCore,

Returns a random value for the given distribution. Read more
§

impl Erf for f16

§

fn erf(x: Self) -> Self

§

fn __expand_erf( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl Exp for f16

§

fn exp(x: Self) -> Self

§

fn __expand_exp( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl ExpandElementBaseInit for f16

§

fn init_elem(scope: &mut Scope, elem: ExpandElement) -> ExpandElement

Source§

impl Float for f16

Source§

fn nan() -> f16

Returns the NaN value. Read more
Source§

fn infinity() -> f16

Returns the infinite value. Read more
Source§

fn neg_infinity() -> f16

Returns the negative infinite value. Read more
Source§

fn neg_zero() -> f16

Returns -0.0. Read more
Source§

fn min_value() -> f16

Returns the smallest finite value that this type can represent. Read more
Source§

fn min_positive_value() -> f16

Returns the smallest positive, normalized value that this type can represent. Read more
Source§

fn epsilon() -> f16

Returns epsilon, a small positive value. Read more
Source§

fn max_value() -> f16

Returns the largest finite value that this type can represent. Read more
Source§

fn is_nan(self) -> bool

Returns true if this value is NaN and false otherwise. Read more
Source§

fn is_infinite(self) -> bool

Returns true if this value is positive infinity or negative infinity and false otherwise. Read more
Source§

fn is_finite(self) -> bool

Returns true if this number is neither infinite nor NaN. Read more
Source§

fn is_normal(self) -> bool

Returns true if the number is neither zero, infinite, subnormal, or NaN. Read more
Source§

fn classify(self) -> FpCategory

Returns the floating point category of the number. If only one property is going to be tested, it is generally faster to use the specific predicate instead. Read more
Source§

fn floor(self) -> f16

Returns the largest integer less than or equal to a number. Read more
Source§

fn ceil(self) -> f16

Returns the smallest integer greater than or equal to a number. Read more
Source§

fn round(self) -> f16

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more
Source§

fn trunc(self) -> f16

Return the integer part of a number. Read more
Source§

fn fract(self) -> f16

Returns the fractional part of a number. Read more
Source§

fn abs(self) -> f16

Computes the absolute value of self. Returns Float::nan() if the number is Float::nan(). Read more
Source§

fn signum(self) -> f16

Returns a number that represents the sign of self. Read more
Source§

fn is_sign_positive(self) -> bool

Returns true if self is positive, including +0.0, Float::infinity(), and Float::nan(). Read more
Source§

fn is_sign_negative(self) -> bool

Returns true if self is negative, including -0.0, Float::neg_infinity(), and -Float::nan(). Read more
Source§

fn mul_add(self, a: f16, b: f16) -> f16

Fused multiply-add. Computes (self * a) + b with only one rounding error, yielding a more accurate result than an unfused multiply-add. Read more
Source§

fn recip(self) -> f16

Take the reciprocal (inverse) of a number, 1/x. Read more
Source§

fn powi(self, n: i32) -> f16

Raise a number to an integer power. Read more
Source§

fn powf(self, n: f16) -> f16

Raise a number to a floating point power. Read more
Source§

fn sqrt(self) -> f16

Take the square root of a number. Read more
Source§

fn exp(self) -> f16

Returns e^(self), (the exponential function). Read more
Source§

fn exp2(self) -> f16

Returns 2^(self). Read more
Source§

fn ln(self) -> f16

Returns the natural logarithm of the number. Read more
Source§

fn log(self, base: f16) -> f16

Returns the logarithm of the number with respect to an arbitrary base. Read more
Source§

fn log2(self) -> f16

Returns the base 2 logarithm of the number. Read more
Source§

fn log10(self) -> f16

Returns the base 10 logarithm of the number. Read more
Source§

fn to_degrees(self) -> f16

Converts radians to degrees. Read more
Source§

fn to_radians(self) -> f16

Converts degrees to radians. Read more
Source§

fn max(self, other: f16) -> f16

Returns the maximum of the two numbers. Read more
Source§

fn min(self, other: f16) -> f16

Returns the minimum of the two numbers. Read more
Source§

fn abs_sub(self, other: f16) -> f16

The positive difference of two numbers. Read more
Source§

fn cbrt(self) -> f16

Take the cubic root of a number. Read more
Source§

fn hypot(self, other: f16) -> f16

Calculate the length of the hypotenuse of a right-angle triangle given legs of length x and y. Read more
Source§

fn sin(self) -> f16

Computes the sine of a number (in radians). Read more
Source§

fn cos(self) -> f16

Computes the cosine of a number (in radians). Read more
Source§

fn tan(self) -> f16

Computes the tangent of a number (in radians). Read more
Source§

fn asin(self) -> f16

Computes the arcsine of a number. Return value is in radians in the range [-pi/2, pi/2] or NaN if the number is outside the range [-1, 1]. Read more
Source§

fn acos(self) -> f16

Computes the arccosine of a number. Return value is in radians in the range [0, pi] or NaN if the number is outside the range [-1, 1]. Read more
Source§

fn atan(self) -> f16

Computes the arctangent of a number. Return value is in radians in the range [-pi/2, pi/2]; Read more
Source§

fn atan2(self, other: f16) -> f16

Computes the four quadrant arctangent of self (y) and other (x). Read more
Source§

fn sin_cos(self) -> (f16, f16)

Simultaneously computes the sine and cosine of the number, x. Returns (sin(x), cos(x)). Read more
Source§

fn exp_m1(self) -> f16

Returns e^(self) - 1 in a way that is accurate even if the number is close to zero. Read more
Source§

fn ln_1p(self) -> f16

Returns ln(1+n) (natural logarithm) more accurately than if the operations were performed separately. Read more
Source§

fn sinh(self) -> f16

Hyperbolic sine function. Read more
Source§

fn cosh(self) -> f16

Hyperbolic cosine function. Read more
Source§

fn tanh(self) -> f16

Hyperbolic tangent function. Read more
Source§

fn asinh(self) -> f16

Inverse hyperbolic sine function. Read more
Source§

fn acosh(self) -> f16

Inverse hyperbolic cosine function. Read more
Source§

fn atanh(self) -> f16

Inverse hyperbolic tangent function. Read more
Source§

fn integer_decode(self) -> (u64, i16, i8)

Returns the mantissa, base 2 exponent, and sign as integers, respectively. The original number can be recovered by sign * mantissa * 2 ^ exponent. Read more
Source§

fn is_subnormal(self) -> bool

Returns true if the number is subnormal. Read more
Source§

fn clamp(self, min: Self, max: Self) -> Self

Clamps a value between a min and max. Read more
Source§

fn copysign(self, sign: Self) -> Self

Returns a number composed of the magnitude of self and the sign of sign. Read more
§

impl Float for f16

§

const DIGITS: u32 = 3u32

§

const EPSILON: f16 = f16::EPSILON

§

const INFINITY: f16 = f16::INFINITY

§

const MANTISSA_DIGITS: u32 = 11u32

§

const MAX_10_EXP: i32 = 4i32

§

const MAX_EXP: i32 = 16i32

§

const MIN_10_EXP: i32 = -4i32

§

const MIN_EXP: i32 = -13i32

§

const MIN_POSITIVE: f16 = f16::MIN_POSITIVE

§

const NAN: f16 = f16::NAN

§

const NEG_INFINITY: f16 = f16::NEG_INFINITY

§

const RADIX: u32 = 2u32

§

fn new(val: f32) -> f16

§

fn __expand_new(scope: &mut Scope, val: f32) -> Self::ExpandType

Source§

impl FloatConst for f16

Source§

fn E() -> f16

Return Euler’s number.
Source§

fn FRAC_1_PI() -> f16

Return 1.0 / π.
Source§

fn FRAC_1_SQRT_2() -> f16

Return 1.0 / sqrt(2.0).
Source§

fn FRAC_2_PI() -> f16

Return 2.0 / π.
Source§

fn FRAC_2_SQRT_PI() -> f16

Return 2.0 / sqrt(π).
Source§

fn FRAC_PI_2() -> f16

Return π / 2.0.
Source§

fn FRAC_PI_3() -> f16

Return π / 3.0.
Source§

fn FRAC_PI_4() -> f16

Return π / 4.0.
Source§

fn FRAC_PI_6() -> f16

Return π / 6.0.
Source§

fn FRAC_PI_8() -> f16

Return π / 8.0.
Source§

fn LN_10() -> f16

Return ln(10.0).
Source§

fn LN_2() -> f16

Return ln(2.0).
Source§

fn LOG10_E() -> f16

Return log10(e).
Source§

fn LOG2_E() -> f16

Return log2(e).
Source§

fn PI() -> f16

Return Archimedes’ constant π.
Source§

fn SQRT_2() -> f16

Return sqrt(2.0).
Source§

fn LOG10_2() -> f16
where f16: Sized + Div<Output = f16>,

Return log10(2.0).
Source§

fn LOG2_10() -> f16
where f16: Sized + Div<Output = f16>,

Return log2(10.0).
Source§

fn TAU() -> Self
where Self: Sized + Add<Output = Self>,

Return the full circle constant τ.
Source§

impl FloatCore for f16

Source§

fn infinity() -> f16

Returns positive infinity. Read more
Source§

fn neg_infinity() -> f16

Returns negative infinity. Read more
Source§

fn nan() -> f16

Returns NaN. Read more
Source§

fn neg_zero() -> f16

Returns -0.0. Read more
Source§

fn min_value() -> f16

Returns the smallest finite value that this type can represent. Read more
Source§

fn min_positive_value() -> f16

Returns the smallest positive, normalized value that this type can represent. Read more
Source§

fn epsilon() -> f16

Returns epsilon, a small positive value. Read more
Source§

fn max_value() -> f16

Returns the largest finite value that this type can represent. Read more
Source§

fn is_nan(self) -> bool

Returns true if the number is NaN. Read more
Source§

fn is_infinite(self) -> bool

Returns true if the number is infinite. Read more
Source§

fn is_finite(self) -> bool

Returns true if the number is neither infinite or NaN. Read more
Source§

fn is_normal(self) -> bool

Returns true if the number is neither zero, infinite, subnormal or NaN. Read more
Source§

fn classify(self) -> FpCategory

Returns the floating point category of the number. If only one property is going to be tested, it is generally faster to use the specific predicate instead. Read more
Source§

fn floor(self) -> f16

Returns the largest integer less than or equal to a number. Read more
Source§

fn ceil(self) -> f16

Returns the smallest integer greater than or equal to a number. Read more
Source§

fn round(self) -> f16

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more
Source§

fn trunc(self) -> f16

Return the integer part of a number. Read more
Source§

fn fract(self) -> f16

Returns the fractional part of a number. Read more
Source§

fn abs(self) -> f16

Computes the absolute value of self. Returns FloatCore::nan() if the number is FloatCore::nan(). Read more
Source§

fn signum(self) -> f16

Returns a number that represents the sign of self. Read more
Source§

fn is_sign_positive(self) -> bool

Returns true if self is positive, including +0.0 and FloatCore::infinity(), and FloatCore::nan(). Read more
Source§

fn is_sign_negative(self) -> bool

Returns true if self is negative, including -0.0 and FloatCore::neg_infinity(), and -FloatCore::nan(). Read more
Source§

fn min(self, other: f16) -> f16

Returns the minimum of the two numbers. Read more
Source§

fn max(self, other: f16) -> f16

Returns the maximum of the two numbers. Read more
Source§

fn recip(self) -> f16

Returns the reciprocal (multiplicative inverse) of the number. Read more
Source§

fn powi(self, exp: i32) -> f16

Raise a number to an integer power. Read more
Source§

fn to_degrees(self) -> f16

Converts to degrees, assuming the number is in radians. Read more
Source§

fn to_radians(self) -> f16

Converts to radians, assuming the number is in degrees. Read more
Source§

fn integer_decode(self) -> (u64, i16, i8)

Returns the mantissa, base 2 exponent, and sign as integers, respectively. The original number can be recovered by sign * mantissa * 2 ^ exponent. Read more
Source§

fn is_subnormal(self) -> bool

Returns true if the number is subnormal. Read more
Source§

fn clamp(self, min: Self, max: Self) -> Self

A value bounded by a minimum and a maximum Read more
§

impl Floor for f16

§

fn floor(x: Self) -> Self

§

fn __expand_floor( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl From<Sample> for f16

§

fn from(s: Sample) -> f16

Converts to this type from the input type.
§

impl From<f16> for ExpandElement

§

fn from(value: f16) -> ExpandElement

Converts to this type from the input type.
§

impl From<f16> for ExpandElementTyped<f16>

§

fn from(value: f16) -> ExpandElementTyped<f16>

Converts to this type from the input type.
§

impl From<f16> for Sample

§

fn from(f: f16) -> Sample

Converts to this type from the input type.
§

impl From<f16> for Variable

§

fn from(value: f16) -> Variable

Converts to this type from the input type.
Source§

impl From<f16> for f32

Source§

fn from(x: f16) -> f32

Converts to this type from the input type.
Source§

impl From<f16> for f64

Source§

fn from(x: f16) -> f64

Converts to this type from the input type.
Source§

impl From<i8> for f16

Source§

fn from(x: i8) -> f16

Converts to this type from the input type.
Source§

impl From<u8> for f16

Source§

fn from(x: u8) -> f16

Converts to this type from the input type.
Source§

impl FromBytes for f16

Source§

type Bytes = [u8; 2]

Source§

fn from_be_bytes(bytes: &<f16 as FromBytes>::Bytes) -> f16

Create a number from its representation as a byte array in big endian. Read more
Source§

fn from_le_bytes(bytes: &<f16 as FromBytes>::Bytes) -> f16

Create a number from its representation as a byte array in little endian. Read more
Source§

fn from_ne_bytes(bytes: &<f16 as FromBytes>::Bytes) -> f16

Create a number from its memory representation as a byte array in native endianness. Read more
§

impl FromNativeSample for f16

§

fn from_f16(value: f16) -> f16

Create this sample from a f16, trying to represent the same numerical value
§

fn from_f32(value: f32) -> f16

Create this sample from a f32, trying to represent the same numerical value
§

fn from_u32(value: u32) -> f16

Create this sample from a u32, trying to represent the same numerical value
§

fn from_f32s(from: &[f32], to: &mut [f16])

Convert all values from the slice into this type. This function exists to allow the compiler to perform a vectorization optimization. Note that this default implementation will be vectorized by the compiler automatically.
§

fn from_f16s(from: &[f16], to: &mut [Self])

Convert all values from the slice into this type. This function exists to allow the compiler to perform a vectorization optimization. Note that this default implementation will not be vectorized by the compiler automatically. For maximum performance you will need to override this function and implement it via an explicit batched conversion such as convert_to_f32_slice
§

fn from_u32s(from: &[u32], to: &mut [Self])

Convert all values from the slice into this type. This function exists to allow the compiler to perform a vectorization optimization. Note that this default implementation will be vectorized by the compiler automatically, provided that the CPU supports the necessary conversion instructions. For example, x86_64 lacks the instructions to convert u32 to floats, so this will inevitably be slow on x86_64.
Source§

impl FromPrimitive for f16

Source§

fn from_i64(n: i64) -> Option<f16>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_u64(n: u64) -> Option<f16>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_i8(n: i8) -> Option<f16>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_u8(n: u8) -> Option<f16>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_i16(n: i16) -> Option<f16>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_u16(n: u16) -> Option<f16>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_i32(n: i32) -> Option<f16>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_u32(n: u32) -> Option<f16>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_f32(n: f32) -> Option<f16>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_f64(n: f64) -> Option<f16>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
Source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
Source§

impl FromStr for f16

Source§

type Err = ParseFloatError

The associated error which can be returned from parsing.
Source§

fn from_str(src: &str) -> Result<f16, ParseFloatError>

Parses a string s to return a value of this type. Read more
§

impl IntoNativeSample for f16

§

fn to_f16(&self) -> f16

Convert this sample to an f16, trying to represent the same numerical value.
§

fn to_f32(&self) -> f32

Convert this sample to an f32, trying to represent the same numerical value.
§

fn to_u32(&self) -> u32

Convert this sample to an u16, trying to represent the same numerical value.
§

impl IntoRuntime for f16

§

fn __expand_runtime_method(self, scope: &mut Scope) -> ExpandElementTyped<f16>

§

fn runtime(self) -> Self

§

impl IntoSample for f16

§

const PREFERRED_SAMPLE_TYPE: SampleType = SampleType::F16

The native sample types that this type should be converted to.
§

impl LaunchArgExpand for f16

§

type CompilationArg = ()

Compilation argument.
§

fn expand( _: &<f16 as LaunchArgExpand>::CompilationArg, builder: &mut KernelBuilder, ) -> ExpandElementTyped<f16>

Register an input variable during compilation that fill the [KernelBuilder].
§

fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> Self::ExpandType

Register an output variable during compilation that fill the [KernelBuilder].
§

impl Log for f16

§

fn log(x: Self) -> Self

§

fn __expand_log( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl Log1p for f16

§

fn log1p(x: Self) -> Self

§

fn __expand_log1p( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

Source§

impl LowerExp for f16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl LowerHex for f16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Magnitude for f16

§

fn magnitude(x: Self) -> Self

§

fn __expand_magnitude( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl MatmulPrecision for f16

§

const QUANTIZED: bool = false

§

type EI = f16

Element type of each input tensors of the kernel.
§

type ES = f16

Element type for the shared memories used to read inputs.
§

type EA = f32

Element type for the shared memories or fragments used to accumulate smaller matmul results before writing to the output tensor.
§

type EO = f16

Element type of the output tensor of the kernel.
§

impl Max for f16

§

fn max(self, _rhs: Self) -> Self

§

fn __expand_max( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>

§

impl Min for f16

§

fn min(self, _rhs: Self) -> Self

§

fn __expand_min( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>

§

impl<B> Module<B> for f16
where B: Backend,

§

type Record = ConstantRecord

Type to save and load the module.
§

fn visit<V>(&self, _visitor: &mut V)
where V: ModuleVisitor<B>,

Visit each tensor parameter in the module with a visitor.
§

fn map<M>(self, _mapper: &mut M) -> f16
where M: ModuleMapper<B>,

Map each tensor parameter in the module with a mapper.
§

fn load_record(self, _record: <f16 as Module<B>>::Record) -> f16

Load the module state from a record.
§

fn into_record(self) -> <f16 as Module<B>>::Record

Convert the module into a record containing the state.
§

fn to_device(self, _: &<B as Backend>::Device) -> f16

Move the module and all of its sub-modules to the given device. Read more
§

fn fork(self, _: &<B as Backend>::Device) -> f16

Fork the module and all of its sub-modules to the given device. Read more
§

fn collect_devices( &self, devices: Vec<<B as Backend>::Device>, ) -> Vec<<B as Backend>::Device>

Return all the devices found in the underneath module tree added to the given vector without duplicates.
§

fn devices(&self) -> Vec<<B as Backend>::Device>

Return all the devices found in the underneath module tree without duplicates.
§

fn no_grad(self) -> Self

Each tensor in the module tree will not require grad. Read more
§

fn num_params(&self) -> usize

Get the number of parameters the module has, including all of its sub-modules.
§

fn save_file<FR, PB>( self, file_path: PB, recorder: &FR, ) -> Result<(), RecorderError>
where FR: FileRecorder<B>, PB: Into<PathBuf>,

Save the module to a file using the provided file recorder. Read more
§

fn load_file<FR, PB>( self, file_path: PB, recorder: &FR, device: &<B as Backend>::Device, ) -> Result<Self, RecorderError>
where FR: FileRecorder<B>, PB: Into<PathBuf>,

Load the module from a file using the provided file recorder. Read more
§

fn quantize_weights(self, quantizer: &mut Quantizer) -> Self

Quantize the weights of the module.
§

impl ModuleDisplay for f16

§

fn format(&self, passed_settings: DisplaySettings) -> String

Formats the module with provided display settings. Read more
§

fn custom_settings(&self) -> Option<DisplaySettings>

Custom display settings for the module. Read more
§

fn custom_content(&self, _content: Content) -> Option<Content>

Custom attributes for the module. Read more
§

impl ModuleDisplayDefault for f16

§

fn content(&self, content: Content) -> Option<Content>

Attributes of the module used for display purposes. Read more
§

fn num_params(&self) -> usize

Gets the number of the parameters of the module.
Source§

impl Mul<&f16> for &f16

Source§

type Output = <f16 as Mul>::Output

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &f16) -> <&f16 as Mul<&f16>>::Output

Performs the * operation. Read more
Source§

impl Mul<&f16> for f16

Source§

type Output = <f16 as Mul>::Output

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: &f16) -> <f16 as Mul<&f16>>::Output

Performs the * operation. Read more
Source§

impl Mul<f16> for &f16

Source§

type Output = <f16 as Mul>::Output

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f16) -> <&f16 as Mul<f16>>::Output

Performs the * operation. Read more
Source§

impl Mul for f16

Source§

type Output = f16

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f16) -> <f16 as Mul>::Output

Performs the * operation. Read more
Source§

impl MulAssign<&f16> for f16

Source§

fn mul_assign(&mut self, rhs: &f16)

Performs the *= operation. Read more
Source§

impl MulAssign for f16

Source§

fn mul_assign(&mut self, rhs: f16)

Performs the *= operation. Read more
Source§

impl Neg for &f16

Source§

type Output = <f16 as Neg>::Output

The resulting type after applying the - operator.
Source§

fn neg(self) -> <&f16 as Neg>::Output

Performs the unary - operation. Read more
Source§

impl Neg for f16

Source§

type Output = f16

The resulting type after applying the - operator.
Source§

fn neg(self) -> <f16 as Neg>::Output

Performs the unary - operation. Read more
§

impl Normalize for f16

§

fn normalize(x: Self) -> Self

§

fn __expand_normalize( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

Source§

impl Num for f16

Source§

type FromStrRadixErr = <f32 as Num>::FromStrRadixErr

Source§

fn from_str_radix( str: &str, radix: u32, ) -> Result<f16, <f16 as Num>::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
Source§

impl NumCast for f16

Source§

fn from<T>(n: T) -> Option<f16>
where T: ToPrimitive,

Creates a number from another value that can be converted into a primitive via the ToPrimitive trait. If the source value cannot be represented by the target type, then None is returned. Read more
§

impl Numeric for f16

§

fn min_value() -> f16

§

fn max_value() -> f16

§

fn __expand_min_value(scope: &mut Scope) -> Self::ExpandType

§

fn __expand_max_value(scope: &mut Scope) -> Self::ExpandType

§

fn from_int(val: i64) -> Self

Create a new constant numeric. Read more
§

fn from_vec<const D: usize>(_vec: [u32; D]) -> Self

§

fn __expand_from_int( scope: &mut Scope, val: ExpandElementTyped<i64>, ) -> Self::ExpandType

§

fn __expand_from_vec<const D: usize>( scope: &mut Scope, vec: [u32; D], ) -> Self::ExpandType

Source§

impl Octal for f16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl One for f16

Source§

fn one() -> f16

Returns the multiplicative identity element of Self, 1. Read more
Source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
Source§

fn is_one(&self) -> bool
where Self: PartialEq,

Returns true if self is equal to the multiplicative identity. Read more
Source§

impl PartialEq for f16

Source§

fn eq(&self, other: &f16) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for f16

Source§

fn partial_cmp(&self, other: &f16) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
Source§

fn lt(&self, other: &f16) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
Source§

fn le(&self, other: &f16) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
Source§

fn gt(&self, other: &f16) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
Source§

fn ge(&self, other: &f16) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl Powf for f16

§

fn powf(self, _rhs: Self) -> Self

§

fn __expand_powf( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>

Source§

impl<'a> Product<&'a f16> for f16

Source§

fn product<I>(iter: I) -> f16
where I: Iterator<Item = &'a f16>,

Takes an iterator and generates Self from the elements by multiplying the items.
Source§

impl Product for f16

Source§

fn product<I>(iter: I) -> f16
where I: Iterator<Item = f16>,

Takes an iterator and generates Self from the elements by multiplying the items.
§

impl Recip for f16

§

fn recip(x: Self) -> Self

§

fn __expand_recip( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl<B> Record<B> for f16
where B: Backend,

§

type Item<S: PrecisionSettings> = f16

Type of the item that can be serialized and deserialized.
§

fn into_item<S>(self) -> <f16 as Record<B>>::Item<S>

Convert the current record into the corresponding item that follows the given settings.
§

fn from_item<S>( item: <f16 as Record<B>>::Item<S>, _device: &<B as Backend>::Device, ) -> f16

Convert the given item into a record.
Source§

impl Rem<&f16> for &f16

Source§

type Output = <f16 as Rem>::Output

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &f16) -> <&f16 as Rem<&f16>>::Output

Performs the % operation. Read more
Source§

impl Rem<&f16> for f16

Source§

type Output = <f16 as Rem>::Output

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: &f16) -> <f16 as Rem<&f16>>::Output

Performs the % operation. Read more
Source§

impl Rem<f16> for &f16

Source§

type Output = <f16 as Rem>::Output

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: f16) -> <&f16 as Rem<f16>>::Output

Performs the % operation. Read more
Source§

impl Rem for f16

Source§

type Output = f16

The resulting type after applying the % operator.
Source§

fn rem(self, rhs: f16) -> <f16 as Rem>::Output

Performs the % operation. Read more
Source§

impl RemAssign<&f16> for f16

Source§

fn rem_assign(&mut self, rhs: &f16)

Performs the %= operation. Read more
Source§

impl RemAssign for f16

Source§

fn rem_assign(&mut self, rhs: f16)

Performs the %= operation. Read more
§

impl Remainder for f16

§

fn rem(self, _rhs: Self) -> Self

§

fn __expand_rem( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>

§

impl Round for f16

§

fn round(x: Self) -> Self

§

fn __expand_round( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

Source§

impl SampleUniform for f16

Source§

type Sampler = Float16Sampler

The UniformSampler implementation supporting type X.
§

impl Scalar for f16

§

type Mask<S: Simd> = <S as Simd>::Mask16

§

fn lanes<S>() -> usize
where S: Simd,

§

unsafe fn vload<S>(ptr: *const f16) -> Vector<S, f16>
where S: Simd,

Load a vector from an aligned element pointer. Must be aligned to the whole vector. Read more
§

unsafe fn vload_unaligned<S>(ptr: *const f16) -> Vector<S, f16>
where S: Simd,

Load a vector from an unaligned element pointer. Read more
§

unsafe fn vload_low<S>(ptr: *const f16) -> Vector<S, f16>
where S: Simd,

Load the lower half of a vector from an unaligned element pointer. Read more
§

unsafe fn vload_high<S>(ptr: *const f16) -> Vector<S, f16>
where S: Simd,

Load the upper half of a vector from an unaligned element pointer. Read more
§

unsafe fn vstore<S>(ptr: *mut f16, value: Vector<S, f16>)
where S: Simd,

Store the lower half of a vector to an aligned element pointer. Must be aligned to the whole vector. Read more
§

unsafe fn vstore_unaligned<S>(ptr: *mut f16, value: Vector<S, f16>)
where S: Simd,

Store the upper half of a vector to an unaligned element pointer. Read more
§

unsafe fn vstore_low<S>(ptr: *mut f16, value: Vector<S, f16>)
where S: Simd,

Store the upper half of a vector to an unaligned element pointer. Read more
§

unsafe fn vstore_high<S>(ptr: *mut f16, value: Vector<S, f16>)
where S: Simd,

Store the upper half of a vector to an unaligned element pointer. Read more
§

unsafe fn mask_store_as_bool<S>(out: *mut bool, mask: <f16 as Scalar>::Mask<S>)
where S: Simd,

Store a Mask as a set of booleans of lanes width, converting as necessary. Read more
§

fn mask_from_bools<S>(bools: &[bool]) -> <f16 as Scalar>::Mask<S>
where S: Simd,

Converts a slice of booleans to a mask. Slice length must be equal to lanes.
§

fn splat<S>(self) -> Vector<S, f16>
where S: Simd,

Create a vector with the scalar value in each element.
§

fn align_to<S>(data: &[Self]) -> (&[Self], &[Vector<S, Self>], &[Self])
where S: Simd,

Convert slice into a head slice containing as many vectorized values as possible, and a tail slice, containing the leftover elements.
§

impl ScalarArgSettings for f16

§

fn register<R>(&self, settings: &mut KernelLauncher<R>)
where R: Runtime,

Register the information to the [KernelLauncher].
Source§

impl Serialize for f16

Source§

fn serialize<__S>( &self, __serializer: __S, ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
§

impl Sin for f16

§

fn sin(x: Self) -> Self

§

fn __expand_sin( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

§

impl Sqrt for f16

§

fn sqrt(x: Self) -> Self

§

fn __expand_sqrt( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

Source§

impl Sub<&f16> for &f16

Source§

type Output = <f16 as Sub>::Output

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &f16) -> <&f16 as Sub<&f16>>::Output

Performs the - operation. Read more
Source§

impl Sub<&f16> for f16

Source§

type Output = <f16 as Sub>::Output

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: &f16) -> <f16 as Sub<&f16>>::Output

Performs the - operation. Read more
Source§

impl Sub<f16> for &f16

Source§

type Output = <f16 as Sub>::Output

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: f16) -> <&f16 as Sub<f16>>::Output

Performs the - operation. Read more
Source§

impl Sub for f16

Source§

type Output = f16

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: f16) -> <f16 as Sub>::Output

Performs the - operation. Read more
Source§

impl SubAssign<&f16> for f16

Source§

fn sub_assign(&mut self, rhs: &f16)

Performs the -= operation. Read more
Source§

impl SubAssign for f16

Source§

fn sub_assign(&mut self, rhs: f16)

Performs the -= operation. Read more
Source§

impl<'a> Sum<&'a f16> for f16

Source§

fn sum<I>(iter: I) -> f16
where I: Iterator<Item = &'a f16>,

Takes an iterator and generates Self from the elements by “summing up” the items.
Source§

impl Sum for f16

Source§

fn sum<I>(iter: I) -> f16
where I: Iterator<Item = f16>,

Takes an iterator and generates Self from the elements by “summing up” the items.
§

impl Tanh for f16

§

fn tanh(x: Self) -> Self

§

fn __expand_tanh( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>

Source§

impl ToBytes for f16

Source§

type Bytes = [u8; 2]

Source§

fn to_be_bytes(&self) -> <f16 as ToBytes>::Bytes

Return the memory representation of this number as a byte array in big-endian byte order. Read more
Source§

fn to_le_bytes(&self) -> <f16 as ToBytes>::Bytes

Return the memory representation of this number as a byte array in little-endian byte order. Read more
Source§

fn to_ne_bytes(&self) -> <f16 as ToBytes>::Bytes

Return the memory representation of this number as a byte array in native byte order. Read more
§

impl ToElement for f16

§

fn to_i64(&self) -> i64

Converts the value of self to an i64.
§

fn to_u64(&self) -> u64

Converts the value of self to a u64.
§

fn to_i8(&self) -> i8

Converts the value of self to an i8.
§

fn to_u8(&self) -> u8

Converts the value of self to a u8.
§

fn to_i16(&self) -> i16

Converts the value of self to an i16.
§

fn to_u16(&self) -> u16

Converts the value of self to a u16.
§

fn to_i32(&self) -> i32

Converts the value of self to an i32.
§

fn to_u32(&self) -> u32

Converts the value of self to a u32.
§

fn to_f16(&self) -> f16

Converts the value of self to an f16. Overflows may map to positive or negative infinity.
§

fn to_f32(&self) -> f32

Converts the value of self to an f32. Overflows may map to positive or negative infinity.
§

fn to_f64(&self) -> f64

Converts the value of self to an f64. Overflows may map to positive or negative infinity. Read more
§

fn to_bool(&self) -> bool

Converts the value of self to a bool. Rust only considers 0 and 1 to be valid booleans, but for compatibility, C semantics are adopted (anything that’s not 0 is true). Read more
§

fn to_isize(&self) -> isize

Converts the value of self to an isize.
§

fn to_i128(&self) -> i128

Converts the value of self to an i128. Read more
§

fn to_usize(&self) -> usize

Converts the value of self to a usize.
§

fn to_u128(&self) -> u128

Converts the value of self to a u128. Read more
§

fn to_bf16(&self) -> bf16

Converts the value of self to an bf16. Overflows may map to positive or negative infinity.
Source§

impl ToPrimitive for f16

Source§

fn to_i64(&self) -> Option<i64>

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned.
Source§

fn to_u64(&self) -> Option<u64>

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned.
Source§

fn to_i8(&self) -> Option<i8>

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned.
Source§

fn to_u8(&self) -> Option<u8>

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned.
Source§

fn to_i16(&self) -> Option<i16>

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned.
Source§

fn to_u16(&self) -> Option<u16>

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned.
Source§

fn to_i32(&self) -> Option<i32>

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned.
Source§

fn to_u32(&self) -> Option<u32>

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned.
Source§

fn to_f32(&self) -> Option<f32>

Converts the value of self to an f32. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f32.
Source§

fn to_f64(&self) -> Option<f64>

Converts the value of self to an f64. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f64. Read more
Source§

fn to_isize(&self) -> Option<isize>

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned.
Source§

fn to_i128(&self) -> Option<i128>

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more
Source§

fn to_usize(&self) -> Option<usize>

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned.
Source§

fn to_u128(&self) -> Option<u128>

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more
Source§

impl UpperExp for f16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl UpperHex for f16

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl VAbs for f16

§

fn vabs<S>(input: Vector<S, f16>) -> Vector<S, f16>
where S: Simd,

§

fn is_accelerated<S>() -> bool
where S: Simd,

§

impl VAdd for f16

§

fn vadd<S>(lhs: Vector<S, f16>, rhs: Vector<S, f16>) -> Vector<S, f16>
where S: Simd,

§

fn is_accelerated<S>() -> bool
where S: Simd,

§

impl VDiv for f16

§

fn vdiv<S>(lhs: Vector<S, f16>, rhs: Vector<S, f16>) -> Vector<S, f16>
where S: Simd,

§

fn is_accelerated<S>() -> bool
where S: Simd,

§

impl VEq for f16

§

fn veq<S>(a: Vector<S, f16>, b: Vector<S, f16>) -> <f16 as Scalar>::Mask<S>
where S: Simd,

Compare two vectors for elementwise equality
§

fn is_accelerated<S>() -> bool
where S: Simd,

§

impl VMul for f16

§

fn vmul<S>(lhs: Vector<S, f16>, rhs: Vector<S, f16>) -> Vector<S, f16>
where S: Simd,

§

fn is_accelerated<S>() -> bool
where S: Simd,

§

impl VMulAdd for f16

§

fn vmul_add<S>( a: Vector<S, f16>, b: Vector<S, f16>, c: Vector<S, f16>, ) -> Vector<S, f16>
where S: Simd,

§

fn is_accelerated<S>() -> bool
where S: Simd,

§

impl VOrd for f16

§

fn vlt<S>(a: Vector<S, f16>, b: Vector<S, f16>) -> <f16 as Scalar>::Mask<S>
where S: Simd,

Apply elementwise PartialOrd::lt on two vectors
§

fn vle<S>(a: Vector<S, f16>, b: Vector<S, f16>) -> <f16 as Scalar>::Mask<S>
where S: Simd,

Apply elementwise PartialOrd::le on two vectors
§

fn vgt<S>(a: Vector<S, f16>, b: Vector<S, f16>) -> <f16 as Scalar>::Mask<S>
where S: Simd,

Apply elementwise PartialOrd::gt on two vectors
§

fn vge<S>(a: Vector<S, f16>, b: Vector<S, f16>) -> <f16 as Scalar>::Mask<S>
where S: Simd,

Apply elementwise PartialOrd::ge on two vectors
§

fn vmin<S>(a: Vector<S, f16>, b: Vector<S, f16>) -> Vector<S, f16>
where S: Simd,

Apply elementwise Ord::min to two vectors
§

fn vmax<S>(a: Vector<S, f16>, b: Vector<S, f16>) -> Vector<S, f16>
where S: Simd,

Apply elementwise Ord::max on two vectors
§

fn is_cmp_accelerated<S>() -> bool
where S: Simd,

§

fn is_min_max_accelerated<S>() -> bool
where S: Simd,

§

impl VRecip for f16

§

fn vrecip<S>(input: Vector<S, f16>) -> Vector<S, f16>
where S: Simd,

§

fn is_accelerated<S>() -> bool
where S: Simd,

§

impl VSub for f16

§

fn vsub<S>(lhs: Vector<S, f16>, rhs: Vector<S, f16>) -> Vector<S, f16>
where S: Simd,

§

fn is_accelerated<S>() -> bool
where S: Simd,

§

impl ValidateResult for f16

§

fn validate_result( &self, other: &f16, options: ValidationOptions, location: impl Fn() -> String, ) -> Result<(), String>

Compare self with the other. Exceptional behaviour: Read more
§

fn assert_equals_result(&self, result: &Self)

Compare self with the other. Panics if not equal. Read more
Source§

impl Zero for f16

Source§

fn zero() -> f16

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zeroable for f16

§

fn zeroed() -> Self

Source§

impl Copy for f16

Source§

impl Pod for f16

Auto Trait Implementations§

§

impl Freeze for f16

§

impl RefUnwindSafe for f16

§

impl Send for f16

§

impl Sync for f16

§

impl Unpin for f16

§

impl UnwindSafe for f16

Blanket Implementations§

§

impl<T> Adaptor<()> for T

§

fn adapt(&self)

Adapt the type to be passed to a metric.
Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<P> Cast for P
where P: CubePrimitive,

§

fn cast_from<From>(_value: From) -> P
where From: CubePrimitive,

§

fn __expand_cast_from<From>( scope: &mut Scope, value: ExpandElementTyped<From>, ) -> Self::ExpandType
where From: CubePrimitive,

§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> ComplexFloat for T
where T: Float + FloatConst,

Source§

type Real = T

The type used to represent the real coefficients of this complex number.
Source§

fn re(self) -> <T as ComplexFloat>::Real

Returns the real part of the number.
Source§

fn im(self) -> <T as ComplexFloat>::Real

Returns the imaginary part of the number.
Source§

fn l1_norm(&self) -> <T as ComplexFloat>::Real

Returns the L1 norm |re| + |im| – the Manhattan distance from the origin.
Source§

fn arg(self) -> <T as ComplexFloat>::Real

Computes the argument of the number.
Source§

fn powc( self, exp: Complex<<T as ComplexFloat>::Real>, ) -> Complex<<T as ComplexFloat>::Real>

Raises self to a complex power.
Source§

fn conj(self) -> T

Computes the complex conjugate of the number. Read more
Source§

fn expf(self, base: <T as ComplexFloat>::Real) -> T

Returns base^(self).
Source§

fn is_normal(self) -> bool

Returns true if the number is neither zero, infinite, subnormal, or NaN.
Source§

fn is_infinite(self) -> bool

Returns true if this value is positive infinity or negative infinity and false otherwise.
Source§

fn is_finite(self) -> bool

Returns true if this number is neither infinite nor NaN.
Source§

fn is_nan(self) -> bool

Returns true if this value is NaN and false otherwise.
Source§

fn recip(self) -> T

Take the reciprocal (inverse) of a number, 1/x. See also Complex::finv.
Source§

fn powi(self, n: i32) -> T

Raises self to a signed integer power.
Source§

fn powf(self, f: T) -> T

Raises self to a real power.
Source§

fn sqrt(self) -> T

Take the square root of a number.
Source§

fn cbrt(self) -> T

Take the cubic root of a number.
Source§

fn exp(self) -> T

Returns e^(self), (the exponential function).
Source§

fn exp2(self) -> T

Returns 2^(self).
Source§

fn ln(self) -> T

Returns the natural logarithm of the number.
Source§

fn log(self, base: T) -> T

Returns the logarithm of the number with respect to an arbitrary base.
Source§

fn log2(self) -> T

Returns the base 2 logarithm of the number.
Source§

fn log10(self) -> T

Returns the base 10 logarithm of the number.
Source§

fn sin(self) -> T

Computes the sine of a number (in radians).
Source§

fn cos(self) -> T

Computes the cosine of a number (in radians).
Source§

fn tan(self) -> T

Computes the tangent of a number (in radians).
Source§

fn asin(self) -> T

Computes the arcsine of a number. Return value is in radians in the range [-pi/2, pi/2] or NaN if the number is outside the range [-1, 1].
Source§

fn acos(self) -> T

Computes the arccosine of a number. Return value is in radians in the range [0, pi] or NaN if the number is outside the range [-1, 1].
Source§

fn atan(self) -> T

Computes the arctangent of a number. Return value is in radians in the range [-pi/2, pi/2];
Source§

fn sinh(self) -> T

Hyperbolic sine function.
Source§

fn cosh(self) -> T

Hyperbolic cosine function.
Source§

fn tanh(self) -> T

Hyperbolic tangent function.
Source§

fn asinh(self) -> T

Inverse hyperbolic sine function.
Source§

fn acosh(self) -> T

Inverse hyperbolic cosine function.
Source§

fn atanh(self) -> T

Inverse hyperbolic tangent function.
Source§

fn abs(self) -> T

Returns the absolute value of the number. See also Complex::norm
§

impl<P> CubeDebug for P
where P: CubePrimitive,

§

fn set_debug_name(&self, scope: &mut Scope, name: &'static str)

Set the debug name of this type’s expansion. Should do nothing for types that don’t appear at runtime
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> LaunchArg for T
where T: Numeric,

§

type RuntimeArg<'a, R: Runtime> = ScalarArg<T>

The runtime argument for the kernel.
§

fn compilation_arg<'a, R>( _runtime_arg: &'a <T as LaunchArg>::RuntimeArg<'a, R>, ) -> <T as LaunchArgExpand>::CompilationArg
where R: Runtime,

Source§

impl<T> LowerBounded for T
where T: Bounded,

Source§

fn min_value() -> T

Returns the smallest finite number this type can represent
§

impl<MP> MatmulSpec for MP
where MP: MatmulPrecision,

§

type Precision = MP

§

type Args = TensorArgs

How the input and output tensors are passed as arguments.
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

Source§

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
Source§

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
Source§

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
Source§

impl<T> Real for T
where T: Float,

Source§

fn min_value() -> T

Returns the smallest finite value that this type can represent. Read more
Source§

fn min_positive_value() -> T

Returns the smallest positive, normalized value that this type can represent. Read more
Source§

fn epsilon() -> T

Returns epsilon, a small positive value. Read more
Source§

fn max_value() -> T

Returns the largest finite value that this type can represent. Read more
Source§

fn floor(self) -> T

Returns the largest integer less than or equal to a number. Read more
Source§

fn ceil(self) -> T

Returns the smallest integer greater than or equal to a number. Read more
Source§

fn round(self) -> T

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more
Source§

fn trunc(self) -> T

Return the integer part of a number. Read more
Source§

fn fract(self) -> T

Returns the fractional part of a number. Read more
Source§

fn abs(self) -> T

Computes the absolute value of self. Returns Float::nan() if the number is Float::nan(). Read more
Source§

fn signum(self) -> T

Returns a number that represents the sign of self. Read more
Source§

fn is_sign_positive(self) -> bool

Returns true if self is positive, including +0.0, Float::infinity(), and with newer versions of Rust f64::NAN. Read more
Source§

fn is_sign_negative(self) -> bool

Returns true if self is negative, including -0.0, Float::neg_infinity(), and with newer versions of Rust -f64::NAN. Read more
Source§

fn mul_add(self, a: T, b: T) -> T

Fused multiply-add. Computes (self * a) + b with only one rounding error, yielding a more accurate result than an unfused multiply-add. Read more
Source§

fn recip(self) -> T

Take the reciprocal (inverse) of a number, 1/x. Read more
Source§

fn powi(self, n: i32) -> T

Raise a number to an integer power. Read more
Source§

fn powf(self, n: T) -> T

Raise a number to a real number power. Read more
Source§

fn sqrt(self) -> T

Take the square root of a number. Read more
Source§

fn exp(self) -> T

Returns e^(self), (the exponential function). Read more
Source§

fn exp2(self) -> T

Returns 2^(self). Read more
Source§

fn ln(self) -> T

Returns the natural logarithm of the number. Read more
Source§

fn log(self, base: T) -> T

Returns the logarithm of the number with respect to an arbitrary base. Read more
Source§

fn log2(self) -> T

Returns the base 2 logarithm of the number. Read more
Source§

fn log10(self) -> T

Returns the base 10 logarithm of the number. Read more
Source§

fn to_degrees(self) -> T

Converts radians to degrees. Read more
Source§

fn to_radians(self) -> T

Converts degrees to radians. Read more
Source§

fn max(self, other: T) -> T

Returns the maximum of the two numbers. Read more
Source§

fn min(self, other: T) -> T

Returns the minimum of the two numbers. Read more
Source§

fn abs_sub(self, other: T) -> T

The positive difference of two numbers. Read more
Source§

fn cbrt(self) -> T

Take the cubic root of a number. Read more
Source§

fn hypot(self, other: T) -> T

Calculate the length of the hypotenuse of a right-angle triangle given legs of length x and y. Read more
Source§

fn sin(self) -> T

Computes the sine of a number (in radians). Read more
Source§

fn cos(self) -> T

Computes the cosine of a number (in radians). Read more
Source§

fn tan(self) -> T

Computes the tangent of a number (in radians). Read more
Source§

fn asin(self) -> T

Computes the arcsine of a number. Return value is in radians in the range [-pi/2, pi/2] or NaN if the number is outside the range [-1, 1]. Read more
Source§

fn acos(self) -> T

Computes the arccosine of a number. Return value is in radians in the range [0, pi] or NaN if the number is outside the range [-1, 1]. Read more
Source§

fn atan(self) -> T

Computes the arctangent of a number. Return value is in radians in the range [-pi/2, pi/2]; Read more
Source§

fn atan2(self, other: T) -> T

Computes the four quadrant arctangent of self (y) and other (x). Read more
Source§

fn sin_cos(self) -> (T, T)

Simultaneously computes the sine and cosine of the number, x. Returns (sin(x), cos(x)). Read more
Source§

fn exp_m1(self) -> T

Returns e^(self) - 1 in a way that is accurate even if the number is close to zero. Read more
Source§

fn ln_1p(self) -> T

Returns ln(1+n) (natural logarithm) more accurately than if the operations were performed separately. Read more
Source§

fn sinh(self) -> T

Hyperbolic sine function. Read more
Source§

fn cosh(self) -> T

Hyperbolic cosine function. Read more
Source§

fn tanh(self) -> T

Hyperbolic tangent function. Read more
Source§

fn asinh(self) -> T

Inverse hyperbolic sine function. Read more
Source§

fn acosh(self) -> T

Inverse hyperbolic cosine function. Read more
Source§

fn atanh(self) -> T

Inverse hyperbolic tangent function. Read more
§

impl<P> Reinterpret for P
where P: CubePrimitive,

§

fn reinterpret<From>(value: From) -> Self
where From: CubePrimitive,

Reinterpret the bits of another primitive as this primitive without conversion.
§

fn __expand_reinterpret<From>( scope: &mut Scope, value: ExpandElementTyped<From>, ) -> Self::ExpandType
where From: CubePrimitive,

Source§

impl<Borrowed> SampleBorrow<Borrowed> for Borrowed
where Borrowed: SampleUniform,

Source§

fn borrow(&self) -> &Borrowed

Immutably borrows from an owned value. See Borrow::borrow
§

impl<T> ToCompactString for T
where T: Display,

§

fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>

Fallible version of [ToCompactString::to_compact_string()] Read more
§

fn to_compact_string(&self) -> CompactString

Converts the given value to a [CompactString]. Read more
§

impl<T> ToLine for T
where T: Display,

§

fn to_line(&self) -> Line<'_>

Converts the value to a [Line].
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> ToSpan for T
where T: Display,

§

fn to_span(&self) -> Span<'_>

Converts the value to a [Span].
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T> ToText for T
where T: Display,

§

fn to_text(&self) -> Text<'_>

Converts the value to a [Text].
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

Source§

impl<T> UpperBounded for T
where T: Bounded,

Source§

fn max_value() -> T

Returns the largest finite number this type can represent
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> AnyBitPattern for T
where T: Pod,

§

impl<T> CubeLaunch for T
where T: CubeType + LaunchArg + LaunchArgExpand,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> LinalgScalar for T
where T: One<Output = T> + Add<Output = T> + Sub<Output = T> + 'static + Mul + Copy + Div<Output = T> + Zero,

§

impl<T> MaybeSendSync for T

§

impl<T> NoUninit for T
where T: Pod,

Source§

impl<T> NumAssign for T
where T: Num + NumAssignOps,

Source§

impl<T, Rhs> NumAssignOps<Rhs> for T
where T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

Source§

impl<T> NumAssignRef for T
where T: NumAssign + for<'r> NumAssignOps<&'r T>,

Source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

Source§

impl<T> NumRef for T
where T: Num + for<'r> NumOps<&'r T>,

Source§

impl<T, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSendSync for T
where T: WasmNotSend + WasmNotSync,

§

impl<T> WasmNotSync for T
where T: Sync,