33 #include <type_traits> 69 Tensor(
const std::vector<T>& init_vals,
73 :
Tensor(shape, dtype, device) {
77 "Tensor initialization values' size {} does not match the " 83 AssertTemplateDtype<T>();
84 if (!std::is_pod<T>()) {
91 init_vals.size() * dtype.
ByteSize());
100 :
Tensor(shape, dtype, device) {
102 AssertTemplateDtype<T>();
117 const std::shared_ptr<Blob>& blob)
134 template <
typename T>
138 shape_ = {
static_cast<int64_t
>(vec.size())};
144 "Tensor initialization values' size {} does not match the " 149 auto sp_vec = std::make_shared<std::vector<T>>();
151 data_ptr_ =
static_cast<void*
>(sp_vec->data());
157 [sp_vec](
void*) { (
void)sp_vec; });
190 blob_ = std::make_shared<Blob>(device, (
void*)
data_ptr_, [](
void*) {});
222 template <
typename T>
237 template <
typename Object>
241 "Assignment with scalar only works for scalar Tensor of " 244 AssertTemplateDtype<Object>();
252 template <
typename S>
255 template <
typename Object>
270 template <
typename T>
292 template <
typename T>
295 std::vector<T> ele_list{val};
297 return Tensor(ele_list, shape, type, device);
302 template <
typename T>
305 return InitWithInitializerList<T, 1>(in_list, device);
310 template <
typename T>
312 const std::initializer_list<std::initializer_list<T>>& in_list,
314 return InitWithInitializerList<T, 2>(in_list, device);
319 template <
typename T>
321 const std::initializer_list<
322 std::initializer_list<std::initializer_list<T>>>& in_list,
324 return InitWithInitializerList<T, 3>(in_list, device);
497 Tensor Flatten(int64_t start_dim = 0, int64_t end_dim = -1)
const;
545 std::string
ToString(
bool with_suffix =
true,
546 const std::string& indent =
"")
const;
564 int64_t step = 1)
const;
594 void IndexSet(
const std::vector<Tensor>& index_tensors,
595 const Tensor& src_tensor);
625 template <
typename T>
629 "Tensor::Item() only works for Tensor with exactly one " 632 AssertTemplateDtype<T>();
960 bool keepdim =
false)
const;
965 bool keepdim =
false)
const;
999 double atol = 1e-8)
const;
1021 double atol = 1e-8)
const;
1029 template <
typename T>
1031 AssertTemplateDtype<T>();
1069 std::tuple<Tensor, Tensor, Tensor>
LU(
const bool permute_l =
false)
const;
1083 std::tuple<Tensor, Tensor>
LUIpiv()
const;
1118 std::tuple<Tensor, Tensor>
Triul(
const int diagonal = 0)
const;
1126 std::tuple<Tensor, Tensor, Tensor>
SVD()
const;
1148 template <
typename T>
1150 return const_cast<T*
>(
const_cast<const Tensor*
>(
this)->GetDataPtr<T>());
1153 template <
typename T>
1157 "Requested values have type {} but Tensor has type {}. " 1158 "Please use non templated GetDataPtr() with manual " 1179 template <
typename T>
1183 "Requested values have type {} but Tensor has type {}",
1199 void Save(
const std::string& file_name)
const;
1202 static Tensor Load(
const std::string& file_name);
1228 std::unique_ptr<Impl> impl_;
1255 std::unique_ptr<Impl> impl_;
1295 template <
typename T,
size_t D>
1296 static Tensor InitWithInitializerList(
1300 std::vector<T> values =
1301 tensor_init::ToFlatVector<T, D>(shape, nested_list);
1302 return Tensor(values, shape, Dtype::FromType<T>(), device);
1345 :
Tensor(shape, dtype, device) {
1349 "Tensor initialization values' size {} does not match the " 1355 AssertTemplateDtype<bool>();
1359 std::vector<uint8_t> init_vals_uchar(init_vals.size());
1360 std::transform(init_vals.begin(), init_vals.end(), init_vals_uchar.begin(),
1361 [](
bool v) -> uint8_t {
return static_cast<uint8_t
>(v); });
1364 init_vals_uchar.data(),
1365 init_vals_uchar.size() * dtype.
ByteSize());
1370 AssertTemplateDtype<bool>();
1379 std::transform(values_uchar.begin(), values_uchar.end(), values.begin(),
1380 [](uint8_t v) ->
bool {
return static_cast<bool>(v); });
1388 "Tensor::Item only works for Tensor with one element.");
1390 AssertTemplateDtype<bool>();
1394 return static_cast<bool>(value);
1397 template <
typename S>
1400 scalar_t casted_v =
static_cast<scalar_t
>(v);
1407 template <
typename Object>
1414 template <
typename T>
1416 return rhs + scalar_lhs;
1419 template <
typename T>
1424 template <
typename T>
1426 return rhs * scalar_lhs;
1429 template <
typename T>
Tensor Cos_()
Element-wise cosine of a tensor, in-place.
Definition: Tensor.cpp:1273
const Tensor AsRvalue() const
Convert to constant rvalue.
Definition: Tensor.h:579
bool operator==(const Iterator &other) const
Definition: Tensor.cpp:246
Tensor(const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Constructor for creating a contiguous Tensor.
Definition: Tensor.h:56
int64_t NumElements() const
Definition: Tensor.h:1175
Tensor operator[](int64_t i) const
Extract the i-th Tensor along the first axis, returning a new view.
Definition: Tensor.cpp:825
constexpr nullopt_t nullopt
Definition: Optional.h:171
Tensor GetItem(const TensorKey &tk) const
Definition: Tensor.cpp:459
Tensor Sin_()
Element-wise sine of a tensor, in-place.
Definition: Tensor.cpp:1262
Tensor Sqrt_()
Element-wise square root of a tensor, in-place.
Definition: Tensor.cpp:1251
std::string ToString(bool with_suffix=true, const std::string &indent="") const
Definition: Tensor.cpp:766
Tensor operator*=(const Tensor &value)
Definition: Tensor.h:674
Tensor LogicalOr(const Tensor &value) const
Definition: Tensor.cpp:1436
The common header of DLPack.
int64_t NumDims() const
Definition: Tensor.h:1177
static void MemcpyFromHost(void *dst_ptr, const Device &dst_device, const void *host_ptr, size_t num_bytes)
Same as Memcpy, but with host (CPU:0) as default src_device.
Definition: MemoryManager.cpp:96
Tensor Sum(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1189
Tensor(const SizeVector &shape, const SizeVector &strides, void *data_ptr, Dtype dtype, const std::shared_ptr< Blob > &blob)
Definition: Tensor.h:113
static Tensor Init(const std::initializer_list< std::initializer_list< T >> &in_list, const Device &device=Device("CPU:0"))
Definition: Tensor.h:311
const Dtype Int64
Definition: Dtype.cpp:66
ConstIterator end() const
Definition: Tensor.h:1288
Tensor operator||(const Tensor &value) const
Definition: Tensor.h:844
Tensor Lt_(const Tensor &value)
Definition: Tensor.cpp:1553
Tensor Inverse() const
Definition: Tensor.cpp:1910
Tensor Ge(const Tensor &value) const
Definition: Tensor.cpp:1567
Tensor SetItem(const Tensor &value)
Set all items. Equivalent to tensor[:] = value in Python.
Definition: Tensor.cpp:550
static Tensor Full(const SizeVector &shape, T fill_value, Dtype dtype, const Device &device=Device("CPU:0"))
Create a tensor fill with specified value.
Definition: Tensor.h:271
bool AllClose(const Tensor &other, double rtol=1e-5, double atol=1e-8) const
Definition: Tensor.cpp:1823
std::shared_ptr< Blob > blob_
Underlying memory buffer for Tensor.
Definition: Tensor.h:1337
Tensor ArgMin(const SizeVector &dims) const
Definition: Tensor.cpp:1231
C Tensor object, manage memory of DLTensor. This data structure is intended to facilitate the borrowi...
Definition: DLPack.h:193
Tensor Solve(const Tensor &rhs) const
Definition: Tensor.cpp:1856
Tensor AsStrided(const SizeVector &new_shape, const SizeVector &new_strides) const
Create a Tensor view of specified shape and strides. The underlying buffer and data_ptr offsets remai...
Definition: Tensor.cpp:1010
Tensor ReinterpretCast(const core::Dtype &dtype) const
Definition: Tensor.cpp:374
Tensor Gt_(const Tensor &value)
Definition: Tensor.cpp:1521
Tensor Any(const utility::optional< SizeVector > &dims=utility::nullopt, bool keepdim=false) const
Definition: Tensor.cpp:1738
void * GetDataPtr()
Definition: Tensor.h:1165
Tensor Mul_(const Tensor &value)
Definition: Tensor.cpp:1138
Tensor LogicalXor(const Tensor &value) const
Definition: Tensor.cpp:1469
TensorKey is used to represent single index, slice or advanced indexing on a Tensor.
Definition: TensorKey.h:45
void Save(const std::string &file_name) const
Save tensor to numpy's npy format.
Definition: Tensor.cpp:1805
static Tensor Arange(const Scalar start, const Scalar stop, const Scalar step=1, const Dtype dtype=core::Int64, const Device &device=core::Device("CPU:0"))
Create a 1D tensor with evenly spaced values in the given interval.
Definition: Tensor.cpp:422
Tensor IsClose(const Tensor &other, double rtol=1e-5, double atol=1e-8) const
Definition: Tensor.cpp:1828
pointer operator->() const
Definition: Tensor.cpp:230
std::ptrdiff_t difference_type
Definition: Tensor.h:1234
Tensor LogicalAnd_(const Tensor &value)
Definition: Tensor.cpp:1421
Tensor value_type
Definition: Tensor.h:1208
Tensor operator==(const Tensor &value) const
Definition: Tensor.h:917
Tensor(const T *init_vals, const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Constructor from raw host buffer. The memory will be copied.
Definition: Tensor.h:96
reference operator*() const
Definition: Tensor.cpp:226
size_t size() const
Definition: SmallVector.h:138
Tensor Exp() const
Element-wise exponential of a tensor, returning a new tensor.
Definition: Tensor.cpp:1289
const SizeVector & GetStridesRef() const
Definition: Tensor.h:1142
Tensor Broadcast(const SizeVector &dst_shape) const
Broadcast Tensor to a new broadcastable shape.
Definition: Tensor.cpp:614
Tensor Eq(const Tensor &value) const
Element-wise equals-to of tensors, returning a new boolean tensor.
Definition: Tensor.cpp:1631
Tensor operator/(const Tensor &value) const
Definition: Tensor.h:680
Tensor IsInf() const
Definition: Tensor.cpp:1321
Tensor operator*=(Scalar value)
Definition: Tensor.h:675
Tensor NonZero() const
Definition: Tensor.cpp:1704
Tensor Sub_(const Tensor &value)
Definition: Tensor.cpp:1102
Tensor operator>=(const Tensor &value) const
Definition: Tensor.h:896
int64_t GetLength() const
Definition: SizeVector.cpp:143
Tensor LogicalNot() const
Definition: Tensor.cpp:1391
Tensor LogicalXor_(const Tensor &value)
Definition: Tensor.cpp:1488
std::tuple< Tensor, Tensor, Tensor > LU(const bool permute_l=false) const
Computes LU factorisation of the 2D square tensor, using A = P * L * U; where P is the permutation ma...
Definition: Tensor.cpp:1876
Tensor operator+=(const Tensor &value)
Definition: Tensor.h:648
static void MemcpyToHost(void *host_ptr, const void *src_ptr, const Device &src_device, size_t num_bytes)
Same as Memcpy, but with host (CPU:0) as default dst_device.
Definition: MemoryManager.cpp:104
std::tuple< Tensor, Tensor, Tensor > SVD() const
Definition: Tensor.cpp:1918
Tensor Min(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1217
std::string ToString() const
Definition: Dtype.h:83
Tensor All(const utility::optional< SizeVector > &dims=utility::nullopt, bool keepdim=false) const
Definition: Tensor.cpp:1719
bool IsNonZero() const
Definition: Tensor.cpp:1706
Iterator for Tensor.
Definition: Tensor.h:1205
Tensor Ceil() const
Element-wise ceil value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1366
Tensor Reverse() const
Reverse a Tensor's elements by viewing the tensor as a 1D array.
Definition: Tensor.cpp:451
Definition: SizeVector.h:88
Const iterator for Tensor.
Definition: Tensor.h:1232
std::tuple< Tensor, Tensor > LUIpiv() const
Computes LU factorisation of the 2D square tensor, using A = P * L * U; where P is the permutation ma...
Definition: Tensor.cpp:1884
std::forward_iterator_tag iterator_category
Definition: Tensor.h:1233
Tensor View(const SizeVector &dst_shape) const
Definition: Tensor.cpp:707
std::forward_iterator_tag iterator_category
Definition: Tensor.h:1206
Tensor Permute(const SizeVector &dims) const
Permute (dimension shuffle) the Tensor, returns a view.
Definition: Tensor.cpp:977
SizeVector strides_
Definition: Tensor.h:1316
static Tensor Diag(const Tensor &input)
Create a square matrix with specified diagonal elements in input.
Definition: Tensor.cpp:410
Tensor Matmul(const Tensor &rhs) const
Definition: Tensor.cpp:1847
Tensor operator+(Scalar value) const
Definition: Tensor.h:642
Tensor Max(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1224
Dtype GetDtype() const
Definition: Tensor.h:1169
Device GetDevice() const override
Definition: Tensor.cpp:1384
static Tensor EmptyLike(const Tensor &other)
Definition: Tensor.h:265
Tensor operator*(const Tensor &value) const
Definition: Tensor.h:667
Tensor operator<=(const Tensor &value) const
Definition: Tensor.h:907
int64_t GetStride(int64_t dim) const
Definition: Tensor.h:1144
Tensor Clip_(Scalar min_val, Scalar max_val)
Definition: Tensor.cpp:1347
Iterator end()
Definition: Tensor.cpp:262
Tensor Lt(const Tensor &value) const
Element-wise less-than of tensors, returning a new boolean tensor.
Definition: Tensor.cpp:1535
Tensor ArgMax(const SizeVector &dims) const
Definition: Tensor.cpp:1238
Tensor Transpose(int64_t dim0, int64_t dim1) const
Transpose a Tensor by swapping dimension dim0 and dim1.
Definition: Tensor.cpp:1017
Tensor IndexGet(const std::vector< Tensor > &index_tensors) const
Advanced indexing getter. This will always allocate a new Tensor.
Definition: Tensor.cpp:891
Tensor T() const
Expects input to be <= 2-D Tensor by swapping dimension 0 and 1.
Definition: Tensor.cpp:1028
static Tensor Empty(const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Create a tensor with uninitialized values.
Definition: Tensor.cpp:386
LLVM_NODISCARD bool empty() const
Definition: SmallVector.h:141
Tensor LogicalAnd(const Tensor &value) const
Definition: Tensor.cpp:1402
bool AllEqual(const Tensor &other) const
Definition: Tensor.cpp:1813
Tensor Neg() const
Element-wise negation of a tensor, returning a new tensor.
Definition: Tensor.cpp:1278
const Dtype Undefined
Definition: Dtype.cpp:60
Tensor Le(const Tensor &value) const
Definition: Tensor.cpp:1599
Tensor Ge_(const Tensor &value)
Definition: Tensor.cpp:1585
const char const char value recording_handle imu_sample void
Definition: K4aPlugin.cpp:269
Tensor operator &&(const Tensor &value) const
Definition: Tensor.h:827
~Iterator()
Definition: Tensor.cpp:224
Tensor Prod(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1210
Tensor Neg_()
Element-wise negation of a tensor, in-place.
Definition: Tensor.cpp:1284
void IndexSet(const std::vector< Tensor > &index_tensors, const Tensor &src_tensor)
Advanced indexing getter.
Definition: Tensor.cpp:922
Tensor operator-=(Scalar value)
Definition: Tensor.h:662
Tensor Clip(Scalar min_val, Scalar max_val) const
Definition: Tensor.cpp:1341
Tensor To(Dtype dtype, bool copy=false) const
Definition: Tensor.cpp:725
Tensor Contiguous() const
Definition: Tensor.cpp:758
Tensor & operator=(const Tensor &other) &
Definition: Tensor.cpp:341
ConstIterator cbegin() const
Definition: Tensor.cpp:324
Tensor IsNan() const
Definition: Tensor.cpp:1311
Tensor operator-(const Tensor &value) const
Definition: Tensor.h:654
Tensor Ne_(const Tensor &value)
Definition: Tensor.cpp:1681
Tensor(void *data_ptr, Dtype dtype, const SizeVector &shape, const SizeVector &strides={}, const Device &device=Device("CPU:0"))
Tensor wrapper constructor from raw host buffer.
Definition: Tensor.h:180
SizeVector shape_
SizeVector of the Tensor. shape_[i] is the length of dimension i.
Definition: Tensor.h:1307
std::shared_ptr< Blob > GetBlob() const
Definition: Tensor.h:1173
bool IsContiguous() const
Definition: Tensor.h:1041
std::tuple< Tensor, Tensor > Triul(const int diagonal=0) const
Returns the tuple of upper and lower triangular matrix of the 2D tensor, above and below the given di...
Definition: Tensor.cpp:1904
const void * GetDataPtr() const
Definition: Tensor.h:1167
Tensor operator+=(Scalar value)
Definition: Tensor.h:649
Tensor Eq_(const Tensor &value)
Definition: Tensor.cpp:1649
Tensor Mean(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1196
Tensor LogicalOr_(const Tensor &value)
Definition: Tensor.cpp:1455
Tensor Div_(const Tensor &value)
Definition: Tensor.cpp:1174
void AssertTemplateDtype() const
Definition: Tensor.h:1180
int64_t WrapDim(int64_t dim, int64_t max_dim, bool inclusive)
Wrap around negative dim.
Definition: ShapeUtil.cpp:150
void FillObject(const Object &v)
Definition: Tensor.h:1408
Tensor Expand(const SizeVector &dst_shape) const
Definition: Tensor.cpp:624
Tensor & AssignObject(const Object &v) &&
Definition: Tensor.h:238
Tensor IsFinite() const
Definition: Tensor.cpp:1331
static Tensor Zeros(const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Create a tensor fill with zeros.
Definition: Tensor.cpp:392
#define DISPATCH_DTYPE_TO_TEMPLATE_WITH_BOOL(DTYPE,...)
Definition: Dispatch.h:86
ConstIterator begin() const
Definition: Tensor.h:1282
typename NestedInitializerImpl< T, D >::type NestedInitializerList
Definition: TensorInit.h:55
SizeVector InferShape(const L &list)
Definition: TensorInit.h:101
Dtype dtype_
Data type.
Definition: Tensor.h:1334
void CopyFrom(const Tensor &other)
Copy Tensor values to current tensor from the source tensor.
Definition: Tensor.cpp:756
static Tensor Load(const std::string &file_name)
Load tensor from numpy's npy format.
Definition: Tensor.cpp:1809
Tensor Gt(const Tensor &value) const
Element-wise greater-than of tensors, returning a new boolean tensor.
Definition: Tensor.cpp:1503
Tensor Add_(const Tensor &value)
Definition: Tensor.cpp:1066
SizeVector GetShape() const
Definition: Tensor.h:1132
Tensor operator+(const Tensor &value) const
Definition: Tensor.h:641
bool IsSame(const Tensor &other) const
Definition: Tensor.cpp:1840
int64_t NumElements() const
Definition: SizeVector.cpp:127
Tensor LogicalNot_()
Definition: Tensor.cpp:1397
Tensor operator-=(const Tensor &value)
Definition: Tensor.h:661
Tensor Trunc() const
Element-wise trunc value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1378
DLManagedTensor * ToDLPack() const
Convert the Tensor to DLManagedTensor.
Definition: Tensor.cpp:1757
int64_t GetShape(int64_t dim) const
Definition: Tensor.h:1136
Tensor AsRvalue()
Definition: Tensor.h:576
SizeVector GetStrides() const
Definition: Tensor.h:1140
Tensor Reshape(const SizeVector &dst_shape) const
Definition: Tensor.cpp:657
Definition: PinholeCameraIntrinsic.cpp:35
Iterator begin()
Definition: Tensor.cpp:255
std::ptrdiff_t difference_type
Definition: Tensor.h:1207
Tensor Div(const Tensor &value) const
Divides a tensor and returns the resulting tensor.
Definition: Tensor.cpp:1154
static Tensor Ones(const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Create a tensor fill with ones.
Definition: Tensor.cpp:398
Tensor()
Definition: Tensor.h:53
int64_t ByteSize() const
Definition: Dtype.h:77
Tensor(std::vector< T > &&vec, const SizeVector &shape={})
Take ownership of data in std::vector<T>
Definition: Tensor.h:135
Tensor Triu(const int diagonal=0) const
Returns the upper triangular matrix of the 2D tensor, above the given diagonal index. [The value of diagonal = col - row, therefore 0 is the main diagonal (row = col), and it shifts towards right for positive values (for diagonal = 1, col - row = 1), and towards left for negative values. The value of the diagonal parameter must be between [-m, n] for a {m,n} shaped tensor.
Definition: Tensor.cpp:1892
Tensor Sub(const Tensor &value) const
Substracts a tensor and returns the resulting tensor.
Definition: Tensor.cpp:1082
Tensor Mul(const Tensor &value) const
Multiplies a tensor and returns the resulting tensor.
Definition: Tensor.cpp:1118
Tensor operator/=(const Tensor &value)
Definition: Tensor.h:687
bool operator!=(const Iterator &other) const
Definition: Tensor.cpp:251
Tensor Flatten(int64_t start_dim=0, int64_t end_dim=-1) const
Definition: Tensor.cpp:671
Tensor Slice(int64_t dim, int64_t start, int64_t stop, int64_t step=1) const
Definition: Tensor.cpp:843
Tensor Sqrt() const
Element-wise square root of a tensor, returns a new tensor.
Definition: Tensor.cpp:1245
Tensor Ne(const Tensor &value) const
Element-wise not-equals-to of tensors, returning a new boolean tensor.
Definition: Tensor.cpp:1663
Tensor Le_(const Tensor &value)
Definition: Tensor.cpp:1617
double Det() const
Compute the determinant of a 2D square tensor.
Definition: Tensor.cpp:1041
Iterator & operator++()
Definition: Tensor.cpp:235
Tensor operator!=(const Tensor &value) const
Definition: Tensor.h:927
Tensor Round() const
Element-wise round value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1372
Tensor operator-(Scalar value) const
Definition: Tensor.h:655
Tensor Exp_()
Element-wise base-e exponential of a tensor, in-place.
Definition: Tensor.cpp:1295
Tensor Append(const Tensor &other, const utility::optional< int64_t > &axis=utility::nullopt) const
Appends the other tensor, along the given axis and returns a copy of the tensor. The other tensors mu...
Definition: Tensor.cpp:608
T * GetDataPtr()
Definition: Tensor.h:1149
static Tensor Init(const T val, const Device &device=Device("CPU:0"))
Definition: Tensor.h:293
Tensor operator/(Scalar value) const
Definition: Tensor.h:681
Tensor IndexExtract(int64_t dim, int64_t idx) const
Definition: Tensor.cpp:827
Tensor operator*(Scalar value) const
Definition: Tensor.h:668
const T * GetDataPtr() const
Definition: Tensor.h:1154
static Tensor Eye(int64_t n, Dtype dtype, const Device &device)
Create an identity matrix of size n x n.
Definition: Tensor.cpp:404
Iterator(pointer tensor, int64_t index)
Definition: Tensor.cpp:210
static Tensor Init(const std::initializer_list< std::initializer_list< std::initializer_list< T >>> &in_list, const Device &device=Device("CPU:0"))
Definition: Tensor.h:320
std::vector< Tensor > NonZeroNumpy() const
Definition: Tensor.cpp:1695
Tensor operator<(const Tensor &value) const
Definition: Tensor.h:885
Tensor operator>(const Tensor &value) const
Definition: Tensor.h:875
Tensor Tril(const int diagonal=0) const
Returns the lower triangular matrix of the 2D tensor, above the given diagonal index. [The value of diagonal = col - row, therefore 0 is the main diagonal (row = col), and it shifts towards right for positive values (for diagonal = 1, col - row = 1), and towards left for negative values. The value of the diagonal parameter must be between [-m, n] where {m, n} is the shape of input tensor.
Definition: Tensor.cpp:1898
Tensor Abs() const
Element-wise absolute value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1300
Tensor(const std::vector< T > &init_vals, const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Constructor for creating a contiguous Tensor with initial values.
Definition: Tensor.h:69
void * data_ptr_
Definition: Tensor.h:1331
Tensor LeastSquares(const Tensor &rhs) const
Definition: Tensor.cpp:1866
bool copy
Definition: VtkUtils.cpp:89
ConstIterator cend() const
Definition: Tensor.cpp:331
int64_t GetLength() const
Definition: Tensor.h:1130
SizeVector DefaultStrides(const SizeVector &shape)
Compute default strides for a shape when a tensor is contiguous.
Definition: ShapeUtil.cpp:233
bool IsObject() const
Definition: Dtype.h:81
static Tensor FromDLPack(const DLManagedTensor *dlmt)
Convert DLManagedTensor to Tensor.
Definition: Tensor.cpp:1761
std::vector< T > ToFlatVector() const
Retrieve all values as an std::vector, for debugging and testing.
Definition: Tensor.h:1030
Tensor & operator=(const T v) &&
Definition: Tensor.h:223
Tensor Abs_()
Element-wise absolute value of a tensor, in-place.
Definition: Tensor.cpp:1306
T Item() const
Definition: Tensor.h:626
Tensor Add(const Tensor &value) const
Adds a tensor and returns the resulting tensor.
Definition: Tensor.cpp:1046
Tensor Sin() const
Element-wise sine of a tensor, returning a new tensor.
Definition: Tensor.cpp:1256
std::string ScalarPtrToString(const void *ptr) const
Definition: Tensor.cpp:811
Tensor Clone() const
Copy Tensor to the same device.
Definition: Tensor.h:520
Tensor Floor() const
Element-wise floor value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1360
void Fill(S v)
Fill the whole Tensor with a scalar value, the scalar will be casted to the Tensor's Dtype...
Definition: Tensor.h:1398
#define LogError(...)
Definition: Logging.h:67
Tensor Cos() const
Element-wise cosine of a tensor, returning a new tensor.
Definition: Tensor.cpp:1267
static Tensor Init(const std::initializer_list< T > &in_list, const Device &device=Device("CPU:0"))
Definition: Tensor.h:303
const SizeVector & GetShapeRef() const
Definition: Tensor.h:1134
Tensor operator/=(Scalar value)
Definition: Tensor.h:688