Comment on page
tensor.neg
#tensor.neg
fn neg(self: @Tensor<T>) -> Tensor<T>;
Computes the negation of all elements in the input tensor.
self
(@Tensor<T>
) - The input tensor.
A new
Tensor<T>
of the same shape as the input tensor with the negation of all elements in the input tensor.use array::{ArrayTrait, SpanTrait};
use orion::operators::tensor::{TensorTrait, Tensor, I32Tensor};
use orion::numbers::{i32, IntegerTrait};
fn neg_example() -> Tensor<i32> {
let tensor = TensorTrait::new(
shape: array![3].span(),
data: array![
IntegerTrait::new(1, true), IntegerTrait::new(2, true), IntegerTrait::new(3, false)
]
.span(),
);
return tensor.neg();
}
>>> [1, 2, -3]
Last modified 1mo ago