pub struct Log10Operation<'c> { /* private fields */ }
Expand description
A log10
operation. Base-10 logarithm of the specified value.
Computes the base-10 logarithm of the given value. It takes one operand of floating point type (i.e., scalar, tensor or vector) and returns one result of the same type.
Example:
// Scalar log10 operation.
%y = math.log10 %x : f64
Implementations§
source§impl<'c> Log10Operation<'c>
impl<'c> Log10Operation<'c>
sourcepub fn as_operation(&self) -> &Operation<'c>
pub fn as_operation(&self) -> &Operation<'c>
Returns a generic operation.
sourcepub fn builder(
context: &'c Context,
location: Location<'c>
) -> Log10OperationBuilder<'c, Unset>
pub fn builder( context: &'c Context, location: Location<'c> ) -> Log10OperationBuilder<'c, Unset>
Creates a builder.
pub fn result(&self) -> Result<OperationResult<'c, '_>, Error>
pub fn operand(&self) -> Result<Value<'c, '_>, Error>
pub fn fastmath(&self) -> Result<Attribute<'c>, Error>
pub fn set_fastmath(&mut self, value: Attribute<'c>)
Trait Implementations§
source§impl<'c> From<Log10Operation<'c>> for Operation<'c>
impl<'c> From<Log10Operation<'c>> for Operation<'c>
source§fn from(operation: Log10Operation<'c>) -> Self
fn from(operation: Log10Operation<'c>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<'c> RefUnwindSafe for Log10Operation<'c>
impl<'c> !Send for Log10Operation<'c>
impl<'c> !Sync for Log10Operation<'c>
impl<'c> Unpin for Log10Operation<'c>
impl<'c> UnwindSafe for Log10Operation<'c>
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
Mutably borrows from an owned value. Read more