Trait burn_tensor::ops::IntTensorOps
source · pub trait IntTensorOps<B: Backend> {
Show 52 methods
// Required methods
fn int_empty<const D: usize>(
shape: Shape<D>,
device: &B::Device
) -> B::IntTensorPrimitive<D>;
fn int_shape<const D: usize>(tensor: &B::IntTensorPrimitive<D>) -> Shape<D>;
fn int_into_data<const D: usize>(
tensor: B::IntTensorPrimitive<D>
) -> Data<B::IntElem, D>;
fn int_from_data<const D: usize>(
data: Data<B::IntElem, D>,
device: &B::Device
) -> B::IntTensorPrimitive<D>;
fn int_device<const D: usize>(
tensor: &B::IntTensorPrimitive<D>
) -> B::Device;
fn int_to_device<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
device: &B::Device
) -> B::IntTensorPrimitive<D>;
fn int_reshape<const D1: usize, const D2: usize>(
tensor: B::IntTensorPrimitive<D1>,
shape: Shape<D2>
) -> B::IntTensorPrimitive<D2>;
fn int_slice<const D1: usize, const D2: usize>(
tensor: B::IntTensorPrimitive<D1>,
indices: [Range<usize>; D2]
) -> B::IntTensorPrimitive<D1>;
fn int_slice_assign<const D1: usize, const D2: usize>(
tensor: B::IntTensorPrimitive<D1>,
indices: [Range<usize>; D2],
value: B::IntTensorPrimitive<D1>
) -> B::IntTensorPrimitive<D1>;
fn int_mask_where<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
mask: B::BoolTensorPrimitive<D>,
source: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>;
fn int_mask_fill<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
mask: B::BoolTensorPrimitive<D>,
value: B::IntElem
) -> B::IntTensorPrimitive<D>;
fn int_gather<const D: usize>(
dim: usize,
tensor: B::IntTensorPrimitive<D>,
indices: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>;
fn int_scatter<const D: usize>(
dim: usize,
tensor: B::IntTensorPrimitive<D>,
indices: B::IntTensorPrimitive<D>,
value: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>;
fn int_select<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize,
indices: B::IntTensorPrimitive<1>
) -> B::IntTensorPrimitive<D>;
fn int_select_assign<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize,
indices: B::IntTensorPrimitive<1>,
value: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>;
fn int_cat<const D: usize>(
tensors: Vec<B::IntTensorPrimitive<D>>,
dim: usize
) -> B::IntTensorPrimitive<D>;
fn int_equal<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::BoolTensorPrimitive<D>;
fn int_equal_elem<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::BoolTensorPrimitive<D>;
fn int_greater<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::BoolTensorPrimitive<D>;
fn int_greater_elem<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::BoolTensorPrimitive<D>;
fn int_greater_equal<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::BoolTensorPrimitive<D>;
fn int_greater_equal_elem<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::BoolTensorPrimitive<D>;
fn int_lower<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::BoolTensorPrimitive<D>;
fn int_lower_elem<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::BoolTensorPrimitive<D>;
fn int_lower_equal<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::BoolTensorPrimitive<D>;
fn int_lower_equal_elem<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::BoolTensorPrimitive<D>;
fn int_add<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>;
fn int_add_scalar<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::IntTensorPrimitive<D>;
fn int_sub<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>;
fn int_sub_scalar<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::IntTensorPrimitive<D>;
fn int_mul<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>;
fn int_mul_scalar<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::IntTensorPrimitive<D>;
fn int_div<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>;
fn int_div_scalar<const D: usize>(
lhs: B::IntTensorPrimitive<D>,
rhs: B::IntElem
) -> B::IntTensorPrimitive<D>;
fn int_zeros<const D: usize>(
shape: Shape<D>,
device: &B::Device
) -> B::IntTensorPrimitive<D>;
fn int_ones<const D: usize>(
shape: Shape<D>,
device: &B::Device
) -> B::IntTensorPrimitive<D>;
fn int_sum<const D: usize>(
tensor: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<1>;
fn int_sum_dim<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize
) -> B::IntTensorPrimitive<D>;
fn int_mean_dim<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize
) -> B::IntTensorPrimitive<D>;
fn int_argmax<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize
) -> B::IntTensorPrimitive<D>;
fn int_argmin<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize
) -> B::IntTensorPrimitive<D>;
// Provided methods
fn int_to_data<const D: usize>(
tensor: &B::IntTensorPrimitive<D>
) -> Data<B::IntElem, D> { ... }
fn int_repeat<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize,
times: usize
) -> B::IntTensorPrimitive<D> { ... }
fn int_neg<const D: usize>(
tensor: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D> { ... }
fn int_full<const D: usize>(
shape: Shape<D>,
fill_value: B::IntElem,
device: &B::Device
) -> B::IntTensorPrimitive<D> { ... }
fn int_mean<const D: usize>(
tensor: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<1> { ... }
fn int_max<const D: usize>(
tensor: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<1> { ... }
fn int_max_dim<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize
) -> B::IntTensorPrimitive<D> { ... }
fn int_max_dim_with_indices<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize
) -> (B::IntTensorPrimitive<D>, B::IntTensorPrimitive<D>) { ... }
fn int_min<const D: usize>(
tensor: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<1> { ... }
fn int_min_dim<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize
) -> B::IntTensorPrimitive<D> { ... }
fn int_min_dim_with_indices<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
dim: usize
) -> (B::IntTensorPrimitive<D>, B::IntTensorPrimitive<D>) { ... }
}
Expand description
Int Tensor API for basic and numeric operations, see tensor for documentation on each function.
Required Methods§
sourcefn int_empty<const D: usize>(
shape: Shape<D>,
device: &B::Device
) -> B::IntTensorPrimitive<D>
fn int_empty<const D: usize>( shape: Shape<D>, device: &B::Device ) -> B::IntTensorPrimitive<D>
sourcefn int_shape<const D: usize>(tensor: &B::IntTensorPrimitive<D>) -> Shape<D>
fn int_shape<const D: usize>(tensor: &B::IntTensorPrimitive<D>) -> Shape<D>
sourcefn int_into_data<const D: usize>(
tensor: B::IntTensorPrimitive<D>
) -> Data<B::IntElem, D>
fn int_into_data<const D: usize>( tensor: B::IntTensorPrimitive<D> ) -> Data<B::IntElem, D>
sourcefn int_from_data<const D: usize>(
data: Data<B::IntElem, D>,
device: &B::Device
) -> B::IntTensorPrimitive<D>
fn int_from_data<const D: usize>( data: Data<B::IntElem, D>, device: &B::Device ) -> B::IntTensorPrimitive<D>
sourcefn int_device<const D: usize>(tensor: &B::IntTensorPrimitive<D>) -> B::Device
fn int_device<const D: usize>(tensor: &B::IntTensorPrimitive<D>) -> B::Device
sourcefn int_to_device<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
device: &B::Device
) -> B::IntTensorPrimitive<D>
fn int_to_device<const D: usize>( tensor: B::IntTensorPrimitive<D>, device: &B::Device ) -> B::IntTensorPrimitive<D>
Moves the tensor to the given device.
sourcefn int_reshape<const D1: usize, const D2: usize>(
tensor: B::IntTensorPrimitive<D1>,
shape: Shape<D2>
) -> B::IntTensorPrimitive<D2>
fn int_reshape<const D1: usize, const D2: usize>( tensor: B::IntTensorPrimitive<D1>, shape: Shape<D2> ) -> B::IntTensorPrimitive<D2>
sourcefn int_slice<const D1: usize, const D2: usize>(
tensor: B::IntTensorPrimitive<D1>,
indices: [Range<usize>; D2]
) -> B::IntTensorPrimitive<D1>
fn int_slice<const D1: usize, const D2: usize>( tensor: B::IntTensorPrimitive<D1>, indices: [Range<usize>; D2] ) -> B::IntTensorPrimitive<D1>
sourcefn int_slice_assign<const D1: usize, const D2: usize>(
tensor: B::IntTensorPrimitive<D1>,
indices: [Range<usize>; D2],
value: B::IntTensorPrimitive<D1>
) -> B::IntTensorPrimitive<D1>
fn int_slice_assign<const D1: usize, const D2: usize>( tensor: B::IntTensorPrimitive<D1>, indices: [Range<usize>; D2], value: B::IntTensorPrimitive<D1> ) -> B::IntTensorPrimitive<D1>
sourcefn int_mask_where<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
mask: B::BoolTensorPrimitive<D>,
source: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>
fn int_mask_where<const D: usize>( tensor: B::IntTensorPrimitive<D>, mask: B::BoolTensorPrimitive<D>, source: B::IntTensorPrimitive<D> ) -> B::IntTensorPrimitive<D>
sourcefn int_mask_fill<const D: usize>(
tensor: B::IntTensorPrimitive<D>,
mask: B::BoolTensorPrimitive<D>,
value: B::IntElem
) -> B::IntTensorPrimitive<D>
fn int_mask_fill<const D: usize>( tensor: B::IntTensorPrimitive<D>, mask: B::BoolTensorPrimitive<D>, value: B::IntElem ) -> B::IntTensorPrimitive<D>
sourcefn int_gather<const D: usize>(
dim: usize,
tensor: B::IntTensorPrimitive<D>,
indices: B::IntTensorPrimitive<D>
) -> B::IntTensorPrimitive<D>
fn int_gather<const D: usize>( dim: usize, tensor: B::IntTensorPrimitive<D>, indices: B::IntTensorPrimitive<D> ) -> B::IntTensorPrimitive<D>
Gather elements from the tensor at the given indices.
Arguments
dim
- The dimension to gather from.tensor
- The tensor.indices
- The indices.