pub struct bf16(/* private fields */);Expand description
A 16-bit floating point type implementing the bfloat16 format.
The bfloat16 floating point format is a truncated 16-bit version of the IEEE 754 standard
binary32, a.k.a f32. bf16 has approximately the same dynamic range as f32 by
having a lower precision than struct@f16. While struct@f16 has a precision of
11 bits, bf16 has a precision of only 8 bits.
Implementations§
Source§impl bf16
impl bf16
Sourcepub const EPSILON: bf16
pub const EPSILON: bf16
bf16
machine epsilon value
This is the difference between 1.0 and the next largest representable number.
Sourcepub const MANTISSA_DIGITS: u32 = 8u32
pub const MANTISSA_DIGITS: u32 = 8u32
Number of bf16 significant digits in base 2
Sourcepub const MAX_10_EXP: i32 = 38i32
pub const MAX_10_EXP: i32 = 38i32
Maximum possible bf16 power of 10 exponent
Sourcepub const MIN_10_EXP: i32 = -37i32
pub const MIN_10_EXP: i32 = -37i32
Minimum possible normal bf16 power of 10 exponent
Sourcepub const MIN_EXP: i32 = -125i32
pub const MIN_EXP: i32 = -125i32
One greater than the minimum possible normal bf16 power of 2 exponent
Sourcepub const MIN_POSITIVE: bf16
pub const MIN_POSITIVE: bf16
Smallest positive normal bf16 value
Sourcepub const NEG_INFINITY: bf16
pub const NEG_INFINITY: bf16
bf16 negative infinity (-∞).
Sourcepub const MIN_POSITIVE_SUBNORMAL: bf16
pub const MIN_POSITIVE_SUBNORMAL: bf16
Minimum positive subnormal bf16 value
Sourcepub const MAX_SUBNORMAL: bf16
pub const MAX_SUBNORMAL: bf16
Maximum subnormal bf16 value
Sourcepub const FRAC_1_SQRT_2: bf16
pub const FRAC_1_SQRT_2: bf16
bf16 1/√2
Sourcepub const FRAC_2_SQRT_PI: bf16
pub const FRAC_2_SQRT_PI: bf16
bf16 2/√π
Sourcepub fn from_f32(value: f32) -> bf16
pub fn from_f32(value: f32) -> bf16
Constructs a bf16 value from a 32-bit floating point value.
This operation is lossy. If the 32-bit value is too large to fit, ±∞ will result. NaN values are preserved. Subnormal values that are too tiny to be represented will result in ±0. All other values are truncated and rounded to the nearest representable value.
Sourcepub const fn from_f32_const(value: f32) -> bf16
pub const fn from_f32_const(value: f32) -> bf16
Constructs a bf16 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 too large to fit, ±∞ will result. NaN values are preserved. Subnormal values that are too tiny to be represented will result in ±0. All other values are truncated and rounded to the nearest representable value.
Sourcepub fn from_f64(value: f64) -> bf16
pub fn from_f64(value: f64) -> bf16
Constructs a bf16 value from a 64-bit floating point value.
This operation is lossy. If the 64-bit value is to large to fit, ±∞ will result. NaN values are preserved. 64-bit subnormal values are too tiny to be represented and result in ±0. Exponents that underflow the minimum exponent will result in subnormals or ±0. All other values are truncated and rounded to the nearest representable value.
Sourcepub const fn from_f64_const(value: f64) -> bf16
pub const fn from_f64_const(value: f64) -> bf16
Constructs a bf16 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, ±∞ will result. NaN values are preserved. 64-bit subnormal values are too tiny to be represented and result in ±0. Exponents that underflow the minimum exponent will result in subnormals or ±0. All other values are truncated and rounded to the nearest representable value.
Sourcepub const fn to_le_bytes(self) -> [u8; 2]
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 = bf16::from_f32(12.5).to_le_bytes();
assert_eq!(bytes, [0x48, 0x41]);Sourcepub const fn to_be_bytes(self) -> [u8; 2]
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 = bf16::from_f32(12.5).to_be_bytes();
assert_eq!(bytes, [0x41, 0x48]);Sourcepub const fn to_ne_bytes(self) -> [u8; 2]
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 = bf16::from_f32(12.5).to_ne_bytes();
assert_eq!(bytes, if cfg!(target_endian = "big") {
[0x41, 0x48]
} else {
[0x48, 0x41]
});Sourcepub const fn from_le_bytes(bytes: [u8; 2]) -> bf16
pub const fn from_le_bytes(bytes: [u8; 2]) -> bf16
Creates a floating point value from its representation as a byte array in little endian.
§Examples
let value = bf16::from_le_bytes([0x48, 0x41]);
assert_eq!(value, bf16::from_f32(12.5));Sourcepub const fn from_be_bytes(bytes: [u8; 2]) -> bf16
pub const fn from_be_bytes(bytes: [u8; 2]) -> bf16
Creates a floating point value from its representation as a byte array in big endian.
§Examples
let value = bf16::from_be_bytes([0x41, 0x48]);
assert_eq!(value, bf16::from_f32(12.5));Sourcepub const fn from_ne_bytes(bytes: [u8; 2]) -> bf16
pub const fn from_ne_bytes(bytes: [u8; 2]) -> bf16
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 = bf16::from_ne_bytes(if cfg!(target_endian = "big") {
[0x41, 0x48]
} else {
[0x48, 0x41]
});
assert_eq!(value, bf16::from_f32(12.5));Sourcepub const fn to_f32_const(self) -> f32
pub const fn to_f32_const(self) -> f32
Sourcepub const fn to_f64_const(self) -> f64
pub const fn to_f64_const(self) -> f64
Sourcepub const fn is_nan(self) -> bool
pub const fn is_nan(self) -> bool
Returns true if this value is NaN and false otherwise.
§Examples
let nan = bf16::NAN;
let f = bf16::from_f32(7.0_f32);
assert!(nan.is_nan());
assert!(!f.is_nan());Sourcepub const fn is_infinite(self) -> bool
pub const fn is_infinite(self) -> bool
Returns true if this value is ±∞ and false otherwise.
§Examples
let f = bf16::from_f32(7.0f32);
let inf = bf16::INFINITY;
let neg_inf = bf16::NEG_INFINITY;
let nan = bf16::NAN;
assert!(!f.is_infinite());
assert!(!nan.is_infinite());
assert!(inf.is_infinite());
assert!(neg_inf.is_infinite());Sourcepub const fn is_finite(self) -> bool
pub const fn is_finite(self) -> bool
Returns true if this number is neither infinite nor NaN.
§Examples
let f = bf16::from_f32(7.0f32);
let inf = bf16::INFINITY;
let neg_inf = bf16::NEG_INFINITY;
let nan = bf16::NAN;
assert!(f.is_finite());
assert!(!nan.is_finite());
assert!(!inf.is_finite());
assert!(!neg_inf.is_finite());Sourcepub const fn is_normal(self) -> bool
pub const fn is_normal(self) -> bool
Returns true if the number is neither zero, infinite, subnormal, or NaN.
§Examples
let min = bf16::MIN_POSITIVE;
let max = bf16::MAX;
let lower_than_min = bf16::from_f32(1.0e-39_f32);
let zero = bf16::from_f32(0.0_f32);
assert!(min.is_normal());
assert!(max.is_normal());
assert!(!zero.is_normal());
assert!(!bf16::NAN.is_normal());
assert!(!bf16::INFINITY.is_normal());
// Values between 0 and `min` are subnormal.
assert!(!lower_than_min.is_normal());Sourcepub const fn classify(self) -> FpCategory
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 = bf16::from_f32(12.4_f32);
let inf = bf16::INFINITY;
assert_eq!(num.classify(), FpCategory::Normal);
assert_eq!(inf.classify(), FpCategory::Infinite);Sourcepub const fn signum(self) -> bf16
pub const fn signum(self) -> bf16
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`]bf16::NEG_INFINITY NANif the number is NaN
§Examples
let f = bf16::from_f32(3.5_f32);
assert_eq!(f.signum(), bf16::from_f32(1.0));
assert_eq!(bf16::NEG_INFINITY.signum(), bf16::from_f32(-1.0));
assert!(bf16::NAN.signum().is_nan());Sourcepub const fn is_sign_positive(self) -> bool
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 = bf16::NAN;
let f = bf16::from_f32(7.0_f32);
let g = bf16::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());Sourcepub const fn is_sign_negative(self) -> bool
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 = bf16::NAN;
let f = bf16::from_f32(7.0f32);
let g = bf16::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());Sourcepub const fn copysign(self, sign: bf16) -> bf16
pub const fn copysign(self, sign: bf16) -> bf16
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 = bf16::from_f32(3.5);
assert_eq!(f.copysign(bf16::from_f32(0.42)), bf16::from_f32(3.5));
assert_eq!(f.copysign(bf16::from_f32(-0.42)), bf16::from_f32(-3.5));
assert_eq!((-f).copysign(bf16::from_f32(0.42)), bf16::from_f32(3.5));
assert_eq!((-f).copysign(bf16::from_f32(-0.42)), bf16::from_f32(-3.5));
assert!(bf16::NAN.copysign(bf16::from_f32(1.0)).is_nan());Sourcepub fn max(self, other: bf16) -> bf16
pub fn max(self, other: bf16) -> bf16
Returns the maximum of the two numbers.
If one of the arguments is NaN, then the other argument is returned.
§Examples
let x = bf16::from_f32(1.0);
let y = bf16::from_f32(2.0);
assert_eq!(x.max(y), y);Sourcepub fn min(self, other: bf16) -> bf16
pub fn min(self, other: bf16) -> bf16
Returns the minimum of the two numbers.
If one of the arguments is NaN, then the other argument is returned.
§Examples
let x = bf16::from_f32(1.0);
let y = bf16::from_f32(2.0);
assert_eq!(x.min(y), x);Sourcepub fn clamp(self, min: bf16, max: bf16) -> bf16
pub fn clamp(self, min: bf16, max: bf16) -> bf16
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!(bf16::from_f32(-3.0).clamp(bf16::from_f32(-2.0), bf16::from_f32(1.0)) == bf16::from_f32(-2.0));
assert!(bf16::from_f32(0.0).clamp(bf16::from_f32(-2.0), bf16::from_f32(1.0)) == bf16::from_f32(0.0));
assert!(bf16::from_f32(2.0).clamp(bf16::from_f32(-2.0), bf16::from_f32(1.0)) == bf16::from_f32(1.0));
assert!(bf16::NAN.clamp(bf16::from_f32(-2.0), bf16::from_f32(1.0)).is_nan());Sourcepub fn total_cmp(&self, other: &bf16) -> Ordering
pub fn total_cmp(&self, other: &bf16) -> 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 bf16. 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<bf16> = vec![];
v.push(bf16::ONE);
v.push(bf16::INFINITY);
v.push(bf16::NEG_INFINITY);
v.push(bf16::NAN);
v.push(bf16::MAX_SUBNORMAL);
v.push(-bf16::MAX_SUBNORMAL);
v.push(bf16::ZERO);
v.push(bf16::NEG_ZERO);
v.push(bf16::NEG_ONE);
v.push(bf16::MIN_POSITIVE);
v.sort_by(|a, b| a.total_cmp(&b));
assert!(v
.into_iter()
.zip(
[
bf16::NEG_INFINITY,
bf16::NEG_ONE,
-bf16::MAX_SUBNORMAL,
bf16::NEG_ZERO,
bf16::ZERO,
bf16::MAX_SUBNORMAL,
bf16::MIN_POSITIVE,
bf16::ONE,
bf16::INFINITY,
bf16::NAN
]
.iter()
)
.all(|(a, b)| a.to_bits() == b.to_bits()));Sourcepub fn serialize_as_f32<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
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, bf16 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::bf16;
#[derive(Serialize, Deserialize)]
struct MyStruct {
#[serde(serialize_with = "bf16::serialize_as_f32")]
value: bf16 // Will be serialized as f32 instead of u16
}Sourcepub fn serialize_as_string<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
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, bf16 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::bf16;
#[derive(Serialize, Deserialize)]
struct MyStruct {
#[serde(serialize_with = "bf16::serialize_as_string")]
value: bf16 // Will be serialized as a string instead of u16
}Trait Implementations§
§impl Abs for bf16
impl Abs for bf16
fn abs(x: Self) -> Self
fn __expand_abs( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
Source§impl AddAssign<&bf16> for bf16
impl AddAssign<&bf16> for bf16
Source§fn add_assign(&mut self, rhs: &bf16)
fn add_assign(&mut self, rhs: &bf16)
+= operation. Read moreSource§impl AddAssign for bf16
impl AddAssign for bf16
Source§fn add_assign(&mut self, rhs: bf16)
fn add_assign(&mut self, rhs: bf16)
+= operation. Read moreSource§impl AsPrimitive<bf16> for bf16
impl AsPrimitive<bf16> for bf16
Source§impl AsPrimitive<bf16> for f16
impl AsPrimitive<bf16> for f16
Source§impl AsPrimitive<bf16> for u32
impl AsPrimitive<bf16> for u32
Source§impl AsPrimitive<f16> for bf16
impl AsPrimitive<f16> for bf16
Source§impl AsPrimitive<f32> for bf16
impl AsPrimitive<f32> for bf16
Source§impl AsPrimitive<f64> for bf16
impl AsPrimitive<f64> for bf16
Source§impl AsPrimitive<i16> for bf16
impl AsPrimitive<i16> for bf16
Source§impl AsPrimitive<i32> for bf16
impl AsPrimitive<i32> for bf16
Source§impl AsPrimitive<i64> for bf16
impl AsPrimitive<i64> for bf16
Source§impl AsPrimitive<i8> for bf16
impl AsPrimitive<i8> for bf16
Source§impl AsPrimitive<isize> for bf16
impl AsPrimitive<isize> for bf16
Source§impl AsPrimitive<u16> for bf16
impl AsPrimitive<u16> for bf16
Source§impl AsPrimitive<u32> for bf16
impl AsPrimitive<u32> for bf16
Source§impl AsPrimitive<u64> for bf16
impl AsPrimitive<u64> for bf16
Source§impl AsPrimitive<u8> for bf16
impl AsPrimitive<u8> for bf16
Source§impl AsPrimitive<usize> for bf16
impl AsPrimitive<usize> for bf16
§impl<B> AutodiffModule<B> for bf16where
B: AutodiffBackend,
impl<B> AutodiffModule<B> for bf16where
B: AutodiffBackend,
§type InnerModule = bf16
type InnerModule = bf16
§fn valid(&self) -> <bf16 as AutodiffModule<B>>::InnerModule
fn valid(&self) -> <bf16 as AutodiffModule<B>>::InnerModule
§impl Ceil for bf16
impl Ceil for bf16
fn ceil(x: Self) -> Self
fn __expand_ceil( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl Clamp for bf16
impl Clamp for bf16
§fn clamp(input: Self, min_value: Self, max_value: Self) -> Self
fn clamp(input: Self, min_value: Self, max_value: Self) -> Self
fn __expand_clamp( scope: &mut Scope, input: Self::ExpandType, min_value: Self::ExpandType, max_value: Self::ExpandType, ) -> Self::ExpandType
§impl Cos for bf16
impl Cos for bf16
fn cos(x: Self) -> Self
fn __expand_cos( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl CubeElement for bf16
impl CubeElement for bf16
§fn from_bytes(bytes: &[u8]) -> &[bf16]
fn from_bytes(bytes: &[u8]) -> &[bf16]
§fn maximum_value() -> bf16
fn maximum_value() -> bf16
§fn minimum_value() -> bf16
fn minimum_value() -> bf16
§impl CubePrimitive for bf16
impl CubePrimitive for bf16
§fn as_type_native() -> Option<StorageType>
fn as_type_native() -> Option<StorageType>
Return the element type to use on GPU
fn from_const_value(value: ConstantScalarValue) -> bf16
§fn as_type_native_unchecked() -> StorageType
fn as_type_native_unchecked() -> StorageType
§fn size_bits_unchecked() -> usize
fn size_bits_unchecked() -> usize
fn from_expand_elem(elem: ExpandElement) -> Self::ExpandType
fn into_lit_unchecked(self) -> Self
fn supported_uses<S>(client: &ComputeClient<S>) -> EnumSet<TypeUsage>where
S: ComputeServer,
fn elem_size() -> u32
fn elem_size_bits() -> u32
fn packing_factor() -> u32
fn __expand_elem_size(scope: &Scope) -> u32
fn __expand_elem_size_bits(scope: &Scope) -> u32
fn __expand_packing_factor(scope: &Scope) -> u32
§impl CubeType for bf16
impl CubeType for bf16
type ExpandType = ExpandElementTyped<bf16>
Source§impl<'de> Deserialize<'de> for bf16
impl<'de> Deserialize<'de> for bf16
Source§fn deserialize<D>(
deserializer: D,
) -> Result<bf16, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<bf16, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Source§impl DivAssign<&bf16> for bf16
impl DivAssign<&bf16> for bf16
Source§fn div_assign(&mut self, rhs: &bf16)
fn div_assign(&mut self, rhs: &bf16)
/= operation. Read moreSource§impl DivAssign for bf16
impl DivAssign for bf16
Source§fn div_assign(&mut self, rhs: bf16)
fn div_assign(&mut self, rhs: bf16)
/= operation. Read more§impl Dot for bf16
impl Dot for bf16
fn dot(self, _rhs: Self) -> Self
fn __expand_dot( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>
§impl ElementComparison for bf16
impl ElementComparison for bf16
§impl ElementConversion for bf16
impl ElementConversion for bf16
§impl ElementLimits for bf16
impl ElementLimits for bf16
§impl ElementRandom for bf16
impl ElementRandom for bf16
§impl Erf for bf16
impl Erf for bf16
fn erf(x: Self) -> Self
fn __expand_erf( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl Exp for bf16
impl Exp for bf16
fn exp(x: Self) -> Self
fn __expand_exp( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl ExpandElementIntoMut for bf16
impl ExpandElementIntoMut for bf16
fn elem_into_mut(scope: &mut Scope, elem: ExpandElement) -> ExpandElement
Source§impl Float for bf16
impl Float for bf16
Source§fn neg_infinity() -> bf16
fn neg_infinity() -> bf16
Source§fn min_value() -> bf16
fn min_value() -> bf16
Source§fn min_positive_value() -> bf16
fn min_positive_value() -> bf16
Source§fn max_value() -> bf16
fn max_value() -> bf16
Source§fn is_infinite(self) -> bool
fn is_infinite(self) -> bool
true if this value is positive infinity or negative infinity and
false otherwise. Read moreSource§fn classify(self) -> FpCategory
fn classify(self) -> FpCategory
Source§fn ceil(self) -> bf16
fn ceil(self) -> bf16
Source§fn round(self) -> bf16
fn round(self) -> bf16
0.0. Read moreSource§fn is_sign_positive(self) -> bool
fn is_sign_positive(self) -> bool
Source§fn is_sign_negative(self) -> bool
fn is_sign_negative(self) -> bool
true if self is negative, including -0.0,
Float::neg_infinity(), and -Float::nan(). Read moreSource§fn mul_add(self, a: bf16, b: bf16) -> bf16
fn mul_add(self, a: bf16, b: bf16) -> bf16
(self * a) + b with only one rounding
error, yielding a more accurate result than an unfused multiply-add. Read moreSource§fn log(self, base: bf16) -> bf16
fn log(self, base: bf16) -> bf16
Source§fn to_degrees(self) -> bf16
fn to_degrees(self) -> bf16
Source§fn to_radians(self) -> bf16
fn to_radians(self) -> bf16
Source§fn hypot(self, other: bf16) -> bf16
fn hypot(self, other: bf16) -> bf16
x and y. Read moreSource§fn asin(self) -> bf16
fn asin(self) -> bf16
Source§fn acos(self) -> bf16
fn acos(self) -> bf16
Source§fn atan(self) -> bf16
fn atan(self) -> bf16
Source§fn exp_m1(self) -> bf16
fn exp_m1(self) -> bf16
e^(self) - 1 in a way that is accurate even if the
number is close to zero. Read moreSource§fn ln_1p(self) -> bf16
fn ln_1p(self) -> bf16
ln(1+n) (natural logarithm) more accurately than if
the operations were performed separately. Read more§impl Float for bf16
impl Float for bf16
const DIGITS: u32 = 2u32
const EPSILON: bf16 = bf16::EPSILON
const INFINITY: bf16 = bf16::INFINITY
const MANTISSA_DIGITS: u32 = 8u32
const MAX_10_EXP: i32 = 38i32
const MAX_EXP: i32 = 128i32
const MIN_10_EXP: i32 = -37i32
const MIN_EXP: i32 = -125i32
const MIN_POSITIVE: bf16 = bf16::MIN_POSITIVE
const NAN: bf16 = bf16::NAN
const NEG_INFINITY: bf16 = bf16::NEG_INFINITY
const RADIX: u32 = 2u32
fn new(val: f32) -> bf16
fn __expand_new(scope: &mut Scope, val: f32) -> Self::ExpandType
Source§impl FloatConst for bf16
impl FloatConst for bf16
Source§fn FRAC_1_SQRT_2() -> bf16
fn FRAC_1_SQRT_2() -> bf16
1.0 / sqrt(2.0).Source§fn FRAC_2_SQRT_PI() -> bf16
fn FRAC_2_SQRT_PI() -> bf16
2.0 / sqrt(π).Source§impl FloatCore for bf16
impl FloatCore for bf16
Source§fn neg_infinity() -> bf16
fn neg_infinity() -> bf16
Source§fn min_value() -> bf16
fn min_value() -> bf16
Source§fn min_positive_value() -> bf16
fn min_positive_value() -> bf16
Source§fn max_value() -> bf16
fn max_value() -> bf16
Source§fn is_infinite(self) -> bool
fn is_infinite(self) -> bool
true if the number is infinite. Read moreSource§fn is_normal(self) -> bool
fn is_normal(self) -> bool
true if the number is neither zero, infinite, subnormal or NaN. Read moreSource§fn classify(self) -> FpCategory
fn classify(self) -> FpCategory
Source§fn ceil(self) -> bf16
fn ceil(self) -> bf16
Source§fn round(self) -> bf16
fn round(self) -> bf16
0.0. Read moreSource§fn abs(self) -> bf16
fn abs(self) -> bf16
self. Returns FloatCore::nan() if the
number is FloatCore::nan(). Read moreSource§fn is_sign_positive(self) -> bool
fn is_sign_positive(self) -> bool
true if self is positive, including +0.0 and
FloatCore::infinity(), and FloatCore::nan(). Read moreSource§fn is_sign_negative(self) -> bool
fn is_sign_negative(self) -> bool
true if self is negative, including -0.0 and
FloatCore::neg_infinity(), and -FloatCore::nan(). Read moreSource§fn recip(self) -> bf16
fn recip(self) -> bf16
Source§fn to_degrees(self) -> bf16
fn to_degrees(self) -> bf16
Source§fn to_radians(self) -> bf16
fn to_radians(self) -> bf16
§impl Floor for bf16
impl Floor for bf16
fn floor(x: Self) -> Self
fn __expand_floor( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
Source§impl FromBytes for bf16where
u16: FromBytes,
impl FromBytes for bf16where
u16: FromBytes,
§fn ref_from_bytes(
source: &[u8],
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout + Immutable,
fn ref_from_bytes(
source: &[u8],
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout + Immutable,
§fn ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout + Immutable,
fn ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout + Immutable,
§fn ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: Immutable + KnownLayout,
fn ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: Immutable + KnownLayout,
&Self. Read more§fn mut_from_bytes(
source: &mut [u8],
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
fn mut_from_bytes(
source: &mut [u8],
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
§fn mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
fn mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
§fn mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
fn mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout,
§fn ref_from_bytes_with_elems(
source: &[u8],
count: usize,
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
fn ref_from_bytes_with_elems(
source: &[u8],
count: usize,
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
§fn ref_from_prefix_with_elems(
source: &[u8],
count: usize,
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
fn ref_from_prefix_with_elems(
source: &[u8],
count: usize,
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
§fn ref_from_suffix_with_elems(
source: &[u8],
count: usize,
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
fn ref_from_suffix_with_elems(
source: &[u8],
count: usize,
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, Infallible>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
§fn mut_from_bytes_with_elems(
source: &mut [u8],
count: usize,
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout<PointerMetadata = usize> + Immutable,
fn mut_from_bytes_with_elems(
source: &mut [u8],
count: usize,
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout<PointerMetadata = usize> + Immutable,
§fn mut_from_prefix_with_elems(
source: &mut [u8],
count: usize,
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout<PointerMetadata = usize>,
fn mut_from_prefix_with_elems(
source: &mut [u8],
count: usize,
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout<PointerMetadata = usize>,
§fn mut_from_suffix_with_elems(
source: &mut [u8],
count: usize,
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout<PointerMetadata = usize>,
fn mut_from_suffix_with_elems(
source: &mut [u8],
count: usize,
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, Infallible>>where
Self: IntoBytes + KnownLayout<PointerMetadata = usize>,
Source§impl FromBytes for bf16
impl FromBytes for bf16
type Bytes = [u8; 2]
Source§fn from_be_bytes(bytes: &<bf16 as FromBytes>::Bytes) -> bf16
fn from_be_bytes(bytes: &<bf16 as FromBytes>::Bytes) -> bf16
Source§impl FromPrimitive for bf16
impl FromPrimitive for bf16
Source§fn from_i64(n: i64) -> Option<bf16>
fn from_i64(n: i64) -> Option<bf16>
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<bf16>
fn from_u64(n: u64) -> Option<bf16>
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<bf16>
fn from_i8(n: i8) -> Option<bf16>
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<bf16>
fn from_u8(n: u8) -> Option<bf16>
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<bf16>
fn from_i16(n: i16) -> Option<bf16>
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<bf16>
fn from_u16(n: u16) -> Option<bf16>
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<bf16>
fn from_i32(n: i32) -> Option<bf16>
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<bf16>
fn from_u32(n: u32) -> Option<bf16>
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<bf16>
fn from_f32(n: f32) -> Option<bf16>
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<bf16>
fn from_f64(n: f64) -> Option<bf16>
f64 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§fn from_isize(n: isize) -> Option<Self>
fn from_isize(n: isize) -> Option<Self>
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>
fn from_i128(n: i128) -> Option<Self>
i128 to return an optional value of this type. If the
value cannot be represented by this type, then None is returned. Read moreSource§fn from_usize(n: usize) -> Option<Self>
fn from_usize(n: usize) -> Option<Self>
usize to return an optional value of this type. If the
value cannot be represented by this type, then None is returned.Source§impl IntoBytes for bf16where
u16: IntoBytes,
impl IntoBytes for bf16where
u16: IntoBytes,
§fn as_mut_bytes(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
fn as_mut_bytes(&mut self) -> &mut [u8] ⓘwhere
Self: FromBytes,
§fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
fn write_to(&self, dst: &mut [u8]) -> Result<(), SizeError<&Self, &mut [u8]>>where
Self: Immutable,
§impl IntoRuntime for bf16
impl IntoRuntime for bf16
fn __expand_runtime_method(self, scope: &mut Scope) -> ExpandElementTyped<bf16>
fn runtime(self) -> Self
Source§impl KnownLayout for bf16
impl KnownLayout for bf16
Source§type PointerMetadata = ()
type PointerMetadata = ()
Self. Read more§fn size_for_metadata(meta: Self::PointerMetadata) -> Option<usize>
fn size_for_metadata(meta: Self::PointerMetadata) -> Option<usize>
Self with the given pointer
metadata. Read more§impl Log for bf16
impl Log for bf16
fn log(x: Self) -> Self
fn __expand_log( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl Log1p for bf16
impl Log1p for bf16
fn log1p(x: Self) -> Self
fn __expand_log1p( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl Magnitude for bf16
impl Magnitude for bf16
fn magnitude(x: Self) -> Self
fn __expand_magnitude( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl Max for bf16
impl Max for bf16
fn max(self, _rhs: Self) -> Self
fn __expand_max( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>
§impl Min for bf16
impl Min for bf16
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 bf16where
B: Backend,
impl<B> Module<B> for bf16where
B: Backend,
§type Record = ConstantRecord
type Record = ConstantRecord
§fn visit<V>(&self, _visitor: &mut V)where
V: ModuleVisitor<B>,
fn visit<V>(&self, _visitor: &mut V)where
V: ModuleVisitor<B>,
§fn map<M>(self, _mapper: &mut M) -> bf16where
M: ModuleMapper<B>,
fn map<M>(self, _mapper: &mut M) -> bf16where
M: ModuleMapper<B>,
§fn load_record(self, _record: <bf16 as Module<B>>::Record) -> bf16
fn load_record(self, _record: <bf16 as Module<B>>::Record) -> bf16
§fn into_record(self) -> <bf16 as Module<B>>::Record
fn into_record(self) -> <bf16 as Module<B>>::Record
§fn to_device(self, _: &<B as Backend>::Device) -> bf16
fn to_device(self, _: &<B as Backend>::Device) -> bf16
§fn fork(self, _: &<B as Backend>::Device) -> bf16
fn fork(self, _: &<B as Backend>::Device) -> bf16
§fn collect_devices(
&self,
devices: Vec<<B as Backend>::Device>,
) -> Vec<<B as Backend>::Device>
fn collect_devices( &self, devices: Vec<<B as Backend>::Device>, ) -> Vec<<B as Backend>::Device>
§fn devices(&self) -> Vec<<B as Backend>::Device>
fn devices(&self) -> Vec<<B as Backend>::Device>
§fn num_params(&self) -> usize
fn num_params(&self) -> usize
§fn save_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
) -> Result<(), RecorderError>
fn save_file<FR, PB>( self, file_path: PB, recorder: &FR, ) -> Result<(), RecorderError>
§fn load_file<FR, PB>(
self,
file_path: PB,
recorder: &FR,
device: &<B as Backend>::Device,
) -> Result<Self, RecorderError>
fn load_file<FR, PB>( self, file_path: PB, recorder: &FR, device: &<B as Backend>::Device, ) -> Result<Self, RecorderError>
§fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
fn quantize_weights(self, quantizer: &mut Quantizer) -> Self
§impl ModuleDisplay for bf16
impl ModuleDisplay for bf16
§fn format(&self, passed_settings: DisplaySettings) -> String
fn format(&self, passed_settings: DisplaySettings) -> String
§fn custom_settings(&self) -> Option<DisplaySettings>
fn custom_settings(&self) -> Option<DisplaySettings>
§impl ModuleDisplayDefault for bf16
impl ModuleDisplayDefault for bf16
Source§impl MulAssign<&bf16> for bf16
impl MulAssign<&bf16> for bf16
Source§fn mul_assign(&mut self, rhs: &bf16)
fn mul_assign(&mut self, rhs: &bf16)
*= operation. Read moreSource§impl MulAssign for bf16
impl MulAssign for bf16
Source§fn mul_assign(&mut self, rhs: bf16)
fn mul_assign(&mut self, rhs: bf16)
*= operation. Read more§impl Normalize for bf16
impl Normalize for bf16
fn normalize(x: Self) -> Self
fn __expand_normalize( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
Source§impl Num for bf16
impl Num for bf16
type FromStrRadixErr = <f32 as Num>::FromStrRadixErr
§impl Numeric for bf16
impl Numeric for bf16
fn min_value() -> bf16
fn max_value() -> bf16
fn __expand_min_value(scope: &mut Scope) -> Self::ExpandType
fn __expand_max_value(scope: &mut Scope) -> Self::ExpandType
fn from_vec<const D: usize>(_vec: [u32; D]) -> Self
fn __expand_from_int( scope: &mut Scope, val: ExpandElementTyped<i64>, ) -> Self::ExpandType
Source§impl PartialOrd for bf16
impl PartialOrd for bf16
§impl Powf for bf16
impl Powf for bf16
fn powf(self, _rhs: Self) -> Self
fn __expand_powf( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>
§impl Powi<i32> for bf16
impl Powi<i32> for bf16
fn powi(self, _rhs: Rhs) -> Self
fn __expand_powi( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Rhs>, ) -> ExpandElementTyped<Self>
§impl Recip for bf16
impl Recip for bf16
fn recip(x: Self) -> Self
fn __expand_recip( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl<B> Record<B> for bf16where
B: Backend,
impl<B> Record<B> for bf16where
B: Backend,
Source§impl RemAssign<&bf16> for bf16
impl RemAssign<&bf16> for bf16
Source§fn rem_assign(&mut self, rhs: &bf16)
fn rem_assign(&mut self, rhs: &bf16)
%= operation. Read moreSource§impl RemAssign for bf16
impl RemAssign for bf16
Source§fn rem_assign(&mut self, rhs: bf16)
fn rem_assign(&mut self, rhs: bf16)
%= operation. Read more§impl Remainder for bf16
impl Remainder for bf16
fn rem(self, _rhs: Self) -> Self
fn __expand_rem( scope: &mut Scope, lhs: ExpandElementTyped<Self>, rhs: ExpandElementTyped<Self>, ) -> ExpandElementTyped<Self>
§impl Round for bf16
impl Round for bf16
fn round(x: Self) -> Self
fn __expand_round( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
Source§impl SampleUniform for bf16
impl SampleUniform for bf16
§impl Scalar for bf16
impl Scalar for bf16
type Mask<S: Simd> = <S as Simd>::Mask16
fn lanes<S>() -> usizewhere
S: Simd,
§unsafe fn vload<S>(ptr: *const bf16) -> Vector<S, bf16>where
S: Simd,
unsafe fn vload<S>(ptr: *const bf16) -> Vector<S, bf16>where
S: Simd,
§unsafe fn vload_unaligned<S>(ptr: *const bf16) -> Vector<S, bf16>where
S: Simd,
unsafe fn vload_unaligned<S>(ptr: *const bf16) -> Vector<S, bf16>where
S: Simd,
§unsafe fn vload_low<S>(ptr: *const bf16) -> Vector<S, bf16>where
S: Simd,
unsafe fn vload_low<S>(ptr: *const bf16) -> Vector<S, bf16>where
S: Simd,
§unsafe fn vload_high<S>(ptr: *const bf16) -> Vector<S, bf16>where
S: Simd,
unsafe fn vload_high<S>(ptr: *const bf16) -> Vector<S, bf16>where
S: Simd,
§unsafe fn vstore<S>(ptr: *mut bf16, value: Vector<S, bf16>)where
S: Simd,
unsafe fn vstore<S>(ptr: *mut bf16, value: Vector<S, bf16>)where
S: Simd,
§unsafe fn vstore_unaligned<S>(ptr: *mut bf16, value: Vector<S, bf16>)where
S: Simd,
unsafe fn vstore_unaligned<S>(ptr: *mut bf16, value: Vector<S, bf16>)where
S: Simd,
§unsafe fn vstore_low<S>(ptr: *mut bf16, value: Vector<S, bf16>)where
S: Simd,
unsafe fn vstore_low<S>(ptr: *mut bf16, value: Vector<S, bf16>)where
S: Simd,
§unsafe fn vstore_high<S>(ptr: *mut bf16, value: Vector<S, bf16>)where
S: Simd,
unsafe fn vstore_high<S>(ptr: *mut bf16, value: Vector<S, bf16>)where
S: Simd,
§unsafe fn mask_store_as_bool<S>(out: *mut bool, mask: <bf16 as Scalar>::Mask<S>)where
S: Simd,
unsafe fn mask_store_as_bool<S>(out: *mut bool, mask: <bf16 as Scalar>::Mask<S>)where
S: Simd,
§fn mask_from_bools<S>(bools: &[bool]) -> <bf16 as Scalar>::Mask<S>where
S: Simd,
fn mask_from_bools<S>(bools: &[bool]) -> <bf16 as Scalar>::Mask<S>where
S: Simd,
lanes.§impl ScalarArgSettings for bf16
impl ScalarArgSettings for bf16
§fn register<R>(&self, settings: &mut KernelLauncher<R>)where
R: Runtime,
fn register<R>(&self, settings: &mut KernelLauncher<R>)where
R: Runtime,
fn expand_scalar( _: &ScalarCompilationArg<Self>, builder: &mut KernelBuilder, ) -> ExpandElementTyped<Self>
Source§impl Serialize for bf16
impl Serialize for bf16
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Source§impl Signed for bf16
impl Signed for bf16
Source§fn is_positive(&self) -> bool
fn is_positive(&self) -> bool
Source§fn is_negative(&self) -> bool
fn is_negative(&self) -> bool
§impl Sin for bf16
impl Sin for bf16
fn sin(x: Self) -> Self
fn __expand_sin( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
§impl Sqrt for bf16
impl Sqrt for bf16
fn sqrt(x: Self) -> Self
fn __expand_sqrt( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
Source§impl SubAssign<&bf16> for bf16
impl SubAssign<&bf16> for bf16
Source§fn sub_assign(&mut self, rhs: &bf16)
fn sub_assign(&mut self, rhs: &bf16)
-= operation. Read moreSource§impl SubAssign for bf16
impl SubAssign for bf16
Source§fn sub_assign(&mut self, rhs: bf16)
fn sub_assign(&mut self, rhs: bf16)
-= operation. Read more§impl Tanh for bf16
impl Tanh for bf16
fn tanh(x: Self) -> Self
fn __expand_tanh( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
Source§impl ToBytes for bf16
impl ToBytes for bf16
type Bytes = [u8; 2]
Source§fn to_be_bytes(&self) -> <bf16 as ToBytes>::Bytes
fn to_be_bytes(&self) -> <bf16 as ToBytes>::Bytes
§impl ToElement for bf16
impl ToElement for bf16
§fn to_bf16(&self) -> bf16
fn to_bf16(&self) -> bf16
self to an bf16. Overflows may map to positive
or negative infinity.§fn to_f32(&self) -> f32
fn to_f32(&self) -> f32
self to an f32. Overflows may map to positive
or negative infinity.Source§impl ToPrimitive for bf16
impl ToPrimitive for bf16
Source§fn to_i64(&self) -> Option<i64>
fn to_i64(&self) -> Option<i64>
self to an i64. If the value cannot be
represented by an i64, then None is returned.Source§fn to_u64(&self) -> Option<u64>
fn to_u64(&self) -> Option<u64>
self to a u64. If the value cannot be
represented by a u64, then None is returned.Source§fn to_i8(&self) -> Option<i8>
fn to_i8(&self) -> Option<i8>
self to an i8. If the value cannot be
represented by an i8, then None is returned.Source§fn to_u8(&self) -> Option<u8>
fn to_u8(&self) -> Option<u8>
self to a u8. If the value cannot be
represented by a u8, then None is returned.Source§fn to_i16(&self) -> Option<i16>
fn to_i16(&self) -> Option<i16>
self to an i16. If the value cannot be
represented by an i16, then None is returned.Source§fn to_u16(&self) -> Option<u16>
fn to_u16(&self) -> Option<u16>
self to a u16. If the value cannot be
represented by a u16, then None is returned.Source§fn to_i32(&self) -> Option<i32>
fn to_i32(&self) -> Option<i32>
self to an i32. If the value cannot be
represented by an i32, then None is returned.Source§fn to_u32(&self) -> Option<u32>
fn to_u32(&self) -> Option<u32>
self to a u32. If the value cannot be
represented by a u32, then None is returned.Source§fn to_f32(&self) -> Option<f32>
fn to_f32(&self) -> Option<f32>
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>
fn to_f64(&self) -> Option<f64>
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 moreSource§fn to_isize(&self) -> Option<isize>
fn to_isize(&self) -> Option<isize>
self to an isize. If the value cannot be
represented by an isize, then None is returned.Source§fn to_i128(&self) -> Option<i128>
fn to_i128(&self) -> Option<i128>
self to an i128. If the value cannot be
represented by an i128 (i64 under the default implementation), then
None is returned. Read more§impl Trunc for bf16
impl Trunc for bf16
fn trunc(x: Self) -> Self
fn __expand_trunc( scope: &mut Scope, x: Self::ExpandType, ) -> ExpandElementTyped<Self>
Source§impl TryFromBytes for bf16where
u16: TryFromBytes,
impl TryFromBytes for bf16where
u16: TryFromBytes,
§fn try_ref_from_bytes(
source: &[u8],
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
fn try_ref_from_bytes(
source: &[u8],
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
§fn try_ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
fn try_ref_from_prefix(
source: &[u8],
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
§fn try_ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
fn try_ref_from_suffix(
source: &[u8],
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout + Immutable,
§fn try_mut_from_bytes(
bytes: &mut [u8],
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout + IntoBytes,
fn try_mut_from_bytes(
bytes: &mut [u8],
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout + IntoBytes,
§fn try_mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout + IntoBytes,
fn try_mut_from_prefix(
source: &mut [u8],
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout + IntoBytes,
§fn try_mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout + IntoBytes,
fn try_mut_from_suffix(
source: &mut [u8],
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout + IntoBytes,
§fn try_ref_from_bytes_with_elems(
source: &[u8],
count: usize,
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
fn try_ref_from_bytes_with_elems(
source: &[u8],
count: usize,
) -> Result<&Self, ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
§fn try_ref_from_prefix_with_elems(
source: &[u8],
count: usize,
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
fn try_ref_from_prefix_with_elems(
source: &[u8],
count: usize,
) -> Result<(&Self, &[u8]), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
source as a &Self with
a DST length equal to count. Read more§fn try_ref_from_suffix_with_elems(
source: &[u8],
count: usize,
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
fn try_ref_from_suffix_with_elems(
source: &[u8],
count: usize,
) -> Result<(&[u8], &Self), ConvertError<AlignmentError<&[u8], Self>, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + Immutable,
source as a &Self with
a DST length equal to count. Read more§fn try_mut_from_bytes_with_elems(
source: &mut [u8],
count: usize,
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + IntoBytes,
fn try_mut_from_bytes_with_elems(
source: &mut [u8],
count: usize,
) -> Result<&mut Self, ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + IntoBytes,
§fn try_mut_from_prefix_with_elems(
source: &mut [u8],
count: usize,
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + IntoBytes,
fn try_mut_from_prefix_with_elems(
source: &mut [u8],
count: usize,
) -> Result<(&mut Self, &mut [u8]), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + IntoBytes,
source as a &mut Self
with a DST length equal to count. Read more§fn try_mut_from_suffix_with_elems(
source: &mut [u8],
count: usize,
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + IntoBytes,
fn try_mut_from_suffix_with_elems(
source: &mut [u8],
count: usize,
) -> Result<(&mut [u8], &mut Self), ConvertError<AlignmentError<&mut [u8], Self>, SizeError<&mut [u8], Self>, ValidityError<&mut [u8], Self>>>where
Self: KnownLayout<PointerMetadata = usize> + IntoBytes,
source as a &mut Self
with a DST length equal to count. Read more§fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_bytes(
source: &[u8],
) -> Result<Self, ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
§fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_prefix(
source: &[u8],
) -> Result<(Self, &[u8]), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
§fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
fn try_read_from_suffix(
source: &[u8],
) -> Result<(&[u8], Self), ConvertError<Infallible, SizeError<&[u8], Self>, ValidityError<&[u8], Self>>>where
Self: Sized,
impl Copy for bf16
impl Immutable for bf16where
u16: Immutable,
impl Pod for bf16
Auto Trait Implementations§
impl Freeze for bf16
impl RefUnwindSafe for bf16
impl Send for bf16
impl Sync for bf16
impl Unpin for bf16
impl UnwindSafe for bf16
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<P> Cast for Pwhere
P: CubePrimitive,
impl<P> Cast for Pwhere
P: CubePrimitive,
fn cast_from<From>(_value: From) -> Pwhere
From: CubePrimitive,
fn __expand_cast_from<From>(
scope: &mut Scope,
value: ExpandElementTyped<From>,
) -> Self::ExpandTypewhere
From: CubePrimitive,
§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
§type Bits = T
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
fn is_valid_bit_pattern(_bits: &T) -> bool
bits
as &Self.Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ComplexFloat for Twhere
T: Float + FloatConst,
impl<T> ComplexFloat for Twhere
T: Float + FloatConst,
Source§fn re(self) -> <T as ComplexFloat>::Real
fn re(self) -> <T as ComplexFloat>::Real
Source§fn im(self) -> <T as ComplexFloat>::Real
fn im(self) -> <T as ComplexFloat>::Real
Source§fn l1_norm(&self) -> <T as ComplexFloat>::Real
fn l1_norm(&self) -> <T as ComplexFloat>::Real
|re| + |im| – the Manhattan distance from the origin.Source§fn arg(self) -> <T as ComplexFloat>::Real
fn arg(self) -> <T as ComplexFloat>::Real
Source§fn powc(
self,
exp: Complex<<T as ComplexFloat>::Real>,
) -> Complex<<T as ComplexFloat>::Real>
fn powc( self, exp: Complex<<T as ComplexFloat>::Real>, ) -> Complex<<T as ComplexFloat>::Real>
self to a complex power.Source§fn expf(self, base: <T as ComplexFloat>::Real) -> T
fn expf(self, base: <T as ComplexFloat>::Real) -> T
base^(self).Source§fn is_infinite(self) -> bool
fn is_infinite(self) -> bool
true if this value is positive infinity or negative infinity and
false otherwise.Source§fn recip(self) -> T
fn recip(self) -> T
1/x. See also Complex::finv.Source§fn log(self, base: T) -> T
fn log(self, base: T) -> T
Source§fn asin(self) -> T
fn asin(self) -> T
Source§fn acos(self) -> T
fn acos(self) -> T
Source§fn atan(self) -> T
fn atan(self) -> T
Source§fn abs(self) -> T
fn abs(self) -> T
§impl<P> CubeDebug for Pwhere
P: CubePrimitive,
impl<P> CubeDebug for Pwhere
P: CubePrimitive,
§fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
fn set_debug_name(&self, scope: &mut Scope, name: &'static str)
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 Twhere
T: ScalarArgSettings,
impl<T> LaunchArg for Twhere
T: ScalarArgSettings,
§type RuntimeArg<'a, R: Runtime> = ScalarArg<T>
type RuntimeArg<'a, R: Runtime> = ScalarArg<T>
§type CompilationArg = ScalarCompilationArg<T>
type CompilationArg = ScalarCompilationArg<T>
fn compilation_arg<'a, R>(
_runtime_arg: &'a <T as LaunchArg>::RuntimeArg<'a, R>,
) -> <T as LaunchArg>::CompilationArgwhere
R: Runtime,
§fn expand(
arg: &ScalarCompilationArg<T>,
builder: &mut KernelBuilder,
) -> ExpandElementTyped<T>
fn expand( arg: &ScalarCompilationArg<T>, builder: &mut KernelBuilder, ) -> ExpandElementTyped<T>
§fn expand_output(
arg: &Self::CompilationArg,
builder: &mut KernelBuilder,
) -> Self::ExpandType
fn expand_output( arg: &Self::CompilationArg, builder: &mut KernelBuilder, ) -> Self::ExpandType
Source§impl<T> LowerBounded for Twhere
T: Bounded,
impl<T> LowerBounded for Twhere
T: Bounded,
§impl<MP> MatmulSpec for MPwhere
MP: MatmulPrecision,
impl<MP> MatmulSpec for MPwhere
MP: MatmulPrecision,
§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> Real for Twhere
T: Float,
impl<T> Real for Twhere
T: Float,
Source§fn min_positive_value() -> T
fn min_positive_value() -> T
Source§fn round(self) -> T
fn round(self) -> T
0.0. Read moreSource§fn is_sign_positive(self) -> bool
fn is_sign_positive(self) -> bool
true if self is positive, including +0.0,
Float::infinity(), and with newer versions of Rust f64::NAN. Read moreSource§fn is_sign_negative(self) -> bool
fn is_sign_negative(self) -> bool
true if self is negative, including -0.0,
Float::neg_infinity(), and with newer versions of Rust -f64::NAN. Read moreSource§fn mul_add(self, a: T, b: T) -> T
fn mul_add(self, a: T, b: T) -> T
(self * a) + b with only one rounding
error, yielding a more accurate result than an unfused multiply-add. Read moreSource§fn log(self, base: T) -> T
fn log(self, base: T) -> T
Source§fn to_degrees(self) -> T
fn to_degrees(self) -> T
Source§fn to_radians(self) -> T
fn to_radians(self) -> T
Source§fn hypot(self, other: T) -> T
fn hypot(self, other: T) -> T
x and y. Read moreSource§fn asin(self) -> T
fn asin(self) -> T
Source§fn acos(self) -> T
fn acos(self) -> T
Source§fn atan(self) -> T
fn atan(self) -> T
Source§fn exp_m1(self) -> T
fn exp_m1(self) -> T
e^(self) - 1 in a way that is accurate even if the
number is close to zero. Read more§impl<P> Reinterpret for Pwhere
P: CubePrimitive,
impl<P> Reinterpret for Pwhere
P: CubePrimitive,
§fn reinterpret<From>(value: From) -> Selfwhere
From: CubePrimitive,
fn reinterpret<From>(value: From) -> Selfwhere
From: CubePrimitive,
fn __expand_reinterpret<From>(
scope: &mut Scope,
value: ExpandElementTyped<From>,
) -> Self::ExpandTypewhere
From: CubePrimitive,
Source§impl<Borrowed> SampleBorrow<Borrowed> for Borrowedwhere
Borrowed: SampleUniform,
impl<Borrowed> SampleBorrow<Borrowed> for Borrowedwhere
Borrowed: SampleUniform,
Source§fn borrow(&self) -> &Borrowed
fn borrow(&self) -> &Borrowed
Borrow::borrow§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
ToCompactString::to_compact_string()] Read more§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
CompactString]. Read more