[][src]Struct tensorflow_proto::xla::TriangularSolveOptions

pub struct TriangularSolveOptions {
    pub left_side: bool,
    pub lower: bool,
    pub unit_diagonal: bool,
    pub transpose_a: i32,
}

Fields

left_side: bool

If true, solves ax = b. If false, solves xa = b.

lower: bool

If true, 'a' is lower triangular. If false, 'a' is upper triangular.

unit_diagonal: bool

If true, the diagonal elements of 'a' are assumed to be 1 and not accessed.

transpose_a: i32

Implementations

impl TriangularSolveOptions[src]

pub fn transpose_a(&self) -> Transpose[src]

Returns the enum value of transpose_a, or the default if the field is set to an invalid enum value.

pub fn set_transpose_a(&mut self, value: Transpose)[src]

Sets transpose_a to the provided enum value.

Trait Implementations

impl Clone for TriangularSolveOptions[src]

impl Debug for TriangularSolveOptions[src]

impl Default for TriangularSolveOptions[src]

impl Message for TriangularSolveOptions[src]

impl PartialEq<TriangularSolveOptions> for TriangularSolveOptions[src]

impl StructuralPartialEq for TriangularSolveOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.