Skip to main content

Flex

Struct Flex 

Source
pub struct Flex {}
Available on default_backend or crate feature flex only.
Expand description

The Flex backend, a fast, portable CPU backend for Burn.

The E and I type parameters exist purely to match the shape of other Burn backends (e.g. NdArray<E, I, Q>) so Flex slots into burn-dispatch’s generic dispatch macros. The body of Flex uses runtime DType dispatch, so both parameters are phantom and unused at runtime.

§Limitations of the phantom generics

The Backend impl is provided only for the default instantiation Flex<f32, i32>. Writing Flex (with no arguments) resolves to the default and works exactly as before. Writing Flex<f64, i64> or any other non-default combination is a valid Rust type but will not satisfy trait bounds requiring Backend, producing errors like:

the trait bound `Flex<f64, i64>: Backend` is not satisfied

This is a deliberate compromise for the initial migration: making Flex generic over element types at the trait-impl level is a follow-up that would require rewriting all impl FooOps<Flex> for Flex blocks plus internal Flex::method() calls (tracked in #4762). Until then, treat the generic parameters as opaque shape placeholders; real element-type selection happens at runtime via DType.

The bound is locked in by a compile-fail doctest so that if someone later makes the Backend impl generic over E/I, this documentation gets flagged as out of date:

use burn_backend::Backend;
use burn_flex::Flex;
fn requires_backend<B: Backend>() {}
requires_backend::<Flex<f64, i64>>();

Trait Implementations§

Source§

impl ActivationOps<Flex> for Flex

Source§

fn relu( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the ReLU activation function. Read more
Source§

fn relu_backward( output: <Flex as BackendTypes>::FloatTensorPrimitive, grad: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the ReLU activation function backward. Read more
Source§

fn leaky_relu( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, negative_slope: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the LeakyReLU activation function. Read more
Source§

fn prelu( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, alpha: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the PReLu activation function. Read more
Source§

fn gelu( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the Gelu activation function. Read more
Source§

fn gelu_backward( x: <Flex as BackendTypes>::FloatTensorPrimitive, grad: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the Gelu activation function backward. Read more
Source§

fn sigmoid( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the Sigmoid activation function. Read more
Source§

fn sigmoid_backward( output: <Flex as BackendTypes>::FloatTensorPrimitive, grad: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the Sigmoid activation function backward. Read more
Source§

fn hard_sigmoid( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, alpha: Scalar, beta: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the hard Sigmoid activation function. Read more
Source§

fn log_sigmoid( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the LogSigmoid activation function. Read more
Source§

fn log_sigmoid_backward( x: <Flex as BackendTypes>::FloatTensorPrimitive, grad: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the LogSigmoid activation function backward. Read more
Source§

fn softmax( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies the softmax function along the given dimension. Read more
Source§

fn log_softmax( tensor: <B as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <B as BackendTypes>::FloatTensorPrimitive

Applies the log-softmax function along the given dimension. Read more
Source§

fn softmin( tensor: <B as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <B as BackendTypes>::FloatTensorPrimitive

Applies the softmin function along the given dimension. Read more
Source§

impl Backend for Flex

Source§

fn name(_device: &<Flex as BackendTypes>::Device) -> String

Name of the backend.
Source§

fn seed(_device: &<Flex as BackendTypes>::Device, seed: u64)

Seeds the backend on the specified device. Read more
Source§

fn device_count(_type_id: u16) -> usize

Returns the number of devices available on this backend. device is a reference device used to determine the underlying backend that should be queried. A CUDA device will return all devices available to CUDA, a Vulkan device will return all devices available to Vulkan, etc.
Source§

fn dtype_usage( _device: &<Flex as BackendTypes>::Device, dtype: DType, ) -> EnumSet<DTypeUsage>

Returns the DTypeUsageSet for the given DType on the specified device.
Source§

fn flush(_device: &<Flex as BackendTypes>::Device)

Flush any pending operation of the backend.
Source§

fn ad_enabled(_device: &Self::Device) -> bool

If autodiff is enabled.
Source§

fn memory_persistent_allocations<Output, Input, Func>( device: &Self::Device, input: Input, func: Func, ) -> Output
where Output: Send, Input: Send, Func: Fn(Input) -> Output + Send,

Sets the current allocation mode to persistent.
Source§

fn memory_cleanup(device: &Self::Device)

Manually triggers a memory cleanup on the given device.
Source§

fn sync(_device: &Self::Device) -> Result<(), ExecutionError>

Sync the backend, ensure that all computation are finished.
Source§

fn graph_prepare(_device: &Self::Device) -> Result<(), ExecutionError>

Prepare device for an upcoming graph capture: route allocations into a stable pool so every buffer allocated before graph_stop_capture can be pinned. Call before the warmup run. No-op by default. Read more
Source§

fn graph_start_capture(_device: &Self::Device) -> Result<(), ExecutionError>

Begin recording launches on device into a graph (see graph_stop_capture). Errors on backends without hardware graph support, so callers fall back to re-running.
Source§

fn graph_stop_capture( _device: &Self::Device, ) -> Result<Self::GraphPrimitive, ExecutionError>

Stop recording and return the captured graph, ready to graph_replay.
Source§

unsafe fn graph_replay( _device: &Self::Device, _graph: &Self::GraphPrimitive, ) -> Result<(), ExecutionError>

Replay a captured graph — one dispatch re-running the recorded launches against their original buffers. Read more
Source§

fn staging<'a, Iter>(_data: Iter, _device: &Self::Device)
where Iter: Iterator<Item = &'a mut TensorData>,

Marks the given data as being used as a staging buffer for transfer between CPU and accelerators like GPUs. Read more
Source§

fn supports_dtype(device: &Self::Device, dtype: DType) -> bool

Whether the type is fully supported by the specified device for general operations. Read more
Source§

impl BackendIr for Flex

Source§

impl BackendTypes for Flex

Source§

type Device = FlexDevice

Device type.
Source§

type FloatTensorPrimitive = FlexTensor

Tensor primitive to be used for all float operations.
Source§

type IntTensorPrimitive = FlexTensor

Tensor primitive to be used for all int operations.
Source§

type BoolTensorPrimitive = FlexTensor

Tensor primitive to be used for all bool operations.
Source§

type QuantizedTensorPrimitive = FlexQTensor

Tensor primitive to be used for all quantized operations.
Source§

type GraphPrimitive = GraphUnsupported

Captured graph primitive returned by Backend::graph_stop_capture and consumed by Backend::graph_replay: a backend-owned recording of a launch sequence that replays as a single dispatch. Read more
Source§

impl BoolTensorOps<Flex> for Flex

Source§

fn bool_from_data( data: TensorData, _device: &<Flex as BackendTypes>::Device, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Creates a tensor from the data structure. Read more
Source§

async fn bool_into_data( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> Result<TensorData, ExecutionError>

Converts the tensor to a data structure. Read more
Source§

fn bool_to_device( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, _device: &<Flex as BackendTypes>::Device, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Moves the tensor to the device.
Source§

fn bool_cat( tensors: Vec<<Flex as BackendTypes>::BoolTensorPrimitive>, dim: usize, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Concatenates the tensors along the given dimension. Read more
Source§

fn bool_reshape( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, shape: Shape, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Reshapes the tensor. Read more
Source§

fn bool_slice( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, slices: &[Slice], ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Gets the values from the tensor for the given ranges. Read more
Source§

fn bool_empty( shape: Shape, _device: &<Flex as BackendTypes>::Device, dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Creates a new bool tensor. Read more
Source§

fn bool_slice_assign( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, slices: &[Slice], value: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Sets the values in the tensor for the given ranges. Read more
Source§

fn bool_into_int( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, out_dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Converts bool tensor to int tensor. Read more
Source§

fn bool_into_float( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, out_dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Converts bool tensor to float tensor. Read more
Source§

fn bool_swap_dims( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, dim1: usize, dim2: usize, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Swaps two dimensions of a bool tensor. Read more
Source§

fn bool_permute( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, axes: &[usize], ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Permutes the dimensions of a tensor. Read more
Source§

fn bool_flip( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, axes: &[usize], ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Reverse the order of elements in a tensor along the given axes. Read more
Source§

fn bool_equal( lhs: <Flex as BackendTypes>::BoolTensorPrimitive, rhs: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Equates the two tensors. Read more
Source§

fn bool_not( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Inverses boolean values. Read more
Source§

fn bool_and( lhs: <Flex as BackendTypes>::BoolTensorPrimitive, rhs: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Executes the logical and (&&) operation on two boolean tensors. Read more
Source§

fn bool_or( lhs: <Flex as BackendTypes>::BoolTensorPrimitive, rhs: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Executes the logical or (||) operation on two boolean tensors. Read more
Source§

fn bool_xor( lhs: <Flex as BackendTypes>::BoolTensorPrimitive, rhs: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise exclusive or. Read more
Source§

fn bool_expand( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, shape: Shape, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Broadcasts the bool tensor to the given shape.
Source§

fn bool_zeros( shape: Shape, device: &<Flex as BackendTypes>::Device, dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Creates a new bool tensor filled false. Read more
Source§

fn bool_ones( shape: Shape, _device: &<Flex as BackendTypes>::Device, dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Creates a new bool tensor filled true. Read more
Source§

fn bool_mask_where( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, mask: <Flex as BackendTypes>::BoolTensorPrimitive, value: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Fills the tensor with values from the value tensor if the mask is true at the given indices. Read more
Source§

fn bool_mask_fill( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, mask: <Flex as BackendTypes>::BoolTensorPrimitive, value: Scalar, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Fills the tensor with the given value if the mask is true at the given indices. Read more
Source§

fn bool_gather( dim: usize, tensor: <Flex as BackendTypes>::BoolTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Gather elements from the tensor at the given indices. Read more
Source§

fn bool_scatter_or( dim: usize, tensor: <Flex as BackendTypes>::BoolTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, value: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Scatter a given value to the tensor at the given indices using boolean or reduction. Read more
Source§

fn bool_equal_elem( lhs: <Flex as BackendTypes>::BoolTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise equality comparison with a scalar. Read more
Source§

fn bool_unfold( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, dim: usize, size: usize, step: usize, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Unfold windows along a dimension. Read more
Source§

fn bool_not_equal( lhs: <Flex as BackendTypes>::BoolTensorPrimitive, rhs: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise non-equality comparison. Read more
Source§

fn bool_not_equal_elem( lhs: <Flex as BackendTypes>::BoolTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise non-equality comparison with a scalar. Read more
Source§

fn bool_any( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if any element in the boolean tensor evaluates to True. Read more
Source§

fn bool_any_dim( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if any element in the boolean tensor evaluates to True along a given dimension dim. Read more
Source§

fn bool_all( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if all elements in the boolean tensor evaluate to True. Read more
Source§

fn bool_all_dim( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if all elements in the boolean tensor evaluate to True along a given dimension dim. Read more
Source§

fn bool_select( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, dim: usize, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Select tensor elements along the given dimension corresponding to the given indices. Read more
Source§

fn bool_select_or( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, dim: usize, indices: <Flex as BackendTypes>::IntTensorPrimitive, value: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Assign the selected elements along the given dimension corresponding to the given indices to the given value using sum reduction. Read more
Source§

fn bool_transpose( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Transposes a bool tensor. Read more
Source§

fn bool_repeat_dim( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, dim: usize, times: usize, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Repeats one dimension of the tensor a given number of times along that dimension. Read more
Source§

async fn bool_argwhere( tensor: <Flex as BackendTypes>::BoolTensorPrimitive, out_dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Compute the indices of the elements that are non-zero, grouped by element. Read more
Source§

impl Clone for Flex

Source§

fn clone(&self) -> Flex

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for Flex

Source§

impl Debug for Flex

Source§

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

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

impl Default for Flex

Source§

fn default() -> Flex

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

impl DispatchKindConversion<Flex> for DispatchTensor

Source§

fn try_into_backend( tensor: DispatchTensor, ) -> Result<BackendTensor<Flex>, String>

Attempts to extract a backend-specific BackendTensor wrapper from a generic, dynamically-routed DispatchTensor. Read more
Source§

fn from_backend(tensor: BackendTensor<Flex>) -> DispatchTensor

Encapsulates a backend-specific tensor variant back into a globally routing DispatchTensor.
Source§

impl DistributedOps<Flex> for Flex

Source§

fn start_communication_server( devices: &[<B as BackendTypes>::Device], config: DistributedConfig, )

Start the communication server used to orchestrate tensor syncing between devices. Read more
Source§

fn close_communication_server(_device: &<B as BackendTypes>::Device)

Close the communication server used to orchestrate syncing between devices. Read more
Source§

fn register_sync_parameters( _device: &<B as BackendTypes>::Device, distributed_params: Vec<DistributedParams>, )

Register the parameters that will require gradient synchronization for the upcoming backward pass. Read more
Source§

fn submit_sync_collective(device: &<B as BackendTypes>::Device)

Tell the gradient sync server that this device has submitted all its sync operations and is ready to be synchronized. Read more
Source§

fn submit_gradient_sync( tensor: TensorRef<B>, distributed_params: DistributedParams, )

Submit a gradient tensor for synchronization across all devices. Read more
Source§

fn all_reduce( _tensor: <B as BackendTypes>::FloatTensorPrimitive, _op: ReduceOperation, _device_ids: Vec<DeviceId>, ) -> CollectiveTensor<B>

all_reduce operation. Read more
Source§

fn sync_collective(_device: &<B as BackendTypes>::Device)

Sync the collective operations. Read more
Source§

unsafe fn comm_device(tensor: &TensorRef<B>) -> <B as BackendTypes>::Device

Get the device of the tensor reference. Read more
Source§

unsafe fn float_from_ref( tensor: &TensorRef<B>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Returns a clone of the float tensor from the tensor reference. Read more
Source§

impl FloatTensorOps<Flex> for Flex

Source§

fn float_from_data( data: TensorData, _device: &<Flex as BackendTypes>::Device, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Creates a new tensor from the data structure. Read more
Source§

fn float_random( shape: Shape, distribution: Distribution, _device: &<Flex as BackendTypes>::Device, dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Creates a new tensor with random values. Read more
Source§

async fn float_into_data( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> Result<TensorData, ExecutionError>

Converts the tensor to a data structure. Read more
Source§

fn float_to_device( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, _device: &<Flex as BackendTypes>::Device, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Moves the tensor to the given device. Read more
Source§

fn float_detach( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Detaches a tensor from the computation graph.
Source§

fn float_into_int( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Converts float tensor to int tensor. Read more
Source§

fn float_empty( shape: Shape, _device: &<Flex as BackendTypes>::Device, dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Creates an empty tensor with the given shape. Read more
Source§

fn float_add( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Adds two tensors together. Read more
Source§

fn float_add_scalar( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Adds a scalar to a tensor. Read more
Source§

fn float_sub( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Subtracts two tensors. Read more
Source§

fn float_sub_scalar( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Subtracts a scalar from a tensor. Read more
Source§

fn float_mul( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Multiplies two tensors together element-wise.
Source§

fn float_mul_scalar( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Multiplies a tensor by a scalar. Read more
Source§

fn float_div( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Divides two tensors element-wise. Read more
Source§

fn float_div_scalar( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Divides a tensor by a scalar. Read more
Source§

fn float_remainder( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Computes the remainder of division between two tensors element-wise. Read more
Source§

fn float_remainder_scalar( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Computes the modulus of a tensor given a scalar. Read more
Source§

fn float_matmul( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Multiplies two tensors together using matrix multiplication. Read more
Source§

fn float_cross( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Computes the cross product of two tensors along a given dimension. Read more
Source§

fn float_recip( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Calculates the reciprocals element-wise
Source§

fn float_swap_dims( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim1: usize, dim2: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Swaps two dimensions of a tensor. Read more
Source§

fn float_permute( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, axes: &[usize], ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Permutes the dimensions of a tensor. Read more
Source§

fn float_flip( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, axes: &[usize], ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Reverse the order of elements in a tensor along the given axes. Read more
Source§

fn float_cat( tensors: Vec<<Flex as BackendTypes>::FloatTensorPrimitive>, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Concatenates tensors along a dimension. Read more
Source§

fn float_reshape( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, shape: Shape, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Reshapes a tensor. Read more
Source§

fn float_gather( dim: usize, tensor: <Flex as BackendTypes>::FloatTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Gather elements from a tensor. Read more
Source§

fn float_scatter_add( dim: usize, tensor: <Flex as BackendTypes>::FloatTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, value: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Scatter elements into a tensor using sum reduction. Read more
Source§

fn float_scatter_nd( data: <Flex as BackendTypes>::FloatTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, values: <Flex as BackendTypes>::FloatTensorPrimitive, reduction: IndexingUpdateOp, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Multi-dimensional scatter: update data at locations specified by indices with values. Read more
Source§

fn float_gather_nd( data: <Flex as BackendTypes>::FloatTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Multi-dimensional gather: collect slices from data at locations specified by indices. Read more
Source§

fn float_select( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Select tensor elements along the given dimension corresponding for the given indices. Read more
Source§

fn float_select_add( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, indices: <Flex as BackendTypes>::IntTensorPrimitive, value: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Assign the selected elements along the given dimension corresponding for the given indices to the given value using sum reduction. Read more
Source§

fn float_slice( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, slices: &[Slice], ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Select tensor elements corresponding to the given slices. Read more
Source§

fn float_slice_assign( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, slices: &[Slice], value: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Assign the selected elements corresponding to the given slices to the given value. Read more
Source§

fn float_mask_where( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, mask: <Flex as BackendTypes>::BoolTensorPrimitive, value: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Update the given tensor with the value tensor where the mask is true. Read more
Source§

fn float_mask_fill( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, mask: <Flex as BackendTypes>::BoolTensorPrimitive, value: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Update the given tensor with the value where the mask is true. Read more
Source§

fn float_equal( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Equal comparison of two tensors. Read more
Source§

fn float_equal_elem( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Equal comparison of a tensor and a scalar. Read more
Source§

fn float_greater( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Greater than comparison of two tensors. Read more
Source§

fn float_greater_elem( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Greater than comparison of a tensor and a scalar. Read more
Source§

fn float_greater_equal( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Greater than or equal comparison of two tensors. Read more
Source§

fn float_greater_equal_elem( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Greater than or equal comparison of a tensor and a scalar. Read more
Source§

fn float_lower( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Less than comparison of two tensors. Read more
Source§

fn float_lower_elem( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Less than comparison of a tensor and a scalar. Read more
Source§

fn float_lower_equal( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Less than or equal comparison of two tensors. Read more
Source§

fn float_lower_equal_elem( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Less than or equal comparison of a tensor and a scalar. Read more
Source§

fn float_not_equal( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise non-equality comparison. Read more
Source§

fn float_not_equal_elem( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise non-equality comparison with a scalar. Read more
Source§

fn float_neg( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Negates a tensor element-wise.
Source§

fn float_clamp( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, min: Scalar, max: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Clamps a tensor between a minimum and maximum value. Read more
Source§

fn float_clamp_min( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, min: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Clamps a tensor under a minimum value. Read more
Source§

fn float_clamp_max( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, max: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Clamps a tensor over a maximum value. Read more
Source§

fn float_sign( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns the signs of the float tensor. Read more
Source§

fn float_mean( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Mean of all elements in a tensor. Read more
Source§

fn float_max( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Gets the maximum element of a tensor. Read more
Source§

fn float_max_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Gets the maximum elements of a tensor along an axis. Read more
Source§

fn float_min( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Gets the minimum element of a tensor. Read more
Source§

fn float_min_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Gets the minimum elements of a tensor along an axis. Read more
Source§

fn float_max_dim_with_indices( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, indices_dtype: IntDType, ) -> (<Flex as BackendTypes>::FloatTensorPrimitive, <Flex as BackendTypes>::IntTensorPrimitive)

Gets the maximum elements of a tensor along an axis and their indices. Read more
Source§

fn float_min_dim_with_indices( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, indices_dtype: IntDType, ) -> (<Flex as BackendTypes>::FloatTensorPrimitive, <Flex as BackendTypes>::IntTensorPrimitive)

Gets the minimum elements of a tensor along an axis and their indices. Read more
Source§

fn float_any( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if any element in the float tensor evaluates to True. Read more
Source§

fn float_any_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if any element in the float tensor evaluates to True along a given dimension dim. Read more
Source§

fn float_all( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if all elements in the float tensor evaluate to True. Read more
Source§

fn float_all_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if all elements in the float tensor evaluate to True along a given dimension dim. Read more
Source§

fn float_sum( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Sum of all elements in a tensor. Read more
Source§

fn float_sum_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Sum of all elements in a tensor along a dimension. Read more
Source§

fn float_mean_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Mean of all elements in a tensor along a dimension. Read more
Source§

fn float_prod( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Product of all elements in a tensor. Read more
Source§

fn float_prod_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Product of all elements in a tensor along a dimension. Read more
Source§

fn float_cumsum( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Computes the cumulative sum of elements along a dimension. Read more
Source§

fn float_cumprod( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Computes the cumulative product of elements along a dimension. Read more
Source§

fn float_cummin( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Computes the cumulative minimum of elements along a dimension. Read more
Source§

fn float_cummax( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Computes the cumulative maximum of elements along a dimension. Read more
Source§

fn float_cast( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Converts a tensor to another floating point data type. Read more
Source§

fn float_exp( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with exponential values. Read more
Source§

fn float_log( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with natural logarithm values. Read more
Source§

fn float_log1p( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with logarithm values of (1 + Xi). Read more
Source§

fn float_powf( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Element-wise power with a FloatTensor. Read more
Source§

fn float_powf_scalar_impl( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, value: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with values raised to the power of float value. Read more
Source§

fn float_sqrt( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with square root values. Read more
Source§

fn float_abs( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with absolute values. Read more
Source§

fn float_cos( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with cosine values. Read more
Source§

fn float_sin( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with sine values. Read more
Source§

fn float_tan( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with tangent values. Read more
Source§

fn float_cosh( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with hyperbolic cosine values. Read more
Source§

fn float_sinh( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with hyperbolic sine values. Read more
Source§

fn float_tanh( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with hyperbolic tangent values. Read more
Source§

fn float_acos( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with inverse cosine values. Read more
Source§

fn float_acosh( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with inverse hyperbolic cosine values. Read more
Source§

fn float_asin( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with inverse sine values. Read more
Source§

fn float_asinh( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with inverse hyperbolic sine values. Read more
Source§

fn float_atan( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with the inverse tangent values. Read more
Source§

fn float_atanh( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with the inverse hyperbolic tangent values. Read more
Source§

fn float_atan2( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a tensor with the four-quadrant inverse tangent values of y and x. Read more
Source§

fn float_round( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with rounded values. Read more
Source§

fn float_floor( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with floored values. Read more
Source§

fn float_ceil( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with ceiled values. Read more
Source§

fn float_trunc( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with truncated values. Read more
Source§

fn float_erf( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with the error function values. Read more
Source§

fn float_argmax( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, out_dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the indices of the maximum elements of a tensor along an axis. Read more
Source§

fn float_argmin( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, out_dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the indices of the minimum elements of a tensor along an axis. Read more
Source§

fn float_expand( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, shape: Shape, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Broadcasts the float tensor to the given shape.
Source§

fn float_unfold( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, size: usize, step: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Unfold windows along a dimension. Read more
Source§

fn float_grid_sample_2d( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, grid: <Flex as BackendTypes>::FloatTensorPrimitive, options: GridSampleOptions, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Samples tensor as a two-dimensional spatial grid of (possibly multi-channel) values, using the given locations in [-1, 1]. Read more
Source§

fn float_zeros( shape: Shape, _device: &<Flex as BackendTypes>::Device, dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Creates a new tensor with zeros. Read more
Source§

fn float_ones( shape: Shape, _device: &<Flex as BackendTypes>::Device, dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Creates a new tensor with ones. Read more
Source§

fn float_full( shape: Shape, fill_value: Scalar, _device: &<Flex as BackendTypes>::Device, dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Creates a tensor filled with given value. Read more
Source§

fn float_transpose( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Transposes a tensor. Read more
Source§

fn float_repeat_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, times: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Repeat the tensor along the given dimension. Read more
Source§

fn float_sort( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, descending: bool, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Sort the elements of the input tensor by value in along a given dimension. Read more
Source§

fn float_sort_with_indices( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, descending: bool, indices_dtype: IntDType, ) -> (<Flex as BackendTypes>::FloatTensorPrimitive, <Flex as BackendTypes>::IntTensorPrimitive)

Sort the elements of the input tensor by value in along a given dimension. Read more
Source§

fn float_argsort( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, descending: bool, out_dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Returns the indices that sort the elements of the input tensor by value along a given dimension. Read more
Source§

fn float_powi( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Element-wise power with an IntTensor. Read more
Source§

fn float_powi_scalar( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Raises a tensor to the power of an int scalar. Read more
Source§

fn float_powf_scalar( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, value: Scalar, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with values raised to the power of float value. Read more
Source§

fn float_max_abs( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Gets the maximum absolute element of a tensor. Read more
Source§

fn float_max_abs_dim( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Gets the maximum absolute elements of a tensor along an axis. Read more
Source§

fn float_is_nan( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Returns a new tensor with boolean elements indicating whether each element of the input is NaN. Read more
Source§

fn float_is_inf( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Returns a new tensor with boolean elements indicating whether each element of the input is infinite (either +INF or -INF). Read more
Source§

fn float_hypot( lhs: <Flex as BackendTypes>::FloatTensorPrimitive, rhs: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Returns a new tensor with the Euclidean distance values. Read more
Source§

fn float_set_require_grad( tensor: <B as BackendTypes>::FloatTensorPrimitive, _require_grad: bool, ) -> <B as BackendTypes>::FloatTensorPrimitive

Sets the require_grad flag of a tensor.
Source§

fn float_is_require_grad( _tensor: &<B as BackendTypes>::FloatTensorPrimitive, ) -> bool

Returns the require_grad flag of a tensor.
Source§

fn float_powi_scalar_impl( lhs: <B as BackendTypes>::FloatTensorPrimitive, rhs: Scalar, ) -> <B as BackendTypes>::FloatTensorPrimitive

Raises a tensor to the power of an int scalar. Read more
Source§

fn float_argtopk( tensor: <B as BackendTypes>::FloatTensorPrimitive, dim: usize, k: usize, out_dtype: IntDType, ) -> <B as BackendTypes>::IntTensorPrimitive

Gets the indices of the k maximum elements of a tensor along an axis. if two elements are equals, it will be ordered by lowest indices Read more
Source§

fn float_topk( tensor: <B as BackendTypes>::FloatTensorPrimitive, dim: usize, k: usize, ) -> <B as BackendTypes>::FloatTensorPrimitive

Gets the values of the k maximum elements of a tensor along an axis. Read more
Source§

fn float_topk_with_indices( tensor: <B as BackendTypes>::FloatTensorPrimitive, dim: usize, k: usize, out_dtype: IntDType, ) -> (<B as BackendTypes>::FloatTensorPrimitive, <B as BackendTypes>::IntTensorPrimitive)

Gets the values of the k maximum elements of a tensor along an axis, and their indices. Read more
Source§

impl IntTensorOps<Flex> for Flex

Source§

fn int_gather( dim: usize, tensor: <Flex as BackendTypes>::IntTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gather ints along dim at the given indices.

The tensor dispatches on its own int dtype (I8/I16/I32/I64 signed or U8/U16/U32/U64 unsigned). The indices tensor may be any of those widths too - it’s normalised to isize by the shared read_indices helper in ops::gather_scatter before the kernel runs, so callers are not required to pre-convert to I64.

Source§

fn int_scatter_add( dim: usize, tensor: <Flex as BackendTypes>::IntTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, value: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Scatter-add int values at the given indices along dim.

tensor and value must share the same int dtype; indices may be any supported int width. See int_gather for the full index-width policy.

Source§

fn int_select( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Select ints along dim by a 1D index tensor.

The indices tensor may be any supported int width. See int_gather for the full index-width policy.

Source§

fn int_select_add( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, indices: <Flex as BackendTypes>::IntTensorPrimitive, value: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Select-add int values at a 1D index tensor along dim.

tensor and value must share the same int dtype; indices may be any supported int width. See int_gather for the full index-width policy.

Source§

fn int_from_data( data: TensorData, _device: &<Flex as BackendTypes>::Device, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Creates a tensor from the data structure. Read more
Source§

async fn int_into_data( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> Result<TensorData, ExecutionError>

Converts the tensor to a data structure. Read more
Source§

fn int_to_device( tensor: <Flex as BackendTypes>::IntTensorPrimitive, _device: &<Flex as BackendTypes>::Device, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Moves the tensor to the given device.
Source§

fn int_cat( tensors: Vec<<Flex as BackendTypes>::IntTensorPrimitive>, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Concatenates the given tensors along the given dimension. Read more
Source§

fn int_reshape( tensor: <Flex as BackendTypes>::IntTensorPrimitive, shape: Shape, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Reshapes the tensor. Read more
Source§

fn int_slice( tensor: <Flex as BackendTypes>::IntTensorPrimitive, slices: &[Slice], ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the element at the given indices. Read more
Source§

fn int_empty( shape: Shape, _device: &<Flex as BackendTypes>::Device, dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Creates a new int tensor. Read more
Source§

fn int_mask_where( tensor: <Flex as BackendTypes>::IntTensorPrimitive, mask: <Flex as BackendTypes>::BoolTensorPrimitive, value: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Fills the tensor with values from the value tensor if the mask is true at the given indices. Read more
Source§

fn int_mask_fill( tensor: <Flex as BackendTypes>::IntTensorPrimitive, mask: <Flex as BackendTypes>::BoolTensorPrimitive, value: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Fills the tensor with the given value if the mask is true at the given indices. Read more
Source§

fn int_slice_assign( tensor: <Flex as BackendTypes>::IntTensorPrimitive, slices: &[Slice], value: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Sets the values in the tensor for the given ranges. Read more
Source§

fn int_scatter_nd( data: <Flex as BackendTypes>::IntTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, values: <Flex as BackendTypes>::IntTensorPrimitive, reduction: IndexingUpdateOp, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Multi-dimensional scatter for int tensors.
Source§

fn int_gather_nd( data: <Flex as BackendTypes>::IntTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Multi-dimensional gather for int tensors.
Source§

fn int_equal( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise equality comparison. Read more
Source§

fn int_equal_elem( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise equality comparison with a scalar. Read more
Source§

fn int_greater( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise greater than comparison. Read more
Source§

fn int_greater_elem( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise greater than comparison with a scalar. Read more
Source§

fn int_greater_equal( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise greater than or equal comparison. Read more
Source§

fn int_greater_equal_elem( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise greater than or equal comparison with a scalar. Read more
Source§

fn int_lower( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise less than comparison. Read more
Source§

fn int_lower_elem( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise less than comparison with a scalar. Read more
Source§

fn int_lower_equal( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise less than or equal comparison. Read more
Source§

fn int_lower_equal_elem( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise less than or equal comparison with a scalar. Read more
Source§

fn int_add( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise addition. Read more
Source§

fn int_add_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise addition with a scalar. Read more
Source§

fn int_sub( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise subtraction. Read more
Source§

fn int_sub_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise subtraction with a scalar. Read more
Source§

fn int_mul( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise multiplication. Read more
Source§

fn int_mul_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise multiplication with a scalar. Read more
Source§

fn int_div( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise division. Read more
Source§

fn int_div_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise division with a scalar. Read more
Source§

fn int_remainder( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise modulus. Read more
Source§

fn int_remainder_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise modulus with a scalar. Read more
Source§

fn int_into_float( tensor: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Converts int tensor to float tensor. Read more
Source§

fn int_swap_dims( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim1: usize, dim2: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Swaps two dimensions of an int tensor. Read more
Source§

fn int_permute( tensor: <Flex as BackendTypes>::IntTensorPrimitive, axes: &[usize], ) -> <Flex as BackendTypes>::IntTensorPrimitive

Permutes the dimensions of a tensor. Read more
Source§

fn int_flip( tensor: <Flex as BackendTypes>::IntTensorPrimitive, axes: &[usize], ) -> <Flex as BackendTypes>::IntTensorPrimitive

Reverse the order of elements in a tensor along the given axes. Read more
Source§

fn int_random( shape: Shape, distribution: Distribution, _device: &<Flex as BackendTypes>::Device, dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Creates a new int tensor with random values. Read more
Source§

fn int_expand( tensor: <Flex as BackendTypes>::IntTensorPrimitive, shape: Shape, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Broadcasts the int tensor to the given shape.
Source§

fn int_matmul( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Multiplies two tensors together using matrix multiplication. Read more
Source§

fn int_sum( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Sums all elements in the tensor. Read more
Source§

fn int_sum_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Sums all elements in the tensor along a dimension. Read more
Source§

fn int_prod( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Computes the product of all elements in the tensor. Read more
Source§

fn int_prod_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Computes the product of all elements in the tensor along a dimension. Read more
Source§

fn int_mean_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Computes the mean of all elements in the tensor along a dimension. Read more
Source§

fn int_cumsum( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Computes the cumulative sum of elements along a dimension. Read more
Source§

fn int_cumprod( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Computes the cumulative product of elements along a dimension. Read more
Source§

fn int_cummin( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Computes the cumulative minimum of elements along a dimension. Read more
Source§

fn int_cummax( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Computes the cumulative maximum of elements along a dimension. Read more
Source§

fn int_argmax( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the indices of the maximum elements along a dimension. Read more
Source§

fn int_argmin( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the indices of the minimum elements along a dimension. Read more
Source§

fn int_abs( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Returns a new tensor with absolute values. Read more
Source§

fn bitwise_and( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise AND operation for Int Tensors
Source§

fn bitwise_and_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise AND operation for Int Tensors with a scalar
Source§

fn bitwise_or( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise OR operation for Int Tensors
Source§

fn bitwise_or_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise OR operation for Int Tensors with a scalar
Source§

fn bitwise_xor( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise XOR operation for Int Tensors
Source§

fn bitwise_xor_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise XOR operation for Int Tensors with a scalar
Source§

fn bitwise_not( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise NOT operation for Int Tensors
Source§

fn bitwise_left_shift( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise left shift operation for Int Tensors
Source§

fn bitwise_left_shift_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise left shift operation for Int Tensors with a scalar
Source§

fn bitwise_right_shift( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise right shift operation for Int Tensors
Source§

fn bitwise_right_shift_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Bitwise right shift operation for Int Tensors with a scalar
Source§

fn int_cast( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Converts a tensor to another integer data type. Read more
Source§

fn int_unfold( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, size: usize, step: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Unfold windows along a dimension. Read more
Source§

fn int_neg( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise negation. Read more
Source§

fn int_clamp( tensor: <Flex as BackendTypes>::IntTensorPrimitive, min: Scalar, max: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Clamps a tensor between a minimum and maximum value. Read more
Source§

fn int_clamp_min( tensor: <Flex as BackendTypes>::IntTensorPrimitive, min: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Clamps a tensor under a minimum value. Read more
Source§

fn int_clamp_max( tensor: <Flex as BackendTypes>::IntTensorPrimitive, max: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Clamps a tensor over a maximum value. Read more
Source§

fn int_sign( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Returns the signs of the int tensor. Read more
Source§

fn int_mean( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Computes the mean of all elements in the tensor. Read more
Source§

fn int_max( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the maximum element in the tensor. Read more
Source§

fn int_max_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the maximum element in the tensor along a dimension. Read more
Source§

fn int_min( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the minimum element in the tensor. Read more
Source§

fn int_min_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the minimum elements in the tensor along a dimension. Read more
Source§

fn int_max_dim_with_indices( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> (<Flex as BackendTypes>::IntTensorPrimitive, <Flex as BackendTypes>::IntTensorPrimitive)

Gets the maximum elements and corresponding indices along a dimension. Read more
Source§

fn int_min_dim_with_indices( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> (<Flex as BackendTypes>::IntTensorPrimitive, <Flex as BackendTypes>::IntTensorPrimitive)

Gets the minimum elements and corresponding indices along a dimension. Read more
Source§

fn int_any( tensor: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if any element in the int tensor evaluates to True. Read more
Source§

fn int_any_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if any element in the int tensor evaluates to True along a given dimension dim. Read more
Source§

fn int_all( tensor: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if all elements in the int tensor evaluate to True. Read more
Source§

fn int_all_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Tests if all elements in the int tensor evaluate to True along a given dimension dim. Read more
Source§

fn int_powi( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise power with a IntTensor. Read more
Source§

fn int_zeros( shape: Shape, _device: &<Flex as BackendTypes>::Device, dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Creates a tensor of zeros. Read more
Source§

fn int_ones( shape: Shape, _device: &<Flex as BackendTypes>::Device, dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Creates a tensor of ones. Read more
Source§

fn int_full( shape: Shape, fill_value: Scalar, _device: &<Flex as BackendTypes>::Device, dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Creates a tensor filled with given value. Read more
Source§

fn int_transpose( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Transposes an int tensor. Read more
Source§

fn int_repeat_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, times: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Repeats the tensor along the given dimension the given number of times. Read more
Source§

fn int_not_equal( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: <Flex as BackendTypes>::IntTensorPrimitive, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise non-equality comparison. Read more
Source§

fn int_not_equal_elem( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, out_dtype: BoolStore, ) -> <Flex as BackendTypes>::BoolTensorPrimitive

Element-wise non-equality comparison with a scalar. Read more
Source§

fn int_sort( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, descending: bool, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Sort the elements of the input tensor by value along a given dimension. Read more
Source§

fn int_sort_with_indices( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, descending: bool, ) -> (<Flex as BackendTypes>::IntTensorPrimitive, <Flex as BackendTypes>::IntTensorPrimitive)

Sort the elements of the input tensor by value along a given dimension. Read more
Source§

fn int_argsort( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, descending: bool, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Returns the indices that sort the elements of the input tensor by value along a given dimension. Read more
Source§

fn int_powi_scalar( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise power with a scalar. Read more
Source§

fn int_powi_scalar_impl( lhs: <Flex as BackendTypes>::IntTensorPrimitive, rhs: Scalar, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Element-wise power with a scalar. Read more
Source§

fn int_max_abs( tensor: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the maximum absolute element in the tensor. Read more
Source§

fn int_max_abs_dim( tensor: <Flex as BackendTypes>::IntTensorPrimitive, dim: usize, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the maximum absolute element in the tensor along a dimension. Read more
Source§

fn int_arange( range: Range<i64>, _device: &<Flex as BackendTypes>::Device, dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Creates a new tensor with values from the given range. Read more
Source§

fn int_arange_step( range: Range<i64>, step: usize, _device: &<Flex as BackendTypes>::Device, dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Creates a new tensor with values from the given range with the given step size. Read more
Source§

fn int_square( tensor: <B as BackendTypes>::IntTensorPrimitive, ) -> <B as BackendTypes>::IntTensorPrimitive

Element-wise square with a IntTensor. Read more
Source§

fn int_argtopk( tensor: <B as BackendTypes>::IntTensorPrimitive, dim: usize, k: usize, ) -> <B as BackendTypes>::IntTensorPrimitive

Gets the indices of the k maximum elements along a dimension. If two elements share the same value, it will be ordered by the lowest coordinate Read more
Source§

fn int_topk( tensor: <B as BackendTypes>::IntTensorPrimitive, dim: usize, k: usize, ) -> <B as BackendTypes>::IntTensorPrimitive

Gets the values of the k maximum elements along a dimension. Read more
Source§

fn int_topk_with_indices( tensor: <B as BackendTypes>::IntTensorPrimitive, dim: usize, k: usize, ) -> (<B as BackendTypes>::IntTensorPrimitive, <B as BackendTypes>::IntTensorPrimitive)

Gets the values of the k maximum elements along a dimension, and their indices. Read more
Source§

impl ModuleOps<Flex> for Flex

Source§

fn conv1d( x: <Flex as BackendTypes>::FloatTensorPrimitive, weight: <Flex as BackendTypes>::FloatTensorPrimitive, bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, options: ConvOptions<1>, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

One dimensional convolution. Read more
Source§

fn conv2d( x: <Flex as BackendTypes>::FloatTensorPrimitive, weight: <Flex as BackendTypes>::FloatTensorPrimitive, bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, options: ConvOptions<2>, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Two dimensional convolution. Read more
Source§

fn deform_conv2d( x: <Flex as BackendTypes>::FloatTensorPrimitive, offset: <Flex as BackendTypes>::FloatTensorPrimitive, weight: <Flex as BackendTypes>::FloatTensorPrimitive, mask: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, options: DeformConvOptions<2>, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Two dimensional deformable convolution. Read more
Source§

fn deform_conv2d_backward( x: <Flex as BackendTypes>::FloatTensorPrimitive, offset: <Flex as BackendTypes>::FloatTensorPrimitive, weight: <Flex as BackendTypes>::FloatTensorPrimitive, mask: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, output_grad: <Flex as BackendTypes>::FloatTensorPrimitive, options: DeformConvOptions<2>, ) -> DeformConv2dBackward<Flex>

Backward pass for the deform_conv2d operation.
Source§

fn conv3d( x: <Flex as BackendTypes>::FloatTensorPrimitive, weight: <Flex as BackendTypes>::FloatTensorPrimitive, bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, options: ConvOptions<3>, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Three dimensional convolution. Read more
Source§

fn conv_transpose1d( x: <Flex as BackendTypes>::FloatTensorPrimitive, weight: <Flex as BackendTypes>::FloatTensorPrimitive, bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, options: ConvTransposeOptions<1>, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

One dimensional transposed convolution. Read more
Source§

fn conv_transpose2d( x: <Flex as BackendTypes>::FloatTensorPrimitive, weight: <Flex as BackendTypes>::FloatTensorPrimitive, bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, options: ConvTransposeOptions<2>, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Two dimensional transposed convolution. Read more
Source§

fn conv_transpose3d( x: <Flex as BackendTypes>::FloatTensorPrimitive, weight: <Flex as BackendTypes>::FloatTensorPrimitive, bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, options: ConvTransposeOptions<3>, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Three dimensional transposed convolution. Read more
Source§

fn avg_pool2d( x: <Flex as BackendTypes>::FloatTensorPrimitive, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], count_include_pad: bool, ceil_mode: bool, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Two dimensional avg pooling. Read more
Source§

fn avg_pool2d_backward( x: <Flex as BackendTypes>::FloatTensorPrimitive, grad: <Flex as BackendTypes>::FloatTensorPrimitive, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], count_include_pad: bool, _divisor_override: bool, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Backward pass for the avg pooling 2d operation.
Source§

fn adaptive_avg_pool2d( x: <Flex as BackendTypes>::FloatTensorPrimitive, output_size: [usize; 2], ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Two dimensional adaptive avg pooling. Read more
Source§

fn adaptive_avg_pool2d_backward( x: <Flex as BackendTypes>::FloatTensorPrimitive, grad: <Flex as BackendTypes>::FloatTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Backward pass for the adaptive avg pooling 2d operation.
Source§

fn max_pool2d( x: <Flex as BackendTypes>::FloatTensorPrimitive, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], dilation: [usize; 2], ceil_mode: bool, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Two dimensional max pooling. Read more
Source§

fn max_pool2d_with_indices( x: <Flex as BackendTypes>::FloatTensorPrimitive, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], dilation: [usize; 2], ceil_mode: bool, indices_dtype: IntDType, ) -> MaxPool2dWithIndices<Flex>

Two dimensional max pooling with indices. Read more
Source§

fn max_pool2d_with_indices_backward( x: <Flex as BackendTypes>::FloatTensorPrimitive, _kernel_size: [usize; 2], _stride: [usize; 2], _padding: [usize; 2], _dilation: [usize; 2], _ceil_mode: bool, output_grad: <Flex as BackendTypes>::FloatTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> MaxPool2dBackward<Flex>

Backward pass for the max pooling 2d operation.
Source§

fn interpolate( x: <Flex as BackendTypes>::FloatTensorPrimitive, output_size: [usize; 2], options: InterpolateOptions, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Down/up samples the input. Read more
Source§

fn interpolate_backward( x: <Flex as BackendTypes>::FloatTensorPrimitive, grad: <Flex as BackendTypes>::FloatTensorPrimitive, output_size: [usize; 2], options: InterpolateOptions, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Backward pass for the interpolate operation.
Source§

fn attention( query: <Flex as BackendTypes>::FloatTensorPrimitive, key: <Flex as BackendTypes>::FloatTensorPrimitive, value: <Flex as BackendTypes>::FloatTensorPrimitive, mask: Option<<Flex as BackendTypes>::BoolTensorPrimitive>, attn_bias: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, options: AttentionModuleOptions, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Computes scaled dot-product attention: softmax(QKᵗ * scale) · V, where scale defaults to 1/sqrt(head_dim). Optionally applies masking, additive bias, causal masking, and softcap to the attention scores. Read more
Source§

fn rfft( signal: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, n: Option<usize>, ) -> (<Flex as BackendTypes>::FloatTensorPrimitive, <Flex as BackendTypes>::FloatTensorPrimitive)

Real-valued FFT with optional size parameter. Read more
Source§

fn irfft( spectrum_re: <Flex as BackendTypes>::FloatTensorPrimitive, spectrum_im: <Flex as BackendTypes>::FloatTensorPrimitive, dim: usize, n: Option<usize>, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Inverse real-valued FFT with optional output size. Read more
Source§

fn embedding( weights: <Flex as BackendTypes>::FloatTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Embedding operation. Read more
Source§

fn layer_norm( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, gamma: <Flex as BackendTypes>::FloatTensorPrimitive, beta: Option<<Flex as BackendTypes>::FloatTensorPrimitive>, epsilon: f64, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Applies Layer Normalization over the last dimension of the input tensor. Read more
Source§

fn embedding_backward( weights: <Flex as BackendTypes>::FloatTensorPrimitive, output_grad: <Flex as BackendTypes>::FloatTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Embedding backward operation. Read more
Source§

fn linear( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, bias: Option<<B as BackendTypes>::FloatTensorPrimitive>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Linear transformation. Read more
Source§

fn linear_x_backward( weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for linear, returning the gradient for x.
Source§

fn linear_weight_backward( x: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for linear, returning the gradient for weight.
Source§

fn linear_bias_backward( output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for linear, returning the gradient for bias.
Source§

fn conv1d_x_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvOptions<1>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv1d operation, returning the gradient for x.
Source§

fn conv1d_weight_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvOptions<1>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv1d operation, returning the gradient for weight.
Source§

fn conv1d_bias_backward( x: <B as BackendTypes>::FloatTensorPrimitive, bias: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv1d operation, returning the gradient for bias.
Source§

fn conv2d_x_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvOptions<2>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv2d operation, returning the gradient for x.
Source§

fn conv2d_weight_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvOptions<2>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv2d operation, returning the gradient for weight.
Source§

fn conv2d_bias_backward( x: <B as BackendTypes>::FloatTensorPrimitive, bias: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv2d operation, returning the gradient for bias.
Source§

fn conv3d_x_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvOptions<3>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv3d operation, returning the gradient for x.
Source§

fn conv3d_weight_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvOptions<3>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv3d operation, returning the gradient for weight.
Source§

fn conv3d_bias_backward( x: <B as BackendTypes>::FloatTensorPrimitive, bias: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv3d operation, returning the gradient for bias.
Source§

fn conv_transpose1d_x_backward( weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvTransposeOptions<1>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 1d operation, returning the gradient for x.
Source§

fn conv_transpose1d_weight_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvTransposeOptions<1>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 1d operation, returning the gradient for weight.
Source§

fn conv_transpose1d_bias_backward( x: <B as BackendTypes>::FloatTensorPrimitive, bias: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 1d operation, returning the gradient for bias.
Source§

fn conv_transpose2d_x_backward( weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvTransposeOptions<2>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 2d operation, returning the gradient for x.
Source§

fn conv_transpose2d_weight_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvTransposeOptions<2>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 2d operation, returning the gradient for weight.
Source§

fn conv_transpose2d_bias_backward( x: <B as BackendTypes>::FloatTensorPrimitive, bias: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 2d operation, returning the gradient for bias.
Source§

fn conv_transpose3d_x_backward( weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvTransposeOptions<3>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 3d operation, returning the gradient for x.
Source§

fn conv_transpose3d_weight_backward( x: <B as BackendTypes>::FloatTensorPrimitive, weight: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, options: ConvTransposeOptions<3>, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 3d operation, returning the gradient for weight.
Source§

fn conv_transpose3d_bias_backward( x: <B as BackendTypes>::FloatTensorPrimitive, bias: <B as BackendTypes>::FloatTensorPrimitive, output_grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the conv transpose 3d operation, returning the gradient for bias.
Source§

fn unfold4d( x: <B as BackendTypes>::FloatTensorPrimitive, kernel_size: [usize; 2], options: UnfoldOptions, ) -> <B as BackendTypes>::FloatTensorPrimitive

Four-dimensional unfolding. Read more
Source§

fn avg_pool1d( x: <B as BackendTypes>::FloatTensorPrimitive, kernel_size: usize, stride: usize, padding: usize, count_include_pad: bool, ceil_mode: bool, ) -> <B as BackendTypes>::FloatTensorPrimitive

One dimensional avg pooling. Read more
Source§

fn avg_pool1d_backward( x: <B as BackendTypes>::FloatTensorPrimitive, grad: <B as BackendTypes>::FloatTensorPrimitive, kernel_size: usize, stride: usize, padding: usize, count_include_pad: bool, ceil_mode: bool, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the avg pooling 1d operation.
Source§

fn adaptive_avg_pool1d( x: <B as BackendTypes>::FloatTensorPrimitive, output_size: usize, ) -> <B as BackendTypes>::FloatTensorPrimitive

One dimensional adaptive avg pooling. Read more
Source§

fn adaptive_avg_pool1d_backward( x: <B as BackendTypes>::FloatTensorPrimitive, grad: <B as BackendTypes>::FloatTensorPrimitive, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for the adaptive avg pooling 1d operation.
Source§

fn max_pool1d( x: <B as BackendTypes>::FloatTensorPrimitive, kernel_size: usize, stride: usize, padding: usize, dilation: usize, ceil_mode: bool, ) -> <B as BackendTypes>::FloatTensorPrimitive

One dimensional max pooling. Read more
Source§

fn max_pool1d_with_indices( x: <B as BackendTypes>::FloatTensorPrimitive, kernel_size: usize, stride: usize, padding: usize, dilation: usize, ceil_mode: bool, indices_dtype: IntDType, ) -> MaxPool1dWithIndices<B>

One dimensional max pooling with indices. Read more
Source§

fn max_pool1d_with_indices_backward( x: <B as BackendTypes>::FloatTensorPrimitive, kernel_size: usize, stride: usize, padding: usize, dilation: usize, ceil_mode: bool, output_grad: <B as BackendTypes>::FloatTensorPrimitive, indices: <B as BackendTypes>::IntTensorPrimitive, ) -> MaxPool1dBackward<B>

Backward pass for the max pooling 1d operation.
Source§

fn ctc_loss( log_probs: <B as BackendTypes>::FloatTensorPrimitive, targets: <B as BackendTypes>::IntTensorPrimitive, input_lengths: <B as BackendTypes>::IntTensorPrimitive, target_lengths: <B as BackendTypes>::IntTensorPrimitive, blank: usize, ) -> <B as BackendTypes>::FloatTensorPrimitive

Computes the Connectionist Temporal Classification (CTC) loss. Read more
Source§

fn has_ctc_loss_backward() -> bool

Returns true if this backend implements ctc_loss_backward natively. Read more
Source§

fn ctc_loss_backward( _log_probs: <B as BackendTypes>::FloatTensorPrimitive, _targets: <B as BackendTypes>::IntTensorPrimitive, _input_lengths: <B as BackendTypes>::IntTensorPrimitive, _target_lengths: <B as BackendTypes>::IntTensorPrimitive, _grad_loss: <B as BackendTypes>::FloatTensorPrimitive, _blank: usize, ) -> <B as BackendTypes>::FloatTensorPrimitive

Backward pass for ctc_loss: gradient w.r.t. log_probs. Read more
Source§

impl QTensorOps<Flex> for Flex

Source§

fn q_from_data( data: TensorData, _device: &<Flex as BackendTypes>::Device, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Creates a new tensor from the data structure. Read more
Source§

fn quantize_dynamic( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, scheme: &QuantScheme, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Dynamically convert the tensor to a lower precision data type based on the quantization scheme.
Source§

fn quantize( tensor: <Flex as BackendTypes>::FloatTensorPrimitive, scheme: &QuantScheme, qparams: QuantizationParametersPrimitive<Flex>, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Convert the tensor to a lower precision data type based on the quantization scheme and parameters.
Source§

fn dequantize( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, dtype: FloatDType, ) -> <Flex as BackendTypes>::FloatTensorPrimitive

Convert the tensor back to a higher precision data type.
Source§

fn q_to_device( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, _device: &<Flex as BackendTypes>::Device, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Moves the tensor to the given device. Read more
Source§

fn q_reshape( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, shape: Shape, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Reshapes a tensor. Read more
Source§

async fn q_into_data( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, ) -> Result<TensorData, ExecutionError>

Converts the tensor to a data structure. Read more
Source§

fn q_swap_dims( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, dim1: usize, dim2: usize, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Swaps two dimensions of a tensor. Read more
Source§

fn q_permute( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, axes: &[usize], ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Permutes the dimensions of a tensor. Read more
Source§

fn q_flip( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, axes: &[usize], ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Reverse the order of elements in a tensor along the given axes. Read more
Source§

fn q_expand( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, shape: Shape, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Broadcasts the tensor to the given shape.
Source§

fn q_select( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, dim: usize, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Select tensor elements along the given dimension corresponding for the given indices. Read more
Source§

fn q_slice( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, slices: &[Slice], ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Select tensor elements corresponding to the given slices. Read more
Source§

fn q_argmax( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, dim: usize, out_dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the indices of the maximum elements of a tensor along an axis. Read more
Source§

fn q_argmin( tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, dim: usize, out_dtype: IntDType, ) -> <Flex as BackendTypes>::IntTensorPrimitive

Gets the indices of the minimum elements of a tensor along an axis. Read more
Source§

fn q_gather( dim: usize, tensor: <Flex as BackendTypes>::QuantizedTensorPrimitive, indices: <Flex as BackendTypes>::IntTensorPrimitive, ) -> <Flex as BackendTypes>::QuantizedTensorPrimitive

Gather elements from a tensor. Read more
Source§

fn q_detach( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Detaches a tensor from the computation graph.
Source§

fn q_set_require_grad( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, _require_grad: bool, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Sets the require_grad flag of a tensor.
Source§

fn q_is_require_grad( _tensor: &<B as BackendTypes>::QuantizedTensorPrimitive, ) -> bool

Returns the require_grad flag of a tensor.
Source§

fn q_transpose( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Transposes a tensor. Read more
Source§

fn q_repeat_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, times: usize, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Repeat the tensor along the given dimension. Read more
Source§

fn q_add( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Adds two tensors together. Read more
Source§

fn q_add_scalar( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>

Adds a scalar to a tensor. Read more
Source§

fn q_clamp_min( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, min: Scalar, ) -> TensorPrimitive<B>

Clamps a tensor under a minimum value. Read more
Source§

fn q_clamp_max( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, max: Scalar, ) -> TensorPrimitive<B>

Clamps a tensor over a maximum value. Read more
Source§

fn q_clamp( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, min: Scalar, max: Scalar, ) -> TensorPrimitive<B>

Clamps a tensor between a minimum and maximum value. Read more
Source§

fn q_sub( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Subtracts two tensors. Read more
Source§

fn q_sub_scalar( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>

Subtracts a scalar from a tensor. Read more
Source§

fn q_mul( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Multiplies two tensors together element-wise.
Source§

fn q_mul_scalar( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>

Multiplies a tensor by a scalar. Read more
Source§

fn q_div( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Divides two tensors element-wise. Read more
Source§

fn q_div_scalar( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>

Divides a tensor by a scalar. Read more
Source§

fn q_matmul( lhs: TensorPrimitive<B>, rhs: TensorPrimitive<B>, ) -> TensorPrimitive<B>

Multiplies two tensors together using matrix multiplication. Read more
Source§

fn q_neg( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Negates a tensor element-wise.
Source§

fn q_recip( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Calculates the reciprocals element-wise
Source§

fn q_sum( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Sum of all elements in a tensor. Read more
Source§

fn q_sum_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>

Sum of all elements in a tensor along a dimension. Read more
Source§

fn q_prod( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Product of all elements in a tensor. Read more
Source§

fn q_prod_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>

Product of all elements in a tensor along a dimension. Read more
Source§

fn q_mean( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Mean of all elements in a tensor. Read more
Source§

fn q_mean_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>

Mean of all elements in a tensor along a dimension. Read more
Source§

fn q_cumsum( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>

Computes the cumulative sum of elements along a dimension. Read more
Source§

fn q_cumprod( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>

Computes the cumulative product of elements along a dimension. Read more
Source§

fn q_cummin( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>

Computes the cumulative minimum of elements along a dimension. Read more
Source§

fn q_cummax( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>

Computes the cumulative maximum of elements along a dimension. Read more
Source§

fn q_exp( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with exponential values. Read more
Source§

fn q_log( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with natural logarithm values. Read more
Source§

fn q_log1p( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with logarithm values of (1 + Xi). Read more
Source§

fn q_powf( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Element-wise power with another tensor. Read more
Source§

fn q_powi( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: <B as BackendTypes>::IntTensorPrimitive, ) -> TensorPrimitive<B>

Element-wise power with an IntTensor. Read more
Source§

fn q_powi_scalar( lhs: <B as BackendTypes>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>

Element-wise power with an int scalar. Read more
Source§

fn q_powf_scalar( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, value: Scalar, ) -> TensorPrimitive<B>

Element-wise power with a float scalar. Read more
Source§

fn q_sqrt( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with square root values. Read more
Source§

fn q_abs( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Returns a new tensor with absolute values. Read more
Source§

fn q_cos( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with cosine values. Read more
Source§

fn q_sin( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with sine values. Read more
Source§

fn q_tan( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with tangent values. Read more
Source§

fn q_cosh( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with hyperbolic cosine values. Read more
Source§

fn q_sinh( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with hyperbolic sine values. Read more
Source§

fn q_tanh( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with hyperbolic tangent values. Read more
Source§

fn q_erf( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>

Returns a new tensor with the error function values. Read more
Source§

fn q_cat( tensors: Vec<<B as BackendTypes>::QuantizedTensorPrimitive>, dim: usize, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Concatenates tensors along a dimension. Read more
Source§

fn q_argtopk( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, k: usize, out_dtype: IntDType, ) -> <B as BackendTypes>::IntTensorPrimitive

Gets the indices of the k maximum elements of a tensor along an axis. If two elements are equals, order them by the lowest indices Read more
Source§

fn q_topk( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, k: usize, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Gets the values of the k maximum elements of a tensor along an axis. Read more
Source§

fn q_topk_with_indices( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, k: usize, out_dtype: IntDType, ) -> (<B as BackendTypes>::QuantizedTensorPrimitive, <B as BackendTypes>::IntTensorPrimitive)

Gets the values of the k maximum elements of a tensor along an axis, and their indices. Read more
Source§

fn q_max( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Gets the maximum element of a tensor. Read more
Source§

fn q_max_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Gets the maximum elements of a tensor along an axis. Read more
Source§

fn q_max_dim_with_indices( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, out_dtype: IntDType, ) -> (<B as BackendTypes>::QuantizedTensorPrimitive, <B as BackendTypes>::IntTensorPrimitive)

Gets the maximum elements of a tensor along an axis and their indices. Read more
Source§

fn q_min( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Gets the minimum element of a tensor. Read more
Source§

fn q_min_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Gets the minimum elements of a tensor along an axis. Read more
Source§

fn q_min_dim_with_indices( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, out_dtype: IntDType, ) -> (<B as BackendTypes>::QuantizedTensorPrimitive, <B as BackendTypes>::IntTensorPrimitive)

Gets the minimum elements of a tensor along an axis and their indices. Read more
Source§

fn q_max_abs( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Gets the maximum element of a tensor. Read more
Source§

fn q_max_abs_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Gets the maximum elements of a tensor along an axis. Read more
Source§

fn q_any( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, out_dtype: BoolStore, ) -> <B as BackendTypes>::BoolTensorPrimitive

Tests if any element in the tensor evaluates to True. Read more
Source§

fn q_any_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, out_dtype: BoolStore, ) -> <B as BackendTypes>::BoolTensorPrimitive

Tests if any element in the float tensor evaluates to True along a given dimension dim. Read more
Source§

fn q_all( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, out_dtype: BoolStore, ) -> <B as BackendTypes>::BoolTensorPrimitive

Tests if all elements in the tensor evaluate to True. Read more
Source§

fn q_all_dim( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, out_dtype: BoolStore, ) -> <B as BackendTypes>::BoolTensorPrimitive

Tests if all elements in the tensor evaluate to True along a given dimension dim. Read more
Source§

fn q_sort( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, descending: bool, ) -> <B as BackendTypes>::QuantizedTensorPrimitive

Sort the elements of the input tensor by value in along a given dimension. Read more
Source§

fn q_sort_with_indices( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, descending: bool, out_dtype: IntDType, ) -> (<B as BackendTypes>::QuantizedTensorPrimitive, <B as BackendTypes>::IntTensorPrimitive)

Sort the elements of the input tensor by value in along a given dimension. Read more
Source§

fn q_argsort( tensor: <B as BackendTypes>::QuantizedTensorPrimitive, dim: usize, descending: bool, out_dtype: IntDType, ) -> <B as BackendTypes>::IntTensorPrimitive

Returns the indices that sort the elements of the input tensor by value along a given dimension. Read more
Source§

impl TransactionOps<Flex> for Flex

Source§

fn tr_execute( transaction: TransactionPrimitive<B>, ) -> impl Future<Output = Result<TransactionPrimitiveData, ExecutionError>> + Send

Executes a transaction and return its data.

Auto Trait Implementations§

§

impl Freeze for Flex

§

impl RefUnwindSafe for Flex

§

impl Send for Flex

§

impl Sync for Flex

§

impl Unpin for Flex

§

impl UnsafeUnpin for Flex

§

impl UnwindSafe for Flex

Blanket Implementations§

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
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

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

Source§

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

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

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

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

Initializes a with the given initializer. Read more
Source§

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

Dereferences the given pointer. Read more
Source§

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

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

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
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.