56 Tensor
Concatenate(
const std::vector<Tensor>& tensors,
57 const std::optional<int64_t>& axis = 0);
91 Tensor
Append(
const Tensor&
self,
93 const std::optional<int64_t>& axis = std::nullopt);
103 Tensor
Maximum(
const Tensor& input,
const Tensor& other);
113 Tensor
Minimum(
const Tensor& input,
const Tensor& other);
Tensor Append(const Tensor &self, const Tensor &other, const std::optional< int64_t > &axis)
Appends the two tensors, along the given axis into a new tensor. Both the tensors must have same data...
Definition: TensorFunction.cpp:118
Tensor Minimum(const Tensor &input, const Tensor &other)
Computes the element-wise minimum of input and other. The tensors must have same data type and device...
Definition: TensorFunction.cpp:136
Tensor Concatenate(const std::vector< Tensor > &tensors, const std::optional< int64_t > &axis)
Concatenates the list of tensors in their order, along the given axis into a new tensor....
Definition: TensorFunction.cpp:79
Tensor Maximum(const Tensor &input, const Tensor &other)
Computes the element-wise maximum of input and other. The tensors must have same data type and device...
Definition: TensorFunction.cpp:124
Definition: PinholeCameraIntrinsic.cpp:16