pub struct Dispatch;Expand description
The main execution backend in Burn.
Dispatch acts as a global backend that can manage multiple underlying
backends (e.g., Cpu, Cuda, Wgpu, Metal, etc.).
It is responsible for:
- Dispatching tensor operations to the appropriate backend.
- Managing cross-backend tensor transfers.
Essentially, Dispatch is the single entry point for executing tensor operations
in a backend-agnostic way. It allows Burn to provide a unified, global backend
for users while still leveraging multiple specialized backends under the hood.
§Example
ⓘ
use burn::Dispatch;
use burn::DispatchDevice;
// Select the device to execute operations on
let device = DispatchDevice::Cuda(Default::default());
// Create a tensor using the global backend
let t = Tensor::<Dispatch, 2>::zeros([128, 128], &device);Trait Implementations§
Source§impl ActivationOps<Dispatch> for Dispatch
impl ActivationOps<Dispatch> for Dispatch
Source§fn leaky_relu(
tensor: FloatTensor<Self>,
negative_slope: Scalar,
) -> FloatTensor<Self>
fn leaky_relu( tensor: FloatTensor<Self>, negative_slope: Scalar, ) -> FloatTensor<Self>
Applies the LeakyReLU activation function. Read more
Source§fn relu(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn relu(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Applies the ReLU activation function. Read more
Source§fn relu_backward(
output: FloatTensor<Self>,
grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn relu_backward( output: FloatTensor<Self>, grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Applies the ReLU activation function backward. Read more
Source§fn gelu(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn gelu(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Applies the Gelu activation function. Read more
Source§fn prelu(
tensor: FloatTensor<Self>,
alpha: FloatTensor<Self>,
) -> FloatTensor<Self>
fn prelu( tensor: FloatTensor<Self>, alpha: FloatTensor<Self>, ) -> FloatTensor<Self>
Applies the PReLu activation function. Read more
Source§fn gelu_backward(
x: FloatTensor<Self>,
grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn gelu_backward( x: FloatTensor<Self>, grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Applies the Gelu activation function backward. Read more
Source§fn sigmoid(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn sigmoid(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Applies the Sigmoid activation function. Read more
Source§fn sigmoid_backward(
output: FloatTensor<Self>,
grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn sigmoid_backward( output: FloatTensor<Self>, grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Applies the Sigmoid activation function backward. Read more
Source§fn hard_sigmoid(
tensor: FloatTensor<Self>,
alpha: Scalar,
beta: Scalar,
) -> FloatTensor<Self>
fn hard_sigmoid( tensor: FloatTensor<Self>, alpha: Scalar, beta: Scalar, ) -> FloatTensor<Self>
Applies the hard Sigmoid activation function. Read more
Source§fn log_sigmoid(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn log_sigmoid(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Applies the LogSigmoid activation function. Read more
Source§fn log_sigmoid_backward(
x: FloatTensor<Self>,
grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn log_sigmoid_backward( x: FloatTensor<Self>, grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Applies the LogSigmoid activation function backward. Read more
Source§impl Backend for Dispatch
impl Backend for Dispatch
Source§type Device = DispatchDevice
type Device = DispatchDevice
Device type.
Source§type FloatTensorPrimitive = DispatchTensor
type FloatTensorPrimitive = DispatchTensor
Tensor primitive to be used for all float operations.
Source§type IntTensorPrimitive = DispatchTensor
type IntTensorPrimitive = DispatchTensor
Tensor primitive to be used for all int operations.
Source§type BoolTensorPrimitive = DispatchTensor
type BoolTensorPrimitive = DispatchTensor
Tensor primitive to be used for all bool operations.
Source§type QuantizedTensorPrimitive = DispatchTensor
type QuantizedTensorPrimitive = DispatchTensor
Tensor primitive to be used for all quantized operations.
Source§fn seed(device: &Self::Device, seed: u64)
fn seed(device: &Self::Device, seed: u64)
Seeds the backend on the specified device. Read more
Source§fn sync(device: &Self::Device) -> Result<(), ExecutionError>
fn sync(device: &Self::Device) -> Result<(), ExecutionError>
Sync the backend, ensure that all computation are finished.
Source§fn dtype_usage(device: &Self::Device, dtype: DType) -> DTypeUsageSet
fn dtype_usage(device: &Self::Device, dtype: DType) -> DTypeUsageSet
Returns the DTypeUsageSet for the given DType on the specified device.
Source§fn ad_enabled(device: &Self::Device) -> bool
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,
) -> Outputwhere
Func: Fn(Input) -> Output,
fn memory_persistent_allocations<Output, Input, Func>(
device: &Self::Device,
input: Input,
func: Func,
) -> Outputwhere
Func: Fn(Input) -> Output,
Sets the current allocation mode to persistent.
Source§fn memory_cleanup(device: &Self::Device)
fn memory_cleanup(device: &Self::Device)
Manually triggers a memory cleanup on the given device.
Source§impl BoolTensorOps<Dispatch> for Dispatch
impl BoolTensorOps<Dispatch> for Dispatch
Source§fn bool_empty(shape: Shape, device: &DispatchDevice) -> BoolTensor<Self>
fn bool_empty(shape: Shape, device: &DispatchDevice) -> BoolTensor<Self>
Creates a new bool tensor. Read more
Source§fn bool_zeros(shape: Shape, device: &DispatchDevice) -> BoolTensor<Self>
fn bool_zeros(shape: Shape, device: &DispatchDevice) -> BoolTensor<Self>
Creates a new bool tensor filled false. Read more
Source§fn bool_ones(shape: Shape, device: &DispatchDevice) -> BoolTensor<Self>
fn bool_ones(shape: Shape, device: &DispatchDevice) -> BoolTensor<Self>
Creates a new bool tensor filled true. Read more
Source§async fn bool_into_data(
tensor: BoolTensor<Self>,
) -> Result<TensorData, ExecutionError>
async fn bool_into_data( tensor: BoolTensor<Self>, ) -> Result<TensorData, ExecutionError>
Converts the tensor to a data structure. Read more
Source§fn bool_from_data(data: TensorData, device: &DispatchDevice) -> BoolTensor<Self>
fn bool_from_data(data: TensorData, device: &DispatchDevice) -> BoolTensor<Self>
Creates a tensor from the data structure. Read more
Source§fn bool_into_int(tensor: BoolTensor<Self>) -> IntTensor<Self>
fn bool_into_int(tensor: BoolTensor<Self>) -> IntTensor<Self>
Converts bool tensor to int tensor. Read more
Source§fn bool_into_float(tensor: BoolTensor<Self>) -> FloatTensor<Self>
fn bool_into_float(tensor: BoolTensor<Self>) -> FloatTensor<Self>
Converts bool tensor to float tensor. Read more
Source§fn bool_device(tensor: &BoolTensor<Self>) -> DispatchDevice
fn bool_device(tensor: &BoolTensor<Self>) -> DispatchDevice
Gets the device of the tensor. Read more
Source§fn bool_to_device(
tensor: BoolTensor<Self>,
device: &DispatchDevice,
) -> BoolTensor<Self>
fn bool_to_device( tensor: BoolTensor<Self>, device: &DispatchDevice, ) -> BoolTensor<Self>
Moves the tensor to the device.
Source§fn bool_reshape(tensor: BoolTensor<Self>, shape: Shape) -> BoolTensor<Self>
fn bool_reshape(tensor: BoolTensor<Self>, shape: Shape) -> BoolTensor<Self>
Reshapes the tensor. Read more
Source§fn bool_slice(tensor: BoolTensor<Self>, slices: &[Slice]) -> BoolTensor<Self>
fn bool_slice(tensor: BoolTensor<Self>, slices: &[Slice]) -> BoolTensor<Self>
Gets the values from the tensor for the given ranges. Read more
Source§fn bool_slice_assign(
tensor: BoolTensor<Self>,
slices: &[Slice],
value: BoolTensor<Self>,
) -> BoolTensor<Self>
fn bool_slice_assign( tensor: BoolTensor<Self>, slices: &[Slice], value: BoolTensor<Self>, ) -> BoolTensor<Self>
Sets the values in the tensor for the given ranges. Read more
Source§fn bool_mask_where(
tensor: BoolTensor<Self>,
mask: BoolTensor<Self>,
value: BoolTensor<Self>,
) -> BoolTensor<Self>
fn bool_mask_where( tensor: BoolTensor<Self>, mask: BoolTensor<Self>, value: BoolTensor<Self>, ) -> BoolTensor<Self>
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: BoolTensor<Self>,
mask: BoolTensor<Self>,
value: Scalar,
) -> BoolTensor<Self>
fn bool_mask_fill( tensor: BoolTensor<Self>, mask: BoolTensor<Self>, value: Scalar, ) -> BoolTensor<Self>
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: BoolTensor<Self>,
indices: IntTensor<Self>,
) -> BoolTensor<Self>
fn bool_gather( dim: usize, tensor: BoolTensor<Self>, indices: IntTensor<Self>, ) -> BoolTensor<Self>
Gather elements from the tensor at the given indices. Read more
Source§fn bool_scatter_or(
dim: usize,
tensor: BoolTensor<Self>,
indices: IntTensor<Self>,
value: BoolTensor<Self>,
) -> BoolTensor<Self>
fn bool_scatter_or( dim: usize, tensor: BoolTensor<Self>, indices: IntTensor<Self>, value: BoolTensor<Self>, ) -> BoolTensor<Self>
Scatter a given value to the tensor at the given indices using boolean or reduction. Read more
Source§fn bool_equal(lhs: BoolTensor<Self>, rhs: BoolTensor<Self>) -> BoolTensor<Self>
fn bool_equal(lhs: BoolTensor<Self>, rhs: BoolTensor<Self>) -> BoolTensor<Self>
Equates the two tensors. Read more
Source§fn bool_equal_elem(lhs: BoolTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn bool_equal_elem(lhs: BoolTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise equality comparison with a scalar. Read more
Source§fn bool_not(tensor: BoolTensor<Self>) -> BoolTensor<Self>
fn bool_not(tensor: BoolTensor<Self>) -> BoolTensor<Self>
Inverses boolean values. Read more
Source§fn bool_and(lhs: BoolTensor<Self>, rhs: BoolTensor<Self>) -> BoolTensor<Self>
fn bool_and(lhs: BoolTensor<Self>, rhs: BoolTensor<Self>) -> BoolTensor<Self>
Executes the logical and (
&&) operation on two boolean tensors. Read moreSource§fn bool_or(lhs: BoolTensor<Self>, rhs: BoolTensor<Self>) -> BoolTensor<Self>
fn bool_or(lhs: BoolTensor<Self>, rhs: BoolTensor<Self>) -> BoolTensor<Self>
Executes the logical or (
||) operation on two boolean tensors. Read moreSource§fn bool_swap_dims(
tensor: BoolTensor<Self>,
dim1: usize,
dim2: usize,
) -> BoolTensor<Self>
fn bool_swap_dims( tensor: BoolTensor<Self>, dim1: usize, dim2: usize, ) -> BoolTensor<Self>
Swaps two dimensions of a bool tensor. Read more
Source§fn bool_permute(tensor: BoolTensor<Self>, axes: &[usize]) -> BoolTensor<Self>
fn bool_permute(tensor: BoolTensor<Self>, axes: &[usize]) -> BoolTensor<Self>
Permutes the dimensions of a tensor. Read more
Source§fn bool_flip(tensor: BoolTensor<Self>, axes: &[usize]) -> BoolTensor<Self>
fn bool_flip(tensor: BoolTensor<Self>, axes: &[usize]) -> BoolTensor<Self>
Reverse the order of elements in a tensor along the given axes. Read more
Source§fn bool_expand(tensor: BoolTensor<Self>, shape: Shape) -> BoolTensor<Self>
fn bool_expand(tensor: BoolTensor<Self>, shape: Shape) -> BoolTensor<Self>
Broadcasts the bool
tensor to the given shape.Source§fn bool_unfold(
tensor: BoolTensor<Self>,
dim: usize,
size: usize,
step: usize,
) -> BoolTensor<Self>
fn bool_unfold( tensor: BoolTensor<Self>, dim: usize, size: usize, step: usize, ) -> BoolTensor<Self>
Unfold windows along a dimension. Read more
Source§fn bool_select(
tensor: BoolTensor<Self>,
dim: usize,
indices: IntTensor<Self>,
) -> BoolTensor<Self>
fn bool_select( tensor: BoolTensor<Self>, dim: usize, indices: IntTensor<Self>, ) -> BoolTensor<Self>
Select tensor elements along the given dimension corresponding to the given indices. Read more
Source§fn bool_select_or(
tensor: BoolTensor<Self>,
dim: usize,
indices: IntTensor<Self>,
value: BoolTensor<Self>,
) -> BoolTensor<Self>
fn bool_select_or( tensor: BoolTensor<Self>, dim: usize, indices: IntTensor<Self>, value: BoolTensor<Self>, ) -> BoolTensor<Self>
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_repeat_dim(
tensor: BoolTensor<Self>,
dim: usize,
times: usize,
) -> BoolTensor<Self>
fn bool_repeat_dim( tensor: BoolTensor<Self>, dim: usize, times: usize, ) -> BoolTensor<Self>
Repeats one dimension of the tensor a given number of times along that dimension. Read more
Source§fn bool_cat(tensors: Vec<BoolTensor<Self>>, dim: usize) -> BoolTensor<Self>
fn bool_cat(tensors: Vec<BoolTensor<Self>>, dim: usize) -> BoolTensor<Self>
Concatenates the tensors along the given dimension. Read more
Source§fn bool_not_equal(
lhs: BoolTensor<Self>,
rhs: BoolTensor<Self>,
) -> BoolTensor<Self>
fn bool_not_equal( lhs: BoolTensor<Self>, rhs: BoolTensor<Self>, ) -> BoolTensor<Self>
Element-wise non-equality comparison. Read more
Source§fn bool_not_equal_elem(lhs: BoolTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn bool_not_equal_elem(lhs: BoolTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise non-equality comparison with a scalar. Read more
Source§fn bool_xor(lhs: BoolTensor<Self>, rhs: BoolTensor<Self>) -> BoolTensor<Self>
fn bool_xor(lhs: BoolTensor<Self>, rhs: BoolTensor<Self>) -> BoolTensor<Self>
Element-wise exclusive or. Read more
Source§fn bool_transpose(tensor: BoolTensor<Self>) -> BoolTensor<Self>
fn bool_transpose(tensor: BoolTensor<Self>) -> BoolTensor<Self>
Transposes a bool tensor. Read more
Source§fn bool_any(tensor: BoolTensor<Self>) -> BoolTensor<Self>
fn bool_any(tensor: BoolTensor<Self>) -> BoolTensor<Self>
Tests if any element in the boolean
tensor evaluates to True. Read moreSource§fn bool_any_dim(tensor: BoolTensor<Self>, dim: usize) -> BoolTensor<Self>
fn bool_any_dim(tensor: BoolTensor<Self>, dim: usize) -> BoolTensor<Self>
Source§fn bool_all(tensor: BoolTensor<Self>) -> BoolTensor<Self>
fn bool_all(tensor: BoolTensor<Self>) -> BoolTensor<Self>
Tests if all elements in the boolean
tensor evaluate to True. Read moreSource§fn bool_all_dim(tensor: BoolTensor<Self>, dim: usize) -> BoolTensor<Self>
fn bool_all_dim(tensor: BoolTensor<Self>, dim: usize) -> BoolTensor<Self>
Source§async fn bool_argwhere(tensor: BoolTensor<Self>) -> IntTensor<Self>
async fn bool_argwhere(tensor: BoolTensor<Self>) -> IntTensor<Self>
Compute the indices of the elements that are non-zero, grouped by element. Read more
Source§impl FloatTensorOps<Dispatch> for Dispatch
impl FloatTensorOps<Dispatch> for Dispatch
Source§fn float_from_data(
data: TensorData,
device: &DispatchDevice,
) -> FloatTensor<Self>
fn float_from_data( data: TensorData, device: &DispatchDevice, ) -> FloatTensor<Self>
Creates a new tensor from the data structure. Read more
Source§fn float_random(
shape: Shape,
distribution: Distribution,
device: &DispatchDevice,
) -> FloatTensor<Self>
fn float_random( shape: Shape, distribution: Distribution, device: &DispatchDevice, ) -> FloatTensor<Self>
Creates a new tensor with random values. Read more
Source§async fn float_into_data(
tensor: FloatTensor<Self>,
) -> Result<TensorData, ExecutionError>
async fn float_into_data( tensor: FloatTensor<Self>, ) -> Result<TensorData, ExecutionError>
Converts the tensor to a data structure. Read more
Source§fn float_device(tensor: &FloatTensor<Self>) -> DispatchDevice
fn float_device(tensor: &FloatTensor<Self>) -> DispatchDevice
Gets the device of the tensor. Read more
Source§fn float_to_device(
tensor: FloatTensor<Self>,
device: &DispatchDevice,
) -> FloatTensor<Self>
fn float_to_device( tensor: FloatTensor<Self>, device: &DispatchDevice, ) -> FloatTensor<Self>
Moves the tensor to the given device. Read more
Source§fn float_into_int(tensor: FloatTensor<Self>) -> IntTensor<Self>
fn float_into_int(tensor: FloatTensor<Self>) -> IntTensor<Self>
Converts float tensor to int tensor. Read more
Source§fn float_empty(
shape: Shape,
device: &DispatchDevice,
dtype: FloatDType,
) -> FloatTensor<Self>
fn float_empty( shape: Shape, device: &DispatchDevice, dtype: FloatDType, ) -> FloatTensor<Self>
Creates an empty tensor with the given shape. Read more
Source§fn float_add(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_add( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> FloatTensor<Self>
Adds two tensors together. Read more
Source§fn float_add_scalar(lhs: FloatTensor<Self>, rhs: Scalar) -> FloatTensor<Self>
fn float_add_scalar(lhs: FloatTensor<Self>, rhs: Scalar) -> FloatTensor<Self>
Adds a scalar to a tensor. Read more
Source§fn float_sub(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_sub( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> FloatTensor<Self>
Subtracts two tensors. Read more
Source§fn float_sub_scalar(lhs: FloatTensor<Self>, rhs: Scalar) -> FloatTensor<Self>
fn float_sub_scalar(lhs: FloatTensor<Self>, rhs: Scalar) -> FloatTensor<Self>
Subtracts a scalar from a tensor. Read more
Source§fn float_mul(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_mul( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> FloatTensor<Self>
Multiplies two tensors together element-wise.
Source§fn float_mul_scalar(lhs: FloatTensor<Self>, rhs: Scalar) -> FloatTensor<Self>
fn float_mul_scalar(lhs: FloatTensor<Self>, rhs: Scalar) -> FloatTensor<Self>
Multiplies a tensor by a scalar. Read more
Source§fn float_div(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_div( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> FloatTensor<Self>
Divides two tensors element-wise. Read more
Source§fn float_div_scalar(lhs: FloatTensor<Self>, rhs: Scalar) -> FloatTensor<Self>
fn float_div_scalar(lhs: FloatTensor<Self>, rhs: Scalar) -> FloatTensor<Self>
Divides a tensor by a scalar. Read more
Source§fn float_remainder(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_remainder( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> FloatTensor<Self>
Computes the remainder of division between two tensors element-wise. Read more
Source§fn float_remainder_scalar(
lhs: FloatTensor<Self>,
rhs: Scalar,
) -> FloatTensor<Self>
fn float_remainder_scalar( lhs: FloatTensor<Self>, rhs: Scalar, ) -> FloatTensor<Self>
Computes the modulus of a tensor given a scalar. Read more
Source§fn float_matmul(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_matmul( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> FloatTensor<Self>
Multiplies two tensors together using matrix multiplication. Read more
Source§fn float_cross(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
dim: usize,
) -> FloatTensor<Self>
fn float_cross( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, dim: usize, ) -> FloatTensor<Self>
Computes the cross product of two tensors along a given dimension. Read more
Source§fn float_recip(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_recip(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Calculates the reciprocals element-wise
Source§fn float_swap_dims(
tensor: FloatTensor<Self>,
dim1: usize,
dim2: usize,
) -> FloatTensor<Self>
fn float_swap_dims( tensor: FloatTensor<Self>, dim1: usize, dim2: usize, ) -> FloatTensor<Self>
Swaps two dimensions of a tensor. Read more
Source§fn float_permute(tensor: FloatTensor<Self>, axes: &[usize]) -> FloatTensor<Self>
fn float_permute(tensor: FloatTensor<Self>, axes: &[usize]) -> FloatTensor<Self>
Permutes the dimensions of a tensor. Read more
Source§fn float_flip(tensor: FloatTensor<Self>, axes: &[usize]) -> FloatTensor<Self>
fn float_flip(tensor: FloatTensor<Self>, axes: &[usize]) -> FloatTensor<Self>
Reverse the order of elements in a tensor along the given axes. Read more
Source§fn float_reshape(tensor: FloatTensor<Self>, shape: Shape) -> FloatTensor<Self>
fn float_reshape(tensor: FloatTensor<Self>, shape: Shape) -> FloatTensor<Self>
Reshapes a tensor. Read more
Source§fn float_gather(
dim: usize,
tensor: FloatTensor<Self>,
indices: IntTensor<Self>,
) -> FloatTensor<Self>
fn float_gather( dim: usize, tensor: FloatTensor<Self>, indices: IntTensor<Self>, ) -> FloatTensor<Self>
Gather elements from a tensor. Read more
Source§fn float_scatter_add(
dim: usize,
tensor: FloatTensor<Self>,
indices: IntTensor<Self>,
value: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_scatter_add( dim: usize, tensor: FloatTensor<Self>, indices: IntTensor<Self>, value: FloatTensor<Self>, ) -> FloatTensor<Self>
Scatter elements into a tensor using sum reduction. Read more
Source§fn float_select(
tensor: FloatTensor<Self>,
dim: usize,
indices: IntTensor<Self>,
) -> FloatTensor<Self>
fn float_select( tensor: FloatTensor<Self>, dim: usize, indices: IntTensor<Self>, ) -> FloatTensor<Self>
Select tensor elements along the given dimension corresponding for the given indices. Read more
Source§fn float_select_add(
tensor: FloatTensor<Self>,
dim: usize,
indices: IntTensor<Self>,
value: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_select_add( tensor: FloatTensor<Self>, dim: usize, indices: IntTensor<Self>, value: FloatTensor<Self>, ) -> FloatTensor<Self>
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: FloatTensor<Self>, slices: &[Slice]) -> FloatTensor<Self>
fn float_slice(tensor: FloatTensor<Self>, slices: &[Slice]) -> FloatTensor<Self>
Select tensor elements corresponding to the given slices. Read more
Source§fn float_slice_assign(
tensor: FloatTensor<Self>,
slices: &[Slice],
value: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_slice_assign( tensor: FloatTensor<Self>, slices: &[Slice], value: FloatTensor<Self>, ) -> FloatTensor<Self>
Assign the selected elements corresponding to the given slices to the given value. Read more
Source§fn float_mask_where(
tensor: FloatTensor<Self>,
mask: BoolTensor<Self>,
value: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_mask_where( tensor: FloatTensor<Self>, mask: BoolTensor<Self>, value: FloatTensor<Self>, ) -> FloatTensor<Self>
Update the given tensor with the value tensor where the mask is true. Read more
Source§fn float_mask_fill(
tensor: FloatTensor<Self>,
mask: BoolTensor<Self>,
value: Scalar,
) -> FloatTensor<Self>
fn float_mask_fill( tensor: FloatTensor<Self>, mask: BoolTensor<Self>, value: Scalar, ) -> FloatTensor<Self>
Update the given tensor with the value where the mask is true. Read more
Source§fn float_equal(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> BoolTensor<Self>
fn float_equal( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> BoolTensor<Self>
Equal comparison of two tensors. Read more
Source§fn float_equal_elem(lhs: FloatTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn float_equal_elem(lhs: FloatTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Equal comparison of a tensor and a scalar. Read more
Source§fn float_greater(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> BoolTensor<Self>
fn float_greater( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> BoolTensor<Self>
Greater than comparison of two tensors. Read more
Source§fn float_greater_elem(lhs: FloatTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn float_greater_elem(lhs: FloatTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Greater than comparison of a tensor and a scalar. Read more
Source§fn float_greater_equal(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> BoolTensor<Self>
fn float_greater_equal( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> BoolTensor<Self>
Greater than or equal comparison of two tensors. Read more
Source§fn float_greater_equal_elem(
lhs: FloatTensor<Self>,
rhs: Scalar,
) -> BoolTensor<Self>
fn float_greater_equal_elem( lhs: FloatTensor<Self>, rhs: Scalar, ) -> BoolTensor<Self>
Greater than or equal comparison of a tensor and a scalar. Read more
Source§fn float_lower(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> BoolTensor<Self>
fn float_lower( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> BoolTensor<Self>
Less than comparison of two tensors. Read more
Source§fn float_lower_elem(lhs: FloatTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn float_lower_elem(lhs: FloatTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Less than comparison of a tensor and a scalar. Read more
Source§fn float_lower_equal(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> BoolTensor<Self>
fn float_lower_equal( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> BoolTensor<Self>
Less than or equal comparison of two tensors. Read more
Source§fn float_lower_equal_elem(
lhs: FloatTensor<Self>,
rhs: Scalar,
) -> BoolTensor<Self>
fn float_lower_equal_elem( lhs: FloatTensor<Self>, rhs: Scalar, ) -> BoolTensor<Self>
Less than or equal comparison of a tensor and a scalar. Read more
Source§fn float_sum(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_sum(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Sum of all elements in a tensor. Read more
Source§fn float_sum_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_sum_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Sum of all elements in a tensor along a dimension. Read more
Source§fn float_mean_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_mean_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Mean of all elements in a tensor along a dimension. Read more
Source§fn float_cumsum(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_cumsum(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Computes the cumulative sum of elements along a dimension. Read more
Source§fn float_cumprod(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_cumprod(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Computes the cumulative product of elements along a dimension. Read more
Source§fn float_cummin(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_cummin(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Computes the cumulative minimum of elements along a dimension. Read more
Source§fn float_cummax(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_cummax(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Computes the cumulative maximum of elements along a dimension. Read more
Source§fn float_cast(tensor: FloatTensor<Self>, dtype: FloatDType) -> FloatTensor<Self>
fn float_cast(tensor: FloatTensor<Self>, dtype: FloatDType) -> FloatTensor<Self>
Converts a tensor to another floating point data type. Read more
Source§fn float_exp(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_exp(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with exponential values. Read more
Source§fn float_log(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_log(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with natural logarithm values. Read more
Source§fn float_log1p(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_log1p(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with logarithm values of (1 + Xi). Read more
Source§fn float_powf(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_powf( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> FloatTensor<Self>
Element-wise power with a FloatTensor. Read more
Source§fn float_powf_scalar_impl(
tensor: FloatTensor<Self>,
value: Scalar,
) -> FloatTensor<Self>
fn float_powf_scalar_impl( tensor: FloatTensor<Self>, value: Scalar, ) -> FloatTensor<Self>
Returns a new tensor with values raised to the power of float
value. Read moreSource§fn float_sqrt(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_sqrt(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with square root values. Read more
Source§fn float_abs(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_abs(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with absolute values. Read more
Source§fn float_cos(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_cos(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with cosine values. Read more
Source§fn float_sin(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_sin(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with sine values. Read more
Source§fn float_tan(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_tan(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with tangent values. Read more
Source§fn float_cosh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_cosh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with hyperbolic cosine values. Read more
Source§fn float_sinh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_sinh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with hyperbolic sine values. Read more
Source§fn float_tanh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_tanh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with hyperbolic tangent values. Read more
Source§fn float_acos(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_acos(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with inverse cosine values. Read more
Source§fn float_acosh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_acosh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with inverse hyperbolic cosine values. Read more
Source§fn float_asin(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_asin(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with inverse sine values. Read more
Source§fn float_asinh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_asinh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with inverse hyperbolic sine values. Read more
Source§fn float_atan(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_atan(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with the inverse tangent values. Read more
Source§fn float_atanh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_atanh(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with the inverse hyperbolic tangent values. Read more
Source§fn float_atan2(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> FloatTensor<Self>
fn float_atan2( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> FloatTensor<Self>
Source§fn float_round(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_round(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with rounded values. Read more
Source§fn float_floor(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_floor(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with floored values. Read more
Source§fn float_ceil(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_ceil(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with ceiled values. Read more
Source§fn float_trunc(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_trunc(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with truncated values. Read more
Source§fn float_erf(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_erf(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns a new tensor with the error function values. Read more
Source§fn float_argmax(tensor: FloatTensor<Self>, dim: usize) -> IntTensor<Self>
fn float_argmax(tensor: FloatTensor<Self>, dim: usize) -> IntTensor<Self>
Gets the indices of the maximum elements of a tensor along an axis. Read more
Source§fn float_argmin(tensor: FloatTensor<Self>, dim: usize) -> IntTensor<Self>
fn float_argmin(tensor: FloatTensor<Self>, dim: usize) -> IntTensor<Self>
Gets the indices of the minimum elements of a tensor along an axis. Read more
Source§fn float_expand(tensor: FloatTensor<Self>, shape: Shape) -> FloatTensor<Self>
fn float_expand(tensor: FloatTensor<Self>, shape: Shape) -> FloatTensor<Self>
Broadcasts the float
tensor to the given shape.Source§fn float_unfold(
tensor: FloatTensor<Self>,
dim: usize,
size: usize,
step: usize,
) -> FloatTensor<Self>
fn float_unfold( tensor: FloatTensor<Self>, dim: usize, size: usize, step: usize, ) -> FloatTensor<Self>
Unfold windows along a dimension. Read more
Source§fn float_detach(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_detach(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Detaches a tensor from the computation graph.
Source§fn float_set_require_grad(
tensor: FloatTensor<Self>,
require_grad: bool,
) -> FloatTensor<Self>
fn float_set_require_grad( tensor: FloatTensor<Self>, require_grad: bool, ) -> FloatTensor<Self>
Sets the
require_grad flag of a tensor.Source§fn float_is_require_grad(tensor: &FloatTensor<Self>) -> bool
fn float_is_require_grad(tensor: &FloatTensor<Self>) -> bool
Returns the
require_grad flag of a tensor.Source§fn float_zeros(
shape: Shape,
device: &DispatchDevice,
dtype: FloatDType,
) -> FloatTensor<Self>
fn float_zeros( shape: Shape, device: &DispatchDevice, dtype: FloatDType, ) -> FloatTensor<Self>
Creates a new tensor with zeros. Read more
Source§fn float_ones(
shape: Shape,
device: &DispatchDevice,
dtype: FloatDType,
) -> FloatTensor<Self>
fn float_ones( shape: Shape, device: &DispatchDevice, dtype: FloatDType, ) -> FloatTensor<Self>
Creates a new tensor with ones. Read more
Source§fn float_full(
shape: Shape,
fill_value: Scalar,
device: &DispatchDevice,
dtype: FloatDType,
) -> FloatTensor<Self>
fn float_full( shape: Shape, fill_value: Scalar, device: &DispatchDevice, dtype: FloatDType, ) -> FloatTensor<Self>
Creates a tensor filled with given value. Read more
Source§fn float_repeat_dim(
tensor: FloatTensor<Self>,
dim: usize,
times: usize,
) -> FloatTensor<Self>
fn float_repeat_dim( tensor: FloatTensor<Self>, dim: usize, times: usize, ) -> FloatTensor<Self>
Repeat the tensor along the given dimension. Read more
Source§fn float_clamp_min(tensor: FloatTensor<Self>, min: Scalar) -> FloatTensor<Self>
fn float_clamp_min(tensor: FloatTensor<Self>, min: Scalar) -> FloatTensor<Self>
Clamps a tensor under a minimum value. Read more
Source§fn float_clamp_max(tensor: FloatTensor<Self>, max: Scalar) -> FloatTensor<Self>
fn float_clamp_max(tensor: FloatTensor<Self>, max: Scalar) -> FloatTensor<Self>
Clamps a tensor over a maximum value. Read more
Source§fn float_clamp(
tensor: FloatTensor<Self>,
min: Scalar,
max: Scalar,
) -> FloatTensor<Self>
fn float_clamp( tensor: FloatTensor<Self>, min: Scalar, max: Scalar, ) -> FloatTensor<Self>
Clamps a tensor between a minimum and maximum value. Read more
Source§fn float_neg(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_neg(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Negates a tensor element-wise.
Source§fn float_transpose(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_transpose(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Transposes a tensor. Read more
Source§fn float_not_equal(
lhs: FloatTensor<Self>,
rhs: FloatTensor<Self>,
) -> BoolTensor<Self>
fn float_not_equal( lhs: FloatTensor<Self>, rhs: FloatTensor<Self>, ) -> BoolTensor<Self>
Element-wise non-equality comparison. Read more
Source§fn float_not_equal_elem(lhs: FloatTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn float_not_equal_elem(lhs: FloatTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise non-equality comparison with a scalar. Read more
Source§fn float_prod(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_prod(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Product of all elements in a tensor. Read more
Source§fn float_prod_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_prod_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Product of all elements in a tensor along a dimension. Read more
Source§fn float_mean(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_mean(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Mean of all elements in a tensor. Read more
Source§fn float_powi(lhs: FloatTensor<Self>, rhs: IntTensor<Self>) -> FloatTensor<Self>
fn float_powi(lhs: FloatTensor<Self>, rhs: IntTensor<Self>) -> FloatTensor<Self>
Element-wise power with an IntTensor. Read more
Source§fn float_powi_scalar_impl(
lhs: FloatTensor<Self>,
rhs: Scalar,
) -> FloatTensor<Self>
fn float_powi_scalar_impl( lhs: FloatTensor<Self>, rhs: Scalar, ) -> FloatTensor<Self>
Raises a tensor to the power of an int scalar. Read more
Source§fn float_powf_scalar(
tensor: FloatTensor<Self>,
value: Scalar,
) -> FloatTensor<Self>
fn float_powf_scalar( tensor: FloatTensor<Self>, value: Scalar, ) -> FloatTensor<Self>
Returns a new tensor with values raised to the power of float
value. Read moreSource§fn float_cat(tensors: Vec<FloatTensor<Self>>, dim: usize) -> FloatTensor<Self>
fn float_cat(tensors: Vec<FloatTensor<Self>>, dim: usize) -> FloatTensor<Self>
Concatenates tensors along a dimension. Read more
Source§fn float_max(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_max(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Gets the maximum element of a tensor. Read more
Source§fn float_max_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_max_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Gets the maximum elements of a tensor along an axis. Read more
Source§fn float_max_dim_with_indices(
tensor: FloatTensor<Self>,
dim: usize,
) -> (FloatTensor<Self>, IntTensor<Self>)
fn float_max_dim_with_indices( tensor: FloatTensor<Self>, dim: usize, ) -> (FloatTensor<Self>, IntTensor<Self>)
Gets the maximum elements of a tensor along an axis and their indices. Read more
Source§fn float_min(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_min(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Gets the minimum element of a tensor. Read more
Source§fn float_min_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_min_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Gets the minimum elements of a tensor along an axis. Read more
Source§fn float_min_dim_with_indices(
tensor: FloatTensor<Self>,
dim: usize,
) -> (FloatTensor<Self>, IntTensor<Self>)
fn float_min_dim_with_indices( tensor: FloatTensor<Self>, dim: usize, ) -> (FloatTensor<Self>, IntTensor<Self>)
Gets the minimum elements of a tensor along an axis and their indices. Read more
Source§fn float_max_abs(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_max_abs(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Gets the maximum absolute element of a tensor. Read more
Source§fn float_max_abs_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
fn float_max_abs_dim(tensor: FloatTensor<Self>, dim: usize) -> FloatTensor<Self>
Gets the maximum absolute elements of a tensor along an axis. Read more
Source§fn float_any(tensor: FloatTensor<Self>) -> BoolTensor<Self>
fn float_any(tensor: FloatTensor<Self>) -> BoolTensor<Self>
Tests if any element in the float
tensor evaluates to True. Read moreSource§fn float_any_dim(tensor: FloatTensor<Self>, dim: usize) -> BoolTensor<Self>
fn float_any_dim(tensor: FloatTensor<Self>, dim: usize) -> BoolTensor<Self>
Source§fn float_all(tensor: FloatTensor<Self>) -> BoolTensor<Self>
fn float_all(tensor: FloatTensor<Self>) -> BoolTensor<Self>
Tests if all elements in the float
tensor evaluate to True. Read moreSource§fn float_all_dim(tensor: FloatTensor<Self>, dim: usize) -> BoolTensor<Self>
fn float_all_dim(tensor: FloatTensor<Self>, dim: usize) -> BoolTensor<Self>
Source§fn float_sign(tensor: FloatTensor<Self>) -> FloatTensor<Self>
fn float_sign(tensor: FloatTensor<Self>) -> FloatTensor<Self>
Returns the signs of the float
tensor. Read moreSource§fn float_sort(
tensor: FloatTensor<Self>,
dim: usize,
descending: bool,
) -> FloatTensor<Self>
fn float_sort( tensor: FloatTensor<Self>, dim: usize, descending: bool, ) -> FloatTensor<Self>
Sort the elements of the input
tensor by value in along a given dimension. Read moreSource§fn float_sort_with_indices(
tensor: FloatTensor<Self>,
dim: usize,
descending: bool,
) -> (FloatTensor<Self>, IntTensor<Self>)
fn float_sort_with_indices( tensor: FloatTensor<Self>, dim: usize, descending: bool, ) -> (FloatTensor<Self>, IntTensor<Self>)
Sort the elements of the input
tensor by value in along a given dimension. Read moreSource§fn float_argsort(
tensor: FloatTensor<Self>,
dim: usize,
descending: bool,
) -> IntTensor<Self>
fn float_argsort( tensor: FloatTensor<Self>, dim: usize, descending: bool, ) -> IntTensor<Self>
Returns the indices that sort the elements of the input
tensor by value along a given dimension. Read moreSource§fn float_grid_sample_2d(
tensor: FloatTensor<Self>,
grid: FloatTensor<Self>,
options: GridSampleOptions,
) -> FloatTensor<Self>
fn float_grid_sample_2d( tensor: FloatTensor<Self>, grid: FloatTensor<Self>, options: GridSampleOptions, ) -> FloatTensor<Self>
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_is_nan(tensor: FloatTensor<Self>) -> BoolTensor<Self>
fn float_is_nan(tensor: FloatTensor<Self>) -> BoolTensor<Self>
Returns a new tensor with boolean elements indicating whether each element of the input is NaN. Read more
Source§fn float_is_inf(tensor: FloatTensor<Self>) -> BoolTensor<Self>
fn float_is_inf(tensor: FloatTensor<Self>) -> BoolTensor<Self>
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_powi_scalar(
lhs: <B as Backend>::FloatTensorPrimitive,
rhs: Scalar,
) -> <B as Backend>::FloatTensorPrimitive
fn float_powi_scalar( lhs: <B as Backend>::FloatTensorPrimitive, rhs: Scalar, ) -> <B as Backend>::FloatTensorPrimitive
Raises a tensor to the power of an int scalar. Read more
Source§impl IntTensorOps<Dispatch> for Dispatch
impl IntTensorOps<Dispatch> for Dispatch
Source§fn int_empty(
shape: Shape,
device: &DispatchDevice,
dtype: IntDType,
) -> IntTensor<Self>
fn int_empty( shape: Shape, device: &DispatchDevice, dtype: IntDType, ) -> IntTensor<Self>
Creates a new int tensor. Read more
Source§async fn int_into_data(
tensor: IntTensor<Self>,
) -> Result<TensorData, ExecutionError>
async fn int_into_data( tensor: IntTensor<Self>, ) -> Result<TensorData, ExecutionError>
Converts the tensor to a data structure. Read more
Source§fn int_from_data(data: TensorData, device: &DispatchDevice) -> IntTensor<Self>
fn int_from_data(data: TensorData, device: &DispatchDevice) -> IntTensor<Self>
Creates a tensor from the data structure. Read more
Source§fn int_device(tensor: &IntTensor<Self>) -> DispatchDevice
fn int_device(tensor: &IntTensor<Self>) -> DispatchDevice
Gets the device of the tensor. Read more
Source§fn int_to_device(
tensor: IntTensor<Self>,
device: &DispatchDevice,
) -> IntTensor<Self>
fn int_to_device( tensor: IntTensor<Self>, device: &DispatchDevice, ) -> IntTensor<Self>
Moves the tensor to the given device.
Source§fn int_reshape(tensor: IntTensor<Self>, shape: Shape) -> IntTensor<Self>
fn int_reshape(tensor: IntTensor<Self>, shape: Shape) -> IntTensor<Self>
Reshapes the tensor. Read more
Source§fn int_slice(tensor: IntTensor<Self>, slices: &[Slice]) -> IntTensor<Self>
fn int_slice(tensor: IntTensor<Self>, slices: &[Slice]) -> IntTensor<Self>
Gets the element at the given indices. Read more
Source§fn int_slice_assign(
tensor: IntTensor<Self>,
slices: &[Slice],
value: IntTensor<Self>,
) -> IntTensor<Self>
fn int_slice_assign( tensor: IntTensor<Self>, slices: &[Slice], value: IntTensor<Self>, ) -> IntTensor<Self>
Sets the values in the tensor for the given ranges. Read more
Source§fn int_into_float(tensor: IntTensor<Self>) -> FloatTensor<Self>
fn int_into_float(tensor: IntTensor<Self>) -> FloatTensor<Self>
Converts int tensor to float tensor. Read more
Source§fn int_mask_where(
tensor: IntTensor<Self>,
mask: BoolTensor<Self>,
value: IntTensor<Self>,
) -> IntTensor<Self>
fn int_mask_where( tensor: IntTensor<Self>, mask: BoolTensor<Self>, value: IntTensor<Self>, ) -> IntTensor<Self>
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: IntTensor<Self>,
mask: BoolTensor<Self>,
value: Scalar,
) -> IntTensor<Self>
fn int_mask_fill( tensor: IntTensor<Self>, mask: BoolTensor<Self>, value: Scalar, ) -> IntTensor<Self>
Fills the tensor with the given value if the mask is true at the given indices. Read more
Source§fn int_gather(
dim: usize,
tensor: IntTensor<Self>,
indices: IntTensor<Self>,
) -> IntTensor<Self>
fn int_gather( dim: usize, tensor: IntTensor<Self>, indices: IntTensor<Self>, ) -> IntTensor<Self>
Gather elements from the tensor at the given indices. Read more
Source§fn int_scatter_add(
dim: usize,
tensor: IntTensor<Self>,
indices: IntTensor<Self>,
value: IntTensor<Self>,
) -> IntTensor<Self>
fn int_scatter_add( dim: usize, tensor: IntTensor<Self>, indices: IntTensor<Self>, value: IntTensor<Self>, ) -> IntTensor<Self>
Scatter a given value to the tensor at the given indices using sum reduction. Read more
Source§fn int_select(
tensor: IntTensor<Self>,
dim: usize,
indices: IntTensor<Self>,
) -> IntTensor<Self>
fn int_select( tensor: IntTensor<Self>, dim: usize, indices: IntTensor<Self>, ) -> IntTensor<Self>
Select tensor elements along the given dimension corresponding to the given indices. Read more
Source§fn int_select_add(
tensor: IntTensor<Self>,
dim: usize,
indices: IntTensor<Self>,
value: IntTensor<Self>,
) -> IntTensor<Self>
fn int_select_add( tensor: IntTensor<Self>, dim: usize, indices: IntTensor<Self>, value: IntTensor<Self>, ) -> IntTensor<Self>
Assign the selected elements along the given dimension corresponding to the given indices
to the given value using sum reduction. Read more
Source§fn int_equal(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> BoolTensor<Self>
fn int_equal(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> BoolTensor<Self>
Element-wise equality comparison. Read more
Source§fn int_equal_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn int_equal_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise equality comparison with a scalar. Read more
Source§fn int_greater(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> BoolTensor<Self>
fn int_greater(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> BoolTensor<Self>
Element-wise greater than comparison. Read more
Source§fn int_greater_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn int_greater_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise greater than comparison with a scalar. Read more
Source§fn int_greater_equal(
lhs: IntTensor<Self>,
rhs: IntTensor<Self>,
) -> BoolTensor<Self>
fn int_greater_equal( lhs: IntTensor<Self>, rhs: IntTensor<Self>, ) -> BoolTensor<Self>
Element-wise greater than or equal comparison. Read more
Source§fn int_greater_equal_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn int_greater_equal_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise greater than or equal comparison with a scalar. Read more
Source§fn int_lower(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> BoolTensor<Self>
fn int_lower(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> BoolTensor<Self>
Element-wise less than comparison. Read more
Source§fn int_lower_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn int_lower_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise less than comparison with a scalar. Read more
Source§fn int_lower_equal(
lhs: IntTensor<Self>,
rhs: IntTensor<Self>,
) -> BoolTensor<Self>
fn int_lower_equal( lhs: IntTensor<Self>, rhs: IntTensor<Self>, ) -> BoolTensor<Self>
Element-wise less than or equal comparison. Read more
Source§fn int_lower_equal_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn int_lower_equal_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise less than or equal comparison with a scalar. Read more
Source§fn int_add(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn int_add(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Element-wise addition. Read more
Source§fn int_add_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn int_add_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Element-wise addition with a scalar. Read more
Source§fn int_sub(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn int_sub(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Element-wise subtraction. Read more
Source§fn int_sub_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn int_sub_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Element-wise subtraction with a scalar. Read more
Source§fn int_mul(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn int_mul(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Element-wise multiplication. Read more
Source§fn int_mul_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn int_mul_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Element-wise multiplication with a scalar. Read more
Source§fn int_div(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn int_div(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Element-wise division. Read more
Source§fn int_div_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn int_div_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Element-wise division with a scalar. Read more
Source§fn int_remainder(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn int_remainder(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Element-wise modulus. Read more
Source§fn int_remainder_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn int_remainder_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Element-wise modulus with a scalar. Read more
Source§fn int_matmul(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn int_matmul(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Multiplies two tensors together using matrix multiplication. Read more
Source§fn int_sum(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_sum(tensor: IntTensor<Self>) -> IntTensor<Self>
Sums all elements in the tensor. Read more
Source§fn int_sum_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_sum_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Sums all elements in the tensor along a dimension. Read more
Source§fn int_prod(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_prod(tensor: IntTensor<Self>) -> IntTensor<Self>
Computes the product of all elements in the tensor. Read more
Source§fn int_prod_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_prod_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Computes the product of all elements in the tensor along a dimension. Read more
Source§fn int_mean_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_mean_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Computes the mean of all elements in the tensor along a dimension. Read more
Source§fn int_cumsum(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_cumsum(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Computes the cumulative sum of elements along a dimension. Read more
Source§fn int_cumprod(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_cumprod(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Computes the cumulative product of elements along a dimension. Read more
Source§fn int_cummin(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_cummin(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Computes the cumulative minimum of elements along a dimension. Read more
Source§fn int_cummax(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_cummax(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Computes the cumulative maximum of elements along a dimension. Read more
Source§fn int_argmax(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_argmax(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Gets the indices of the maximum elements along a dimension. Read more
Source§fn int_argmin(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_argmin(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Gets the indices of the minimum elements along a dimension. Read more
Source§fn int_abs(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_abs(tensor: IntTensor<Self>) -> IntTensor<Self>
Returns a new tensor with absolute values. Read more
Source§fn int_swap_dims(
tensor: IntTensor<Self>,
dim1: usize,
dim2: usize,
) -> IntTensor<Self>
fn int_swap_dims( tensor: IntTensor<Self>, dim1: usize, dim2: usize, ) -> IntTensor<Self>
Swaps two dimensions of an int tensor. Read more
Source§fn int_permute(tensor: IntTensor<Self>, axes: &[usize]) -> IntTensor<Self>
fn int_permute(tensor: IntTensor<Self>, axes: &[usize]) -> IntTensor<Self>
Permutes the dimensions of a tensor. Read more
Source§fn int_flip(tensor: IntTensor<Self>, axes: &[usize]) -> IntTensor<Self>
fn int_flip(tensor: IntTensor<Self>, axes: &[usize]) -> IntTensor<Self>
Reverse the order of elements in a tensor along the given axes. Read more
Source§fn int_random(
shape: Shape,
distribution: Distribution,
device: &DispatchDevice,
) -> IntTensor<Self>
fn int_random( shape: Shape, distribution: Distribution, device: &DispatchDevice, ) -> IntTensor<Self>
Creates a new int tensor with random values. Read more
Source§fn int_expand(tensor: IntTensor<Self>, shape: Shape) -> IntTensor<Self>
fn int_expand(tensor: IntTensor<Self>, shape: Shape) -> IntTensor<Self>
Broadcasts the int
tensor to the given shape.Source§fn bitwise_and(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn bitwise_and(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Bitwise AND operation for Int Tensors
Source§fn bitwise_and_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn bitwise_and_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Bitwise AND operation for Int Tensors with a scalar
Source§fn bitwise_or(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn bitwise_or(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Bitwise OR operation for Int Tensors
Source§fn bitwise_or_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn bitwise_or_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Bitwise OR operation for Int Tensors with a scalar
Source§fn bitwise_xor(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn bitwise_xor(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Bitwise XOR operation for Int Tensors
Source§fn bitwise_xor_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn bitwise_xor_scalar(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Bitwise XOR operation for Int Tensors with a scalar
Source§fn bitwise_not(tensor: IntTensor<Self>) -> IntTensor<Self>
fn bitwise_not(tensor: IntTensor<Self>) -> IntTensor<Self>
Bitwise NOT operation for Int Tensors
Source§fn bitwise_left_shift(
lhs: IntTensor<Self>,
rhs: IntTensor<Self>,
) -> IntTensor<Self>
fn bitwise_left_shift( lhs: IntTensor<Self>, rhs: IntTensor<Self>, ) -> IntTensor<Self>
Bitwise left shift operation for Int Tensors
Source§fn bitwise_left_shift_scalar(
lhs: IntTensor<Self>,
rhs: Scalar,
) -> IntTensor<Self>
fn bitwise_left_shift_scalar( lhs: IntTensor<Self>, rhs: Scalar, ) -> IntTensor<Self>
Bitwise left shift operation for Int Tensors with a scalar
Source§fn bitwise_right_shift(
lhs: IntTensor<Self>,
rhs: IntTensor<Self>,
) -> IntTensor<Self>
fn bitwise_right_shift( lhs: IntTensor<Self>, rhs: IntTensor<Self>, ) -> IntTensor<Self>
Bitwise right shift operation for Int Tensors
Source§fn bitwise_right_shift_scalar(
lhs: IntTensor<Self>,
rhs: Scalar,
) -> IntTensor<Self>
fn bitwise_right_shift_scalar( lhs: IntTensor<Self>, rhs: Scalar, ) -> IntTensor<Self>
Bitwise right shift operation for Int Tensors with a scalar
Source§fn int_cast(tensor: IntTensor<Self>, dtype: IntDType) -> IntTensor<Self>
fn int_cast(tensor: IntTensor<Self>, dtype: IntDType) -> IntTensor<Self>
Converts a tensor to another integer data type. Read more
Source§fn int_unfold(
tensor: IntTensor<Self>,
dim: usize,
size: usize,
step: usize,
) -> IntTensor<Self>
fn int_unfold( tensor: IntTensor<Self>, dim: usize, size: usize, step: usize, ) -> IntTensor<Self>
Unfold windows along a dimension. Read more
Source§fn int_repeat_dim(
tensor: IntTensor<Self>,
dim: usize,
times: usize,
) -> IntTensor<Self>
fn int_repeat_dim( tensor: IntTensor<Self>, dim: usize, times: usize, ) -> IntTensor<Self>
Repeats the tensor along the given dimension the given number of times. Read more
Source§fn int_cat(tensors: Vec<IntTensor<Self>>, dim: usize) -> IntTensor<Self>
fn int_cat(tensors: Vec<IntTensor<Self>>, dim: usize) -> IntTensor<Self>
Concatenates the given tensors along the given dimension. Read more
Source§fn int_not_equal(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> BoolTensor<Self>
fn int_not_equal(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> BoolTensor<Self>
Element-wise non-equality comparison. Read more
Source§fn int_not_equal_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
fn int_not_equal_elem(lhs: IntTensor<Self>, rhs: Scalar) -> BoolTensor<Self>
Element-wise non-equality comparison with a scalar. Read more
Source§fn int_powi(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
fn int_powi(lhs: IntTensor<Self>, rhs: IntTensor<Self>) -> IntTensor<Self>
Element-wise power with a IntTensor. Read more
Source§fn int_powf(lhs: IntTensor<Self>, rhs: FloatTensor<Self>) -> IntTensor<Self>
fn int_powf(lhs: IntTensor<Self>, rhs: FloatTensor<Self>) -> IntTensor<Self>
Element-wise power with a floatTensor. Read more
Source§fn int_powi_scalar_impl(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn int_powi_scalar_impl(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Element-wise power with a scalar. Read more
Source§fn int_powf_scalar_impl(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
fn int_powf_scalar_impl(lhs: IntTensor<Self>, rhs: Scalar) -> IntTensor<Self>
Element-wise power with a floatTensor. Read more
Source§fn int_clamp_min(tensor: IntTensor<Self>, min: Scalar) -> IntTensor<Self>
fn int_clamp_min(tensor: IntTensor<Self>, min: Scalar) -> IntTensor<Self>
Clamps a tensor under a minimum value. Read more
Source§fn int_clamp_max(tensor: IntTensor<Self>, max: Scalar) -> IntTensor<Self>
fn int_clamp_max(tensor: IntTensor<Self>, max: Scalar) -> IntTensor<Self>
Clamps a tensor over a maximum value. Read more
Source§fn int_clamp(
tensor: IntTensor<Self>,
min: Scalar,
max: Scalar,
) -> IntTensor<Self>
fn int_clamp( tensor: IntTensor<Self>, min: Scalar, max: Scalar, ) -> IntTensor<Self>
Clamps a tensor between a minimum and maximum value. Read more
Source§fn int_zeros(
shape: Shape,
device: &DispatchDevice,
dtype: IntDType,
) -> IntTensor<Self>
fn int_zeros( shape: Shape, device: &DispatchDevice, dtype: IntDType, ) -> IntTensor<Self>
Creates a tensor of zeros. Read more
Source§fn int_ones(
shape: Shape,
device: &DispatchDevice,
dtype: IntDType,
) -> IntTensor<Self>
fn int_ones( shape: Shape, device: &DispatchDevice, dtype: IntDType, ) -> IntTensor<Self>
Creates a tensor of ones. Read more
Source§fn int_full(
shape: Shape,
fill_value: Scalar,
device: &DispatchDevice,
dtype: IntDType,
) -> IntTensor<Self>
fn int_full( shape: Shape, fill_value: Scalar, device: &DispatchDevice, dtype: IntDType, ) -> IntTensor<Self>
Creates a tensor filled with given value. Read more
Source§fn int_mean(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_mean(tensor: IntTensor<Self>) -> IntTensor<Self>
Computes the mean of all elements in the tensor. Read more
Source§fn int_max(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_max(tensor: IntTensor<Self>) -> IntTensor<Self>
Gets the maximum element in the tensor. Read more
Source§fn int_max_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_max_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Gets the maximum element in the tensor along a dimension. Read more
Source§fn int_max_dim_with_indices(
tensor: IntTensor<Self>,
dim: usize,
) -> (IntTensor<Self>, IntTensor<Self>)
fn int_max_dim_with_indices( tensor: IntTensor<Self>, dim: usize, ) -> (IntTensor<Self>, IntTensor<Self>)
Gets the maximum elements and corresponding indices along a dimension. Read more
Source§fn int_max_abs(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_max_abs(tensor: IntTensor<Self>) -> IntTensor<Self>
Gets the maximum absolute element in the tensor. Read more
Source§fn int_max_abs_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_max_abs_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Gets the maximum absolute element in the tensor along a dimension. Read more
Source§fn int_min(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_min(tensor: IntTensor<Self>) -> IntTensor<Self>
Gets the minimum element in the tensor. Read more
Source§fn int_min_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
fn int_min_dim(tensor: IntTensor<Self>, dim: usize) -> IntTensor<Self>
Gets the minimum elements in the tensor along a dimension. Read more
Source§fn int_min_dim_with_indices(
tensor: IntTensor<Self>,
dim: usize,
) -> (IntTensor<Self>, IntTensor<Self>)
fn int_min_dim_with_indices( tensor: IntTensor<Self>, dim: usize, ) -> (IntTensor<Self>, IntTensor<Self>)
Gets the minimum elements and corresponding indices along a dimension. Read more
Source§fn int_transpose(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_transpose(tensor: IntTensor<Self>) -> IntTensor<Self>
Transposes an int tensor. Read more
Source§fn int_arange_step(
range: Range<i64>,
step: usize,
device: &DispatchDevice,
) -> IntTensor<Self>
fn int_arange_step( range: Range<i64>, step: usize, device: &DispatchDevice, ) -> IntTensor<Self>
Creates a new tensor with values from the given range with the given step size. Read more
Source§fn int_arange(range: Range<i64>, device: &DispatchDevice) -> IntTensor<Self>
fn int_arange(range: Range<i64>, device: &DispatchDevice) -> IntTensor<Self>
Creates a new tensor with values from the given range. Read more
Source§fn int_any(tensor: IntTensor<Self>) -> BoolTensor<Self>
fn int_any(tensor: IntTensor<Self>) -> BoolTensor<Self>
Tests if any element in the int
tensor evaluates to True. Read moreSource§fn int_any_dim(tensor: IntTensor<Self>, dim: usize) -> BoolTensor<Self>
fn int_any_dim(tensor: IntTensor<Self>, dim: usize) -> BoolTensor<Self>
Source§fn int_all(tensor: IntTensor<Self>) -> BoolTensor<Self>
fn int_all(tensor: IntTensor<Self>) -> BoolTensor<Self>
Tests if all elements in the int
tensor evaluate to True. Read moreSource§fn int_all_dim(tensor: IntTensor<Self>, dim: usize) -> BoolTensor<Self>
fn int_all_dim(tensor: IntTensor<Self>, dim: usize) -> BoolTensor<Self>
Source§fn int_sign(tensor: IntTensor<Self>) -> IntTensor<Self>
fn int_sign(tensor: IntTensor<Self>) -> IntTensor<Self>
Returns the signs of the int
tensor. Read moreSource§fn int_sort(
tensor: IntTensor<Self>,
dim: usize,
descending: bool,
) -> IntTensor<Self>
fn int_sort( tensor: IntTensor<Self>, dim: usize, descending: bool, ) -> IntTensor<Self>
Sort the elements of the input
tensor by value along a given dimension. Read moreSource§fn int_sort_with_indices(
tensor: IntTensor<Self>,
dim: usize,
descending: bool,
) -> (IntTensor<Self>, IntTensor<Self>)
fn int_sort_with_indices( tensor: IntTensor<Self>, dim: usize, descending: bool, ) -> (IntTensor<Self>, IntTensor<Self>)
Sort the elements of the input
tensor by value along a given dimension. Read moreSource§fn int_argsort(
tensor: IntTensor<Self>,
dim: usize,
descending: bool,
) -> IntTensor<Self>
fn int_argsort( tensor: IntTensor<Self>, dim: usize, descending: bool, ) -> IntTensor<Self>
Returns the indices that sort the elements of the input
tensor by value
along a given dimension. Read moreSource§fn int_powi_scalar(
lhs: <B as Backend>::IntTensorPrimitive,
rhs: Scalar,
) -> <B as Backend>::IntTensorPrimitive
fn int_powi_scalar( lhs: <B as Backend>::IntTensorPrimitive, rhs: Scalar, ) -> <B as Backend>::IntTensorPrimitive
Element-wise power with a scalar. Read more
Source§fn int_powf_scalar(
lhs: <B as Backend>::IntTensorPrimitive,
rhs: Scalar,
) -> <B as Backend>::IntTensorPrimitive
fn int_powf_scalar( lhs: <B as Backend>::IntTensorPrimitive, rhs: Scalar, ) -> <B as Backend>::IntTensorPrimitive
Element-wise power with a floatTensor. Read more
Source§impl ModuleOps<Dispatch> for Dispatch
impl ModuleOps<Dispatch> for Dispatch
Source§fn conv2d(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
bias: Option<FloatTensor<Self>>,
options: ConvOptions<2>,
) -> FloatTensor<Self>
fn conv2d( x: FloatTensor<Self>, weight: FloatTensor<Self>, bias: Option<FloatTensor<Self>>, options: ConvOptions<2>, ) -> FloatTensor<Self>
Two dimensional convolution. Read more
Source§fn deform_conv2d(
x: FloatTensor<Self>,
offset: FloatTensor<Self>,
weight: FloatTensor<Self>,
mask: Option<FloatTensor<Self>>,
bias: Option<FloatTensor<Self>>,
options: DeformConvOptions<2>,
) -> FloatTensor<Self>
fn deform_conv2d( x: FloatTensor<Self>, offset: FloatTensor<Self>, weight: FloatTensor<Self>, mask: Option<FloatTensor<Self>>, bias: Option<FloatTensor<Self>>, options: DeformConvOptions<2>, ) -> FloatTensor<Self>
Two dimensional deformable convolution. Read more
Source§fn deform_conv2d_backward(
x: FloatTensor<Self>,
offset: FloatTensor<Self>,
weight: FloatTensor<Self>,
mask: Option<FloatTensor<Self>>,
bias: Option<FloatTensor<Self>>,
output_grad: FloatTensor<Self>,
options: DeformConvOptions<2>,
) -> DeformConv2dBackward<Self>
fn deform_conv2d_backward( x: FloatTensor<Self>, offset: FloatTensor<Self>, weight: FloatTensor<Self>, mask: Option<FloatTensor<Self>>, bias: Option<FloatTensor<Self>>, output_grad: FloatTensor<Self>, options: DeformConvOptions<2>, ) -> DeformConv2dBackward<Self>
Backward pass for the deform_conv2d operation.
Source§fn conv3d(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
bias: Option<FloatTensor<Self>>,
options: ConvOptions<3>,
) -> FloatTensor<Self>
fn conv3d( x: FloatTensor<Self>, weight: FloatTensor<Self>, bias: Option<FloatTensor<Self>>, options: ConvOptions<3>, ) -> FloatTensor<Self>
Three dimensional convolution. Read more
Source§fn conv_transpose2d(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
bias: Option<FloatTensor<Self>>,
options: ConvTransposeOptions<2>,
) -> FloatTensor<Self>
fn conv_transpose2d( x: FloatTensor<Self>, weight: FloatTensor<Self>, bias: Option<FloatTensor<Self>>, options: ConvTransposeOptions<2>, ) -> FloatTensor<Self>
Two dimensional transposed convolution. Read more
Source§fn conv_transpose3d(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
bias: Option<FloatTensor<Self>>,
options: ConvTransposeOptions<3>,
) -> FloatTensor<Self>
fn conv_transpose3d( x: FloatTensor<Self>, weight: FloatTensor<Self>, bias: Option<FloatTensor<Self>>, options: ConvTransposeOptions<3>, ) -> FloatTensor<Self>
Three dimensional transposed convolution. Read more
Source§fn avg_pool2d(
x: FloatTensor<Self>,
kernel_size: [usize; 2],
stride: [usize; 2],
padding: [usize; 2],
count_include_pad: bool,
ceil_mode: bool,
) -> FloatTensor<Self>
fn avg_pool2d( x: FloatTensor<Self>, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], count_include_pad: bool, ceil_mode: bool, ) -> FloatTensor<Self>
Two dimensional avg pooling. Read more
Source§fn avg_pool2d_backward(
x: FloatTensor<Self>,
grad: FloatTensor<Self>,
kernel_size: [usize; 2],
stride: [usize; 2],
padding: [usize; 2],
count_include_pad: bool,
ceil_mode: bool,
) -> FloatTensor<Self>
fn avg_pool2d_backward( x: FloatTensor<Self>, grad: FloatTensor<Self>, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], count_include_pad: bool, ceil_mode: bool, ) -> FloatTensor<Self>
Backward pass for the avg pooling 2d operation.
Source§fn adaptive_avg_pool2d(
x: FloatTensor<Self>,
output_size: [usize; 2],
) -> FloatTensor<Self>
fn adaptive_avg_pool2d( x: FloatTensor<Self>, output_size: [usize; 2], ) -> FloatTensor<Self>
Two dimensional adaptive avg pooling. Read more
Source§fn adaptive_avg_pool2d_backward(
x: FloatTensor<Self>,
grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn adaptive_avg_pool2d_backward( x: FloatTensor<Self>, grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Backward pass for the adaptive avg pooling 2d operation.
Source§fn max_pool2d(
x: FloatTensor<Self>,
kernel_size: [usize; 2],
stride: [usize; 2],
padding: [usize; 2],
dilation: [usize; 2],
ceil_mode: bool,
) -> FloatTensor<Self>
fn max_pool2d( x: FloatTensor<Self>, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], dilation: [usize; 2], ceil_mode: bool, ) -> FloatTensor<Self>
Two dimensional max pooling. Read more
Source§fn max_pool2d_with_indices(
x: FloatTensor<Self>,
kernel_size: [usize; 2],
stride: [usize; 2],
padding: [usize; 2],
dilation: [usize; 2],
ceil_mode: bool,
) -> MaxPool2dWithIndices<Self>
fn max_pool2d_with_indices( x: FloatTensor<Self>, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], dilation: [usize; 2], ceil_mode: bool, ) -> MaxPool2dWithIndices<Self>
Two dimensional max pooling with indices. Read more
Source§fn max_pool2d_with_indices_backward(
x: FloatTensor<Self>,
kernel_size: [usize; 2],
stride: [usize; 2],
padding: [usize; 2],
dilation: [usize; 2],
ceil_mode: bool,
output_grad: FloatTensor<Self>,
indices: IntTensor<Self>,
) -> MaxPool2dBackward<Self>
fn max_pool2d_with_indices_backward( x: FloatTensor<Self>, kernel_size: [usize; 2], stride: [usize; 2], padding: [usize; 2], dilation: [usize; 2], ceil_mode: bool, output_grad: FloatTensor<Self>, indices: IntTensor<Self>, ) -> MaxPool2dBackward<Self>
Backward pass for the max pooling 2d operation.
Source§fn interpolate(
x: FloatTensor<Self>,
output_size: [usize; 2],
options: InterpolateOptions,
) -> FloatTensor<Self>
fn interpolate( x: FloatTensor<Self>, output_size: [usize; 2], options: InterpolateOptions, ) -> FloatTensor<Self>
Down/up samples the input. Read more
Source§fn interpolate_backward(
x: FloatTensor<Self>,
grad: FloatTensor<Self>,
output_size: [usize; 2],
options: InterpolateOptions,
) -> FloatTensor<Self>
fn interpolate_backward( x: FloatTensor<Self>, grad: FloatTensor<Self>, output_size: [usize; 2], options: InterpolateOptions, ) -> FloatTensor<Self>
Backward pass for the interpolate operation.
Source§fn embedding(
weights: FloatTensor<Self>,
indices: IntTensor<Self>,
) -> FloatTensor<Self>
fn embedding( weights: FloatTensor<Self>, indices: IntTensor<Self>, ) -> FloatTensor<Self>
Embedding operation. Read more
Source§fn embedding_backward(
weights: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
indices: IntTensor<Self>,
) -> FloatTensor<Self>
fn embedding_backward( weights: FloatTensor<Self>, output_grad: FloatTensor<Self>, indices: IntTensor<Self>, ) -> FloatTensor<Self>
Embedding backward operation. Read more
Source§fn conv1d(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
bias: Option<FloatTensor<Self>>,
options: ConvOptions<1>,
) -> FloatTensor<Self>
fn conv1d( x: FloatTensor<Self>, weight: FloatTensor<Self>, bias: Option<FloatTensor<Self>>, options: ConvOptions<1>, ) -> FloatTensor<Self>
One dimensional convolution. Read more
Source§fn conv1d_x_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvOptions<1>,
) -> FloatTensor<Self>
fn conv1d_x_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvOptions<1>, ) -> FloatTensor<Self>
Backward pass for the conv1d operation, returning the gradient for
x.Source§fn conv1d_weight_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvOptions<1>,
) -> FloatTensor<Self>
fn conv1d_weight_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvOptions<1>, ) -> FloatTensor<Self>
Backward pass for the conv1d operation, returning the gradient for
weight.Source§fn conv1d_bias_backward(
x: FloatTensor<Self>,
bias: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn conv1d_bias_backward( x: FloatTensor<Self>, bias: FloatTensor<Self>, output_grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Backward pass for the conv1d operation, returning the gradient for
bias.Source§fn conv2d_x_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvOptions<2>,
) -> FloatTensor<Self>
fn conv2d_x_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvOptions<2>, ) -> FloatTensor<Self>
Backward pass for the conv2d operation, returning the gradient for
x.Source§fn conv2d_weight_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvOptions<2>,
) -> FloatTensor<Self>
fn conv2d_weight_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvOptions<2>, ) -> FloatTensor<Self>
Backward pass for the conv2d operation, returning the gradient for
weight.Source§fn conv2d_bias_backward(
x: FloatTensor<Self>,
bias: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn conv2d_bias_backward( x: FloatTensor<Self>, bias: FloatTensor<Self>, output_grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Backward pass for the conv2d operation, returning the gradient for
bias.Source§fn conv3d_x_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvOptions<3>,
) -> FloatTensor<Self>
fn conv3d_x_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvOptions<3>, ) -> FloatTensor<Self>
Backward pass for the conv3d operation, returning the gradient for
x.Source§fn conv3d_weight_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvOptions<3>,
) -> FloatTensor<Self>
fn conv3d_weight_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvOptions<3>, ) -> FloatTensor<Self>
Backward pass for the conv3d operation, returning the gradient for
weight.Source§fn conv3d_bias_backward(
x: FloatTensor<Self>,
bias: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn conv3d_bias_backward( x: FloatTensor<Self>, bias: FloatTensor<Self>, output_grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Backward pass for the conv3d operation, returning the gradient for
bias.Source§fn conv_transpose1d(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
bias: Option<FloatTensor<Self>>,
options: ConvTransposeOptions<1>,
) -> FloatTensor<Self>
fn conv_transpose1d( x: FloatTensor<Self>, weight: FloatTensor<Self>, bias: Option<FloatTensor<Self>>, options: ConvTransposeOptions<1>, ) -> FloatTensor<Self>
One dimensional transposed convolution. Read more
Source§fn conv_transpose1d_x_backward(
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvTransposeOptions<1>,
) -> FloatTensor<Self>
fn conv_transpose1d_x_backward( weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvTransposeOptions<1>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 1d operation, returning the gradient for
x.Source§fn conv_transpose1d_weight_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvTransposeOptions<1>,
) -> FloatTensor<Self>
fn conv_transpose1d_weight_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvTransposeOptions<1>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 1d operation, returning the gradient for
weight.Source§fn conv_transpose1d_bias_backward(
x: FloatTensor<Self>,
bias: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn conv_transpose1d_bias_backward( x: FloatTensor<Self>, bias: FloatTensor<Self>, output_grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 1d operation, returning the gradient for
bias.Source§fn conv_transpose2d_x_backward(
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvTransposeOptions<2>,
) -> FloatTensor<Self>
fn conv_transpose2d_x_backward( weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvTransposeOptions<2>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 2d operation, returning the gradient for
x.Source§fn conv_transpose2d_weight_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvTransposeOptions<2>,
) -> FloatTensor<Self>
fn conv_transpose2d_weight_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvTransposeOptions<2>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 2d operation, returning the gradient for
weight.Source§fn conv_transpose2d_bias_backward(
x: FloatTensor<Self>,
bias: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn conv_transpose2d_bias_backward( x: FloatTensor<Self>, bias: FloatTensor<Self>, output_grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 2d operation, returning the gradient for
bias.Source§fn conv_transpose3d_x_backward(
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvTransposeOptions<3>,
) -> FloatTensor<Self>
fn conv_transpose3d_x_backward( weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvTransposeOptions<3>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 3d operation, returning the gradient for
x.Source§fn conv_transpose3d_weight_backward(
x: FloatTensor<Self>,
weight: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
options: ConvTransposeOptions<3>,
) -> FloatTensor<Self>
fn conv_transpose3d_weight_backward( x: FloatTensor<Self>, weight: FloatTensor<Self>, output_grad: FloatTensor<Self>, options: ConvTransposeOptions<3>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 3d operation, returning the gradient for
weight.Source§fn conv_transpose3d_bias_backward(
x: FloatTensor<Self>,
bias: FloatTensor<Self>,
output_grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn conv_transpose3d_bias_backward( x: FloatTensor<Self>, bias: FloatTensor<Self>, output_grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Backward pass for the conv transpose 3d operation, returning the gradient for
bias.Source§fn unfold4d(
x: FloatTensor<Self>,
kernel_size: [usize; 2],
options: UnfoldOptions,
) -> FloatTensor<Self>
fn unfold4d( x: FloatTensor<Self>, kernel_size: [usize; 2], options: UnfoldOptions, ) -> FloatTensor<Self>
Four-dimensional unfolding. Read more
Source§fn avg_pool1d(
x: FloatTensor<Self>,
kernel_size: usize,
stride: usize,
padding: usize,
count_include_pad: bool,
ceil_mode: bool,
) -> FloatTensor<Self>
fn avg_pool1d( x: FloatTensor<Self>, kernel_size: usize, stride: usize, padding: usize, count_include_pad: bool, ceil_mode: bool, ) -> FloatTensor<Self>
One dimensional avg pooling. Read more
Source§fn avg_pool1d_backward(
x: FloatTensor<Self>,
grad: FloatTensor<Self>,
kernel_size: usize,
stride: usize,
padding: usize,
count_include_pad: bool,
ceil_mode: bool,
) -> FloatTensor<Self>
fn avg_pool1d_backward( x: FloatTensor<Self>, grad: FloatTensor<Self>, kernel_size: usize, stride: usize, padding: usize, count_include_pad: bool, ceil_mode: bool, ) -> FloatTensor<Self>
Backward pass for the avg pooling 1d operation.
Source§fn adaptive_avg_pool1d(
x: FloatTensor<Self>,
output_size: usize,
) -> FloatTensor<Self>
fn adaptive_avg_pool1d( x: FloatTensor<Self>, output_size: usize, ) -> FloatTensor<Self>
One dimensional adaptive avg pooling. Read more
Source§fn adaptive_avg_pool1d_backward(
x: FloatTensor<Self>,
grad: FloatTensor<Self>,
) -> FloatTensor<Self>
fn adaptive_avg_pool1d_backward( x: FloatTensor<Self>, grad: FloatTensor<Self>, ) -> FloatTensor<Self>
Backward pass for the adaptive avg pooling 1d operation.
Source§fn max_pool1d(
x: FloatTensor<Self>,
kernel_size: usize,
stride: usize,
padding: usize,
dilation: usize,
ceil_mode: bool,
) -> FloatTensor<Self>
fn max_pool1d( x: FloatTensor<Self>, kernel_size: usize, stride: usize, padding: usize, dilation: usize, ceil_mode: bool, ) -> FloatTensor<Self>
One dimensional max pooling. Read more
Source§fn max_pool1d_with_indices(
x: FloatTensor<Self>,
kernel_size: usize,
stride: usize,
padding: usize,
dilation: usize,
ceil_mode: bool,
) -> MaxPool1dWithIndices<Self>
fn max_pool1d_with_indices( x: FloatTensor<Self>, kernel_size: usize, stride: usize, padding: usize, dilation: usize, ceil_mode: bool, ) -> MaxPool1dWithIndices<Self>
One dimensional max pooling with indices. Read more
Source§fn max_pool1d_with_indices_backward(
x: FloatTensor<Self>,
kernel_size: usize,
stride: usize,
padding: usize,
dilation: usize,
ceil_mode: bool,
output_grad: FloatTensor<Self>,
indices: IntTensor<Self>,
) -> MaxPool1dBackward<Self>
fn max_pool1d_with_indices_backward( x: FloatTensor<Self>, kernel_size: usize, stride: usize, padding: usize, dilation: usize, ceil_mode: bool, output_grad: FloatTensor<Self>, indices: IntTensor<Self>, ) -> MaxPool1dBackward<Self>
Backward pass for the max pooling 1d operation.
Source§fn attention(
query: FloatTensor<Self>,
key: FloatTensor<Self>,
value: FloatTensor<Self>,
mask: Option<BoolTensor<Self>>,
attn_bias: Option<FloatTensor<Self>>,
options: AttentionModuleOptions,
) -> FloatTensor<Self>
fn attention( query: FloatTensor<Self>, key: FloatTensor<Self>, value: FloatTensor<Self>, mask: Option<BoolTensor<Self>>, attn_bias: Option<FloatTensor<Self>>, options: AttentionModuleOptions, ) -> FloatTensor<Self>
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§impl QTensorOps<Dispatch> for Dispatch
impl QTensorOps<Dispatch> for Dispatch
Source§fn q_from_data(
data: TensorData,
device: &DispatchDevice,
) -> QuantizedTensor<Self>
fn q_from_data( data: TensorData, device: &DispatchDevice, ) -> QuantizedTensor<Self>
Creates a new tensor from the data structure. Read more
Source§fn quantize(
tensor: FloatTensor<Self>,
scheme: &QuantScheme,
qparams: QuantizationParametersPrimitive<Self>,
) -> QuantizedTensor<Self>
fn quantize( tensor: FloatTensor<Self>, scheme: &QuantScheme, qparams: QuantizationParametersPrimitive<Self>, ) -> QuantizedTensor<Self>
Convert the tensor to a lower precision data type based on the quantization scheme and parameters.
Source§fn dequantize(tensor: QuantizedTensor<Self>) -> FloatTensor<Self>
fn dequantize(tensor: QuantizedTensor<Self>) -> FloatTensor<Self>
Convert the tensor back to a higher precision data type.
Source§fn q_device(tensor: &QuantizedTensor<Self>) -> DispatchDevice
fn q_device(tensor: &QuantizedTensor<Self>) -> DispatchDevice
Gets the device of the tensor. Read more
Source§fn q_to_device(
tensor: QuantizedTensor<Self>,
device: &DispatchDevice,
) -> QuantizedTensor<Self>
fn q_to_device( tensor: QuantizedTensor<Self>, device: &DispatchDevice, ) -> QuantizedTensor<Self>
Moves the tensor to the given device. Read more
Source§fn q_reshape(
tensor: QuantizedTensor<Self>,
shape: Shape,
) -> QuantizedTensor<Self>
fn q_reshape( tensor: QuantizedTensor<Self>, shape: Shape, ) -> QuantizedTensor<Self>
Reshapes a tensor. Read more
Source§async fn q_into_data(
tensor: QuantizedTensor<Self>,
) -> Result<TensorData, ExecutionError>
async fn q_into_data( tensor: QuantizedTensor<Self>, ) -> Result<TensorData, ExecutionError>
Converts the tensor to a data structure. Read more
Source§fn q_expand(
tensor: QuantizedTensor<Self>,
shape: Shape,
) -> QuantizedTensor<Self>
fn q_expand( tensor: QuantizedTensor<Self>, shape: Shape, ) -> QuantizedTensor<Self>
Broadcasts the
tensor to the given shape.Source§fn q_swap_dims(
tensor: QuantizedTensor<Self>,
dim1: usize,
dim2: usize,
) -> QuantizedTensor<Self>
fn q_swap_dims( tensor: QuantizedTensor<Self>, dim1: usize, dim2: usize, ) -> QuantizedTensor<Self>
Swaps two dimensions of a tensor. Read more
Source§fn q_permute(
tensor: QuantizedTensor<Self>,
axes: &[usize],
) -> QuantizedTensor<Self>
fn q_permute( tensor: QuantizedTensor<Self>, axes: &[usize], ) -> QuantizedTensor<Self>
Permutes the dimensions of a tensor. Read more
Source§fn q_flip(
tensor: QuantizedTensor<Self>,
axes: &[usize],
) -> QuantizedTensor<Self>
fn q_flip( tensor: QuantizedTensor<Self>, axes: &[usize], ) -> QuantizedTensor<Self>
Reverse the order of elements in a tensor along the given axes. Read more
Source§fn q_select(
tensor: QuantizedTensor<Self>,
dim: usize,
indices: IntTensor<Self>,
) -> QuantizedTensor<Self>
fn q_select( tensor: QuantizedTensor<Self>, dim: usize, indices: IntTensor<Self>, ) -> QuantizedTensor<Self>
Select tensor elements along the given dimension corresponding for the given indices. Read more
Source§fn q_slice(
tensor: QuantizedTensor<Self>,
slices: &[Slice],
) -> QuantizedTensor<Self>
fn q_slice( tensor: QuantizedTensor<Self>, slices: &[Slice], ) -> QuantizedTensor<Self>
Select tensor elements corresponding to the given slices. Read more
Source§fn q_matmul(
lhs: TensorPrimitive<Self>,
rhs: TensorPrimitive<Self>,
) -> TensorPrimitive<Self>
fn q_matmul( lhs: TensorPrimitive<Self>, rhs: TensorPrimitive<Self>, ) -> TensorPrimitive<Self>
Multiplies two tensors together using matrix multiplication. Read more
Source§fn quantize_dynamic(
tensor: <B as Backend>::FloatTensorPrimitive,
scheme: &QuantScheme,
) -> <B as Backend>::QuantizedTensorPrimitive
fn quantize_dynamic( tensor: <B as Backend>::FloatTensorPrimitive, scheme: &QuantScheme, ) -> <B as Backend>::QuantizedTensorPrimitive
Dynamically convert the tensor to a lower precision data type based on the quantization scheme.
Source§fn q_detach(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_detach( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> <B as Backend>::QuantizedTensorPrimitive
Detaches a tensor from the computation graph.
Source§fn q_set_require_grad(
tensor: <B as Backend>::QuantizedTensorPrimitive,
_require_grad: bool,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_set_require_grad( tensor: <B as Backend>::QuantizedTensorPrimitive, _require_grad: bool, ) -> <B as Backend>::QuantizedTensorPrimitive
Sets the
require_grad flag of a tensor.Source§fn q_is_require_grad(_tensor: &<B as Backend>::QuantizedTensorPrimitive) -> bool
fn q_is_require_grad(_tensor: &<B as Backend>::QuantizedTensorPrimitive) -> bool
Returns the
require_grad flag of a tensor.Source§fn q_transpose(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_transpose( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> <B as Backend>::QuantizedTensorPrimitive
Transposes a tensor. Read more
Source§fn q_gather(
dim: usize,
tensor: <B as Backend>::QuantizedTensorPrimitive,
indices: <B as Backend>::IntTensorPrimitive,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_gather( dim: usize, tensor: <B as Backend>::QuantizedTensorPrimitive, indices: <B as Backend>::IntTensorPrimitive, ) -> <B as Backend>::QuantizedTensorPrimitive
Gather elements from a tensor. Read more
Source§fn q_repeat_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
times: usize,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_repeat_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, times: usize, ) -> <B as Backend>::QuantizedTensorPrimitive
Repeat the tensor along the given dimension. Read more
Source§fn q_add(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_add( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Adds two tensors together. Read more
Source§fn q_add_scalar(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: Scalar,
) -> TensorPrimitive<B>
fn q_add_scalar( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>
Adds a scalar to a tensor. Read more
Source§fn q_clamp_min(
tensor: <B as Backend>::QuantizedTensorPrimitive,
min: Scalar,
) -> TensorPrimitive<B>
fn q_clamp_min( tensor: <B as Backend>::QuantizedTensorPrimitive, min: Scalar, ) -> TensorPrimitive<B>
Clamps a tensor under a minimum value. Read more
Source§fn q_clamp_max(
tensor: <B as Backend>::QuantizedTensorPrimitive,
max: Scalar,
) -> TensorPrimitive<B>
fn q_clamp_max( tensor: <B as Backend>::QuantizedTensorPrimitive, max: Scalar, ) -> TensorPrimitive<B>
Clamps a tensor over a maximum value. Read more
Source§fn q_clamp(
tensor: <B as Backend>::QuantizedTensorPrimitive,
min: Scalar,
max: Scalar,
) -> TensorPrimitive<B>
fn q_clamp( tensor: <B as Backend>::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 Backend>::QuantizedTensorPrimitive,
rhs: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_sub( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Subtracts two tensors. Read more
Source§fn q_sub_scalar(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: Scalar,
) -> TensorPrimitive<B>
fn q_sub_scalar( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>
Subtracts a scalar from a tensor. Read more
Source§fn q_mul(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_mul( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Multiplies two tensors together element-wise.
Source§fn q_mul_scalar(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: Scalar,
) -> TensorPrimitive<B>
fn q_mul_scalar( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>
Multiplies a tensor by a scalar. Read more
Source§fn q_div(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_div( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Divides two tensors element-wise. Read more
Source§fn q_div_scalar(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: Scalar,
) -> TensorPrimitive<B>
fn q_div_scalar( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>
Divides a tensor by a scalar. Read more
Source§fn q_neg(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
fn q_neg(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
Negates a tensor element-wise.
Source§fn q_recip(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_recip( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Calculates the reciprocals element-wise
Source§fn q_sum(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
fn q_sum(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
Sum of all elements in a tensor. Read more
Source§fn q_sum_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> TensorPrimitive<B>
fn q_sum_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>
Sum of all elements in a tensor along a dimension. Read more
Source§fn q_prod(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_prod( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Product of all elements in a tensor. Read more
Source§fn q_prod_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> TensorPrimitive<B>
fn q_prod_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>
Product of all elements in a tensor along a dimension. Read more
Source§fn q_mean(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_mean( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Mean of all elements in a tensor. Read more
Source§fn q_mean_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> TensorPrimitive<B>
fn q_mean_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>
Mean of all elements in a tensor along a dimension. Read more
Source§fn q_cumsum(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> TensorPrimitive<B>
fn q_cumsum( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>
Computes the cumulative sum of elements along a dimension. Read more
Source§fn q_cumprod(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> TensorPrimitive<B>
fn q_cumprod( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>
Computes the cumulative product of elements along a dimension. Read more
Source§fn q_cummin(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> TensorPrimitive<B>
fn q_cummin( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>
Computes the cumulative minimum of elements along a dimension. Read more
Source§fn q_cummax(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> TensorPrimitive<B>
fn q_cummax( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> TensorPrimitive<B>
Computes the cumulative maximum of elements along a dimension. Read more
Source§fn q_exp(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
fn q_exp(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
Returns a new tensor with exponential values. Read more
Source§fn q_log(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
fn q_log(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
Returns a new tensor with natural logarithm values. Read more
Source§fn q_log1p(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_log1p( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Returns a new tensor with logarithm values of (1 + Xi). Read more
Source§fn q_powf(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_powf( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Element-wise power with another tensor. Read more
Source§fn q_powi(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: <B as Backend>::IntTensorPrimitive,
) -> TensorPrimitive<B>
fn q_powi( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: <B as Backend>::IntTensorPrimitive, ) -> TensorPrimitive<B>
Element-wise power with an IntTensor. Read more
Source§fn q_powi_scalar(
lhs: <B as Backend>::QuantizedTensorPrimitive,
rhs: Scalar,
) -> TensorPrimitive<B>
fn q_powi_scalar( lhs: <B as Backend>::QuantizedTensorPrimitive, rhs: Scalar, ) -> TensorPrimitive<B>
Element-wise power with an int scalar. Read more
Source§fn q_powf_scalar(
tensor: <B as Backend>::QuantizedTensorPrimitive,
value: Scalar,
) -> TensorPrimitive<B>
fn q_powf_scalar( tensor: <B as Backend>::QuantizedTensorPrimitive, value: Scalar, ) -> TensorPrimitive<B>
Element-wise power with a float scalar. Read more
Source§fn q_sqrt(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_sqrt( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Returns a new tensor with square root values. Read more
Source§fn q_abs(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_abs( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> <B as Backend>::QuantizedTensorPrimitive
Returns a new tensor with absolute values. Read more
Source§fn q_cos(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
fn q_cos(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
Returns a new tensor with cosine values. Read more
Source§fn q_sin(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
fn q_sin(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
Returns a new tensor with sine values. Read more
Source§fn q_tan(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
fn q_tan(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
Returns a new tensor with tangent values. Read more
Source§fn q_cosh(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_cosh( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Returns a new tensor with hyperbolic cosine values. Read more
Source§fn q_sinh(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_sinh( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Returns a new tensor with hyperbolic sine values. Read more
Source§fn q_tanh(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> TensorPrimitive<B>
fn q_tanh( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> TensorPrimitive<B>
Returns a new tensor with hyperbolic tangent values. Read more
Source§fn q_erf(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
fn q_erf(tensor: <B as Backend>::QuantizedTensorPrimitive) -> TensorPrimitive<B>
Returns a new tensor with the error function values. Read more
Source§fn q_cat(
tensors: Vec<<B as Backend>::QuantizedTensorPrimitive>,
dim: usize,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_cat( tensors: Vec<<B as Backend>::QuantizedTensorPrimitive>, dim: usize, ) -> <B as Backend>::QuantizedTensorPrimitive
Concatenates tensors along a dimension. Read more
Source§fn q_argmax(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> <B as Backend>::IntTensorPrimitive
fn q_argmax( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> <B as Backend>::IntTensorPrimitive
Gets the indices of the maximum elements of a tensor along an axis. Read more
Source§fn q_argmin(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> <B as Backend>::IntTensorPrimitive
fn q_argmin( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> <B as Backend>::IntTensorPrimitive
Gets the indices of the minimum elements of a tensor along an axis. Read more
Source§fn q_max(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_max( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> <B as Backend>::QuantizedTensorPrimitive
Gets the maximum element of a tensor. Read more
Source§fn q_max_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_max_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> <B as Backend>::QuantizedTensorPrimitive
Gets the maximum elements of a tensor along an axis. Read more
Source§fn q_max_dim_with_indices(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> (<B as Backend>::QuantizedTensorPrimitive, <B as Backend>::IntTensorPrimitive)
fn q_max_dim_with_indices( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> (<B as Backend>::QuantizedTensorPrimitive, <B as Backend>::IntTensorPrimitive)
Gets the maximum elements of a tensor along an axis and their indices. Read more
Source§fn q_min(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_min( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> <B as Backend>::QuantizedTensorPrimitive
Gets the minimum element of a tensor. Read more
Source§fn q_min_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_min_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> <B as Backend>::QuantizedTensorPrimitive
Gets the minimum elements of a tensor along an axis. Read more
Source§fn q_min_dim_with_indices(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> (<B as Backend>::QuantizedTensorPrimitive, <B as Backend>::IntTensorPrimitive)
fn q_min_dim_with_indices( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> (<B as Backend>::QuantizedTensorPrimitive, <B as Backend>::IntTensorPrimitive)
Gets the minimum elements of a tensor along an axis and their indices. Read more
Source§fn q_max_abs(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_max_abs( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> <B as Backend>::QuantizedTensorPrimitive
Gets the maximum element of a tensor. Read more
Source§fn q_max_abs_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_max_abs_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> <B as Backend>::QuantizedTensorPrimitive
Gets the maximum elements of a tensor along an axis. Read more
Source§fn q_any(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> <B as Backend>::BoolTensorPrimitive
fn q_any( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> <B as Backend>::BoolTensorPrimitive
Tests if any element in the
tensor evaluates to True. Read moreSource§fn q_any_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> <B as Backend>::BoolTensorPrimitive
fn q_any_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> <B as Backend>::BoolTensorPrimitive
Source§fn q_all(
tensor: <B as Backend>::QuantizedTensorPrimitive,
) -> <B as Backend>::BoolTensorPrimitive
fn q_all( tensor: <B as Backend>::QuantizedTensorPrimitive, ) -> <B as Backend>::BoolTensorPrimitive
Tests if all elements in the
tensor evaluate to True. Read moreSource§fn q_all_dim(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
) -> <B as Backend>::BoolTensorPrimitive
fn q_all_dim( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, ) -> <B as Backend>::BoolTensorPrimitive
Source§fn q_sort(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
descending: bool,
) -> <B as Backend>::QuantizedTensorPrimitive
fn q_sort( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, descending: bool, ) -> <B as Backend>::QuantizedTensorPrimitive
Sort the elements of the input
tensor by value in along a given dimension. Read moreSource§fn q_sort_with_indices(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
descending: bool,
) -> (<B as Backend>::QuantizedTensorPrimitive, <B as Backend>::IntTensorPrimitive)
fn q_sort_with_indices( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, descending: bool, ) -> (<B as Backend>::QuantizedTensorPrimitive, <B as Backend>::IntTensorPrimitive)
Sort the elements of the input
tensor by value in along a given dimension. Read moreSource§fn q_argsort(
tensor: <B as Backend>::QuantizedTensorPrimitive,
dim: usize,
descending: bool,
) -> <B as Backend>::IntTensorPrimitive
fn q_argsort( tensor: <B as Backend>::QuantizedTensorPrimitive, dim: usize, descending: bool, ) -> <B as Backend>::IntTensorPrimitive
Returns the indices that sort the elements of the input
tensor by value along a given dimension. Read moreSource§impl TransactionOps<Dispatch> for Dispatch
impl TransactionOps<Dispatch> for Dispatch
Source§async fn tr_execute(
transaction: TransactionPrimitive<Self>,
) -> Result<TransactionPrimitiveData, ExecutionError>
async fn tr_execute( transaction: TransactionPrimitive<Self>, ) -> Result<TransactionPrimitiveData, ExecutionError>
Executes a transaction and return its
data.
Auto Trait Implementations§
impl Freeze for Dispatch
impl RefUnwindSafe for Dispatch
impl Send for Dispatch
impl Sync for Dispatch
impl Unpin for Dispatch
impl UnsafeUnpin for Dispatch
impl UnwindSafe for Dispatch
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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