Struct burn_tensor::Int
source · pub struct Int;
Expand description
A type-level representation of the kind of a int tensor.
Trait Implementations§
source§impl<B: AutodiffBackend> BasicAutodiffOps<B> for Int
impl<B: AutodiffBackend> BasicAutodiffOps<B> for Int
source§fn inner<const D: usize>(
tensor: <Self as TensorKind<B>>::Primitive<D>,
) -> <Self::InnerKind as TensorKind<<B as AutodiffBackend>::InnerBackend>>::Primitive<D>
fn inner<const D: usize>( tensor: <Self as TensorKind<B>>::Primitive<D>, ) -> <Self::InnerKind as TensorKind<<B as AutodiffBackend>::InnerBackend>>::Primitive<D>
Returns the inner tensor without the autodiff information. Read more
source§fn from_inner<const D: usize>(
inner: <Self::InnerKind as TensorKind<<B as AutodiffBackend>::InnerBackend>>::Primitive<D>,
) -> <Self as TensorKind<B>>::Primitive<D>
fn from_inner<const D: usize>( inner: <Self::InnerKind as TensorKind<<B as AutodiffBackend>::InnerBackend>>::Primitive<D>, ) -> <Self as TensorKind<B>>::Primitive<D>
Convert a tensor to the autodiff backend. Read more
source§impl<B: Backend> BasicOps<B> for Int
impl<B: Backend> BasicOps<B> for Int
source§fn empty<const D: usize>(
shape: Shape<D>,
device: &B::Device,
) -> Self::Primitive<D>
fn empty<const D: usize>( shape: Shape<D>, device: &B::Device, ) -> Self::Primitive<D>
Creates an empty tensor with the given shape. Read more
source§fn shape<const D: usize>(tensor: &Self::Primitive<D>) -> Shape<D>
fn shape<const D: usize>(tensor: &Self::Primitive<D>) -> Shape<D>
Returns the shape of the tensor. Read more
source§fn reshape<const D1: usize, const D2: usize>(
tensor: Self::Primitive<D1>,
shape: Shape<D2>,
) -> Self::Primitive<D2>
fn reshape<const D1: usize, const D2: usize>( tensor: Self::Primitive<D1>, shape: Shape<D2>, ) -> Self::Primitive<D2>
Reshapes the tensor. Read more
source§fn transpose<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<D>
fn transpose<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<D>
Transposes a tensor. Read more
source§fn swap_dims<const D: usize>(
tensor: Self::Primitive<D>,
dim1: usize,
dim2: usize,
) -> Self::Primitive<D>
fn swap_dims<const D: usize>( tensor: Self::Primitive<D>, dim1: usize, dim2: usize, ) -> Self::Primitive<D>
Swaps two dimensions of a tensor. Read more
source§fn slice<const D1: usize, const D2: usize>(
tensor: Self::Primitive<D1>,
ranges: [Range<usize>; D2],
) -> Self::Primitive<D1>
fn slice<const D1: usize, const D2: usize>( tensor: Self::Primitive<D1>, ranges: [Range<usize>; D2], ) -> Self::Primitive<D1>
Select tensor elements corresponding for the given ranges. Read more
source§fn slice_assign<const D1: usize, const D2: usize>(
tensor: Self::Primitive<D1>,
ranges: [Range<usize>; D2],
value: Self::Primitive<D1>,
) -> Self::Primitive<D1>
fn slice_assign<const D1: usize, const D2: usize>( tensor: Self::Primitive<D1>, ranges: [Range<usize>; D2], value: Self::Primitive<D1>, ) -> Self::Primitive<D1>
Assigns the given value to the tensor elements corresponding for the given ranges. Read more
source§fn device<const D: usize>(tensor: &Self::Primitive<D>) -> <B as Backend>::Device
fn device<const D: usize>(tensor: &Self::Primitive<D>) -> <B as Backend>::Device
Returns the device on which the tensor is allocated. Read more
source§fn to_device<const D: usize>(
tensor: Self::Primitive<D>,
device: &<B as Backend>::Device,
) -> Self::Primitive<D>
fn to_device<const D: usize>( tensor: Self::Primitive<D>, device: &<B as Backend>::Device, ) -> Self::Primitive<D>
Moves the tensor to the given device. Read more
source§async fn into_data_async<const D: usize>(
tensor: Self::Primitive<D>,
) -> TensorData
async fn into_data_async<const D: usize>( tensor: Self::Primitive<D>, ) -> TensorData
Extracts the data from the tensor asynchronously. Read more
source§fn from_data<const D: usize>(
data: TensorData,
device: &B::Device,
) -> Self::Primitive<D>
fn from_data<const D: usize>( data: TensorData, device: &B::Device, ) -> Self::Primitive<D>
Creates a tensor from the given data. Read more
source§fn repeat_dim<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
times: usize,
) -> Self::Primitive<D>
fn repeat_dim<const D: usize>( tensor: Self::Primitive<D>, dim: usize, times: usize, ) -> Self::Primitive<D>
Repeat the tensor along the given dimension. Read more
source§fn equal<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> Tensor<B, D, Bool>
fn equal<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> Tensor<B, D, Bool>
Equates the given tensors. Read more
source§fn not_equal<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> Tensor<B, D, Bool>
fn not_equal<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> Tensor<B, D, Bool>
Applies element-wise non-equality comparison between the given tensors. Read more
source§fn cat<const D: usize>(
vectors: Vec<Self::Primitive<D>>,
dim: usize,
) -> Self::Primitive<D>
fn cat<const D: usize>( vectors: Vec<Self::Primitive<D>>, dim: usize, ) -> Self::Primitive<D>
Concatenates the given tensors along the given dimension. Read more
source§fn any<const D: usize>(tensor: Self::Primitive<D>) -> Tensor<B, 1, Bool>
fn any<const D: usize>(tensor: Self::Primitive<D>) -> Tensor<B, 1, Bool>
Tests if any element in the
tensor
evaluates to True. Read moresource§fn any_dim<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> Tensor<B, D, Bool>
fn any_dim<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> Tensor<B, D, Bool>
Tests if any element in the tensor evaluates to True along a given dimension dim. Read more
source§fn all<const D: usize>(tensor: Self::Primitive<D>) -> Tensor<B, 1, Bool>
fn all<const D: usize>(tensor: Self::Primitive<D>) -> Tensor<B, 1, Bool>
Tests if all elements in the
tensor
evaluate to True. Read moresource§fn permute<const D: usize>(
tensor: Self::Primitive<D>,
axes: [usize; D],
) -> Self::Primitive<D>
fn permute<const D: usize>( tensor: Self::Primitive<D>, axes: [usize; D], ) -> Self::Primitive<D>
Permutes the dimensions of a tensor. Read more
source§fn expand<const D1: usize, const D2: usize>(
tensor: Self::Primitive<D1>,
shape: Shape<D2>,
) -> Self::Primitive<D2>
fn expand<const D1: usize, const D2: usize>( tensor: Self::Primitive<D1>, shape: Shape<D2>, ) -> Self::Primitive<D2>
Broadcasts the given tensor to the specified shape. Read more
source§fn flip<const D: usize>(
tensor: Self::Primitive<D>,
axes: &[usize],
) -> Self::Primitive<D>
fn flip<const D: usize>( tensor: Self::Primitive<D>, axes: &[usize], ) -> Self::Primitive<D>
Flips the tensor along the given axes. Read more
source§fn elem_type_name() -> &'static str
fn elem_type_name() -> &'static str
Returns the name of the element type.
source§impl<B: Backend> Numeric<B> for Int
impl<B: Backend> Numeric<B> for Int
source§fn add<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> <Int as TensorKind<B>>::Primitive<D>
fn add<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> <Int as TensorKind<B>>::Primitive<D>
Adds two tensors together. Read more
source§fn add_scalar<const D: usize, E: ElementConversion>(
lhs: Self::Primitive<D>,
rhs: E,
) -> Self::Primitive<D>
fn add_scalar<const D: usize, E: ElementConversion>( lhs: Self::Primitive<D>, rhs: E, ) -> Self::Primitive<D>
Adds a scalar to a tensor element-wise. Read more
source§fn sub<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> <Int as TensorKind<B>>::Primitive<D>
fn sub<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> <Int as TensorKind<B>>::Primitive<D>
Subtracts two tensors. Read more
source§fn sub_scalar<const D: usize, E: ElementConversion>(
lhs: Self::Primitive<D>,
rhs: E,
) -> Self::Primitive<D>
fn sub_scalar<const D: usize, E: ElementConversion>( lhs: Self::Primitive<D>, rhs: E, ) -> Self::Primitive<D>
Subtracts a scalar from a tensor element-wise. Read more
source§fn div<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> <Int as TensorKind<B>>::Primitive<D>
fn div<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> <Int as TensorKind<B>>::Primitive<D>
Divides two tensors. Read more
source§fn div_scalar<const D: usize, E: ElementConversion>(
lhs: Self::Primitive<D>,
rhs: E,
) -> Self::Primitive<D>
fn div_scalar<const D: usize, E: ElementConversion>( lhs: Self::Primitive<D>, rhs: E, ) -> Self::Primitive<D>
Divides a tensor by a scalar element-wise. Read more
source§fn remainder_scalar<const D: usize, E: ElementConversion>(
lhs: Self::Primitive<D>,
rhs: E,
) -> Self::Primitive<D>
fn remainder_scalar<const D: usize, E: ElementConversion>( lhs: Self::Primitive<D>, rhs: E, ) -> Self::Primitive<D>
Computes the modulus element-wise. The result has the same sign as the divisor rhs and its absolute value is
less than that of the divisor. Read more
source§fn mul<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> <Int as TensorKind<B>>::Primitive<D>
fn mul<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> <Int as TensorKind<B>>::Primitive<D>
Multiplies two tensors. Read more
source§fn mul_scalar<const D: usize, E: ElementConversion>(
lhs: Self::Primitive<D>,
rhs: E,
) -> Self::Primitive<D>
fn mul_scalar<const D: usize, E: ElementConversion>( lhs: Self::Primitive<D>, rhs: E, ) -> Self::Primitive<D>
Multiplies a tensor by a scalar element-wise. Read more
source§fn neg<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<D>
fn neg<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<D>
Negates a tensor. Read more
source§fn zeros<const D: usize>(
shape: Shape<D>,
device: &B::Device,
) -> Self::Primitive<D>
fn zeros<const D: usize>( shape: Shape<D>, device: &B::Device, ) -> Self::Primitive<D>
Creates a tensor filled with zeros. Read more
source§fn ones<const D: usize>(
shape: Shape<D>,
device: &B::Device,
) -> Self::Primitive<D>
fn ones<const D: usize>( shape: Shape<D>, device: &B::Device, ) -> Self::Primitive<D>
Creates a tensor filled with ones. Read more
source§fn full<const D: usize, E: ElementConversion>(
shape: Shape<D>,
fill_value: E,
device: &B::Device,
) -> Self::Primitive<D>
fn full<const D: usize, E: ElementConversion>( shape: Shape<D>, fill_value: E, device: &B::Device, ) -> Self::Primitive<D>
Creates a tensor filled with elements equal to the given value. Read more
source§fn sum<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
fn sum<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
Sums all the elements of the tensor. Read more
source§fn sum_dim<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> Self::Primitive<D>
fn sum_dim<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> Self::Primitive<D>
Sums all the elements of the tensor along a dimension. Read more
source§fn prod<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
fn prod<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
Computes the product of all the elements of the tensor. Read more
source§fn prod_dim<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> Self::Primitive<D>
fn prod_dim<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> Self::Primitive<D>
Computes the product of all the elements of the tensor along a dimension. Read more
source§fn mean<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
fn mean<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
Computes the mean of all the elements of the tensor. Read more
source§fn mean_dim<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> Self::Primitive<D>
fn mean_dim<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> Self::Primitive<D>
Computes the mean of all the elements of the tensor along a dimension. Read more
source§fn equal_elem<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Elem,
) -> Tensor<B, D, Bool>
fn equal_elem<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Elem, ) -> Tensor<B, D, Bool>
Element-wise equality between two tensors. Read more
source§fn not_equal_elem<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Elem,
) -> Tensor<B, D, Bool>
fn not_equal_elem<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Elem, ) -> Tensor<B, D, Bool>
Element-wise non-equality between two tensors. Read more
source§fn greater<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> Tensor<B, D, Bool>
fn greater<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> Tensor<B, D, Bool>
Element-wise greater than comparison between two tensors. Read more
source§fn greater_elem<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Elem,
) -> Tensor<B, D, Bool>
fn greater_elem<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Elem, ) -> Tensor<B, D, Bool>
Element-wise greater than comparison between a tensor and a scalar. Read more
source§fn greater_equal<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> Tensor<B, D, Bool>
fn greater_equal<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> Tensor<B, D, Bool>
Element-wise greater than or equal comparison between two tensors. Read more
source§fn greater_equal_elem<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Elem,
) -> Tensor<B, D, Bool>
fn greater_equal_elem<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Elem, ) -> Tensor<B, D, Bool>
Element-wise greater than or equal comparison between a tensor and a scalar. Read more
source§fn lower<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> Tensor<B, D, Bool>
fn lower<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> Tensor<B, D, Bool>
Element-wise less than comparison between two tensors. Read more
source§fn lower_elem<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Elem,
) -> Tensor<B, D, Bool>
fn lower_elem<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Elem, ) -> Tensor<B, D, Bool>
Element-wise less than comparison between a tensor and a scalar. Read more
source§fn lower_equal<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> Tensor<B, D, Bool>
fn lower_equal<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> Tensor<B, D, Bool>
Element-wise less than or equal comparison between two tensors. Read more
source§fn lower_equal_elem<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Elem,
) -> Tensor<B, D, Bool>
fn lower_equal_elem<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Elem, ) -> Tensor<B, D, Bool>
Element-wise less than or equal comparison between a tensor and a scalar. Read more
source§fn mask_where<const D: usize>(
tensor: Self::Primitive<D>,
mask: Tensor<B, D, Bool>,
source: Self::Primitive<D>,
) -> Self::Primitive<D>
fn mask_where<const D: usize>( tensor: Self::Primitive<D>, mask: Tensor<B, D, Bool>, source: Self::Primitive<D>, ) -> Self::Primitive<D>
Selects elements from a tensor based on a boolean mask. Read more
source§fn mask_fill<const D: usize>(
tensor: Self::Primitive<D>,
mask: Tensor<B, D, Bool>,
value: Self::Elem,
) -> Self::Primitive<D>
fn mask_fill<const D: usize>( tensor: Self::Primitive<D>, mask: Tensor<B, D, Bool>, value: Self::Elem, ) -> Self::Primitive<D>
Fills elements of a tensor based on a boolean mask. Read more
source§fn select<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
indices: Tensor<B, 1, Int>,
) -> Self::Primitive<D>
fn select<const D: usize>( tensor: Self::Primitive<D>, dim: usize, indices: Tensor<B, 1, Int>, ) -> Self::Primitive<D>
Select tensor elements along the given dimension corresponding for the given indices. Read more
source§fn select_assign<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
indices: Tensor<B, 1, Int>,
values: Self::Primitive<D>,
) -> Self::Primitive<D>
fn select_assign<const D: usize>( tensor: Self::Primitive<D>, dim: usize, indices: Tensor<B, 1, Int>, values: Self::Primitive<D>, ) -> Self::Primitive<D>
Assign the selected elements along the given dimension corresponding to the given indices
from the value tensor. Read more
source§fn gather<const D: usize>(
dim: usize,
tensor: Self::Primitive<D>,
indices: Tensor<B, D, Int>,
) -> Self::Primitive<D>
fn gather<const D: usize>( dim: usize, tensor: Self::Primitive<D>, indices: Tensor<B, D, Int>, ) -> Self::Primitive<D>
Gathers elements from a tensor along an axis. Read more
source§fn scatter<const D: usize>(
dim: usize,
tensor: Self::Primitive<D>,
indices: Tensor<B, D, Int>,
values: Self::Primitive<D>,
) -> Self::Primitive<D>
fn scatter<const D: usize>( dim: usize, tensor: Self::Primitive<D>, indices: Tensor<B, D, Int>, values: Self::Primitive<D>, ) -> Self::Primitive<D>
Scatters elements into a tensor along an axis. Read more
source§fn argmax<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> <B as Backend>::IntTensorPrimitive<D>
fn argmax<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> <B as Backend>::IntTensorPrimitive<D>
Gets the indices of the maximum elements of a tensor along an axis. Read more
source§fn argmin<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> <B as Backend>::IntTensorPrimitive<D>
fn argmin<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> <B as Backend>::IntTensorPrimitive<D>
Gets the indices of the minimum elements of a tensor along an axis. Read more
source§fn max<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
fn max<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
Gets the maximum elements of a tensor along an axis. Read more
source§fn max_dim<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> Self::Primitive<D>
fn max_dim<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> Self::Primitive<D>
Gets the maximum elements of a tensor along an axis. Read more
source§fn max_dim_with_indices<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> (Self::Primitive<D>, <B as Backend>::IntTensorPrimitive<D>)
fn max_dim_with_indices<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> (Self::Primitive<D>, <B as Backend>::IntTensorPrimitive<D>)
Gets the maximum elements of a tensor along an axis. Read more
source§fn min<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
fn min<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<1>
Gets the minimum elements of a tensor along an axis. Read more
source§fn min_dim<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> Self::Primitive<D>
fn min_dim<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> Self::Primitive<D>
Gets the minimum elements of a tensor along an axis. Read more
source§fn min_dim_with_indices<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
) -> (Self::Primitive<D>, <B as Backend>::IntTensorPrimitive<D>)
fn min_dim_with_indices<const D: usize>( tensor: Self::Primitive<D>, dim: usize, ) -> (Self::Primitive<D>, <B as Backend>::IntTensorPrimitive<D>)
Gets the minimum elements and indices of a tensor along an axis. Read more
source§fn clamp<const D: usize>(
tensor: Self::Primitive<D>,
min: B::IntElem,
max: B::IntElem,
) -> Self::Primitive<D>
fn clamp<const D: usize>( tensor: Self::Primitive<D>, min: B::IntElem, max: B::IntElem, ) -> Self::Primitive<D>
Clamp the tensor between the given min and max values. Read more
source§fn clamp_min<const D: usize>(
tensor: Self::Primitive<D>,
min: B::IntElem,
) -> Self::Primitive<D>
fn clamp_min<const D: usize>( tensor: Self::Primitive<D>, min: B::IntElem, ) -> Self::Primitive<D>
Clamps a tensor under a minimum value. Read more
source§fn clamp_max<const D: usize>(
tensor: Self::Primitive<D>,
max: B::IntElem,
) -> Self::Primitive<D>
fn clamp_max<const D: usize>( tensor: Self::Primitive<D>, max: B::IntElem, ) -> Self::Primitive<D>
Clamps a tensor over a maximum value. Read more
source§fn abs<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<D>
fn abs<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<D>
Calculate absolute value on all elements of a tensor Read more
source§fn powf<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> Self::Primitive<D>
fn powf<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> Self::Primitive<D>
Element-wise power of a tensor to a float tensor Read more
source§fn powf_scalar<const D: usize, E: ElementConversion>(
lhs: Self::Primitive<D>,
rhs: E,
) -> <Int as TensorKind<B>>::Primitive<D>
fn powf_scalar<const D: usize, E: ElementConversion>( lhs: Self::Primitive<D>, rhs: E, ) -> <Int as TensorKind<B>>::Primitive<D>
Element-wise power of a tensor to a scalar float Read more
source§fn powi<const D: usize>(
lhs: Self::Primitive<D>,
rhs: Self::Primitive<D>,
) -> Self::Primitive<D>
fn powi<const D: usize>( lhs: Self::Primitive<D>, rhs: Self::Primitive<D>, ) -> Self::Primitive<D>
Element-wise power of a tensor Read more
source§fn powi_scalar<const D: usize, E: ElementConversion>(
lhs: Self::Primitive<D>,
rhs: E,
) -> Self::Primitive<D>
fn powi_scalar<const D: usize, E: ElementConversion>( lhs: Self::Primitive<D>, rhs: E, ) -> Self::Primitive<D>
Element-wise power of a tensor to a scalar int Read more
source§fn random<const D: usize>(
shape: Shape<D>,
distribution: Distribution,
device: &<B as Backend>::Device,
) -> Self::Primitive<D>
fn random<const D: usize>( shape: Shape<D>, distribution: Distribution, device: &<B as Backend>::Device, ) -> Self::Primitive<D>
Create a random tensor. Read more
source§fn sign<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<D>
fn sign<const D: usize>(tensor: Self::Primitive<D>) -> Self::Primitive<D>
Returns the signs of the elements of a tensor. Read more
source§fn sort<const D: usize>(
tensor: Self::Primitive<D>,
dim: usize,
descending: bool,
) -> Self::Primitive<D>
fn sort<const D: usize>( tensor: Self::Primitive<D>, dim: usize, descending: bool, ) -> Self::Primitive<D>
Sort the elements of the input
tensor
by value along a given dimension. Read moreAuto Trait Implementations§
impl Freeze for Int
impl RefUnwindSafe for Int
impl Send for Int
impl Sync for Int
impl Unpin for Int
impl UnwindSafe for Int
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)