33 #include <type_traits> 69 Tensor(
const std::vector<T>& init_vals,
73 :
Tensor(shape, dtype, device) {
78 "Tensor initialization values' size {} does not match the " 84 AssertTemplateDtype<T>();
85 if (!std::is_pod<T>()) {
92 init_vals.size() * dtype.
ByteSize());
101 :
Tensor(shape, dtype, device) {
103 AssertTemplateDtype<T>();
118 const std::shared_ptr<Blob>& blob)
155 blob_ = std::make_shared<Blob>(device, (
void*)
data_ptr_, [](
void*) {});
187 template <
typename T>
196 template <
typename Object>
200 "Assignment with scalar only works for scalar Tensor of " 203 AssertTemplateDtype<Object>();
211 template <
typename S>
214 template <
typename Object>
229 template <
typename T>
251 template <
typename T>
254 std::vector<T> ele_list{val};
256 return Tensor(ele_list, shape, type, device);
261 template <
typename T>
264 return InitWithInitializerList<T, 1>(in_list, device);
269 template <
typename T>
271 const std::initializer_list<std::initializer_list<T>>& in_list,
273 return InitWithInitializerList<T, 2>(in_list, device);
278 template <
typename T>
280 const std::initializer_list<
281 std::initializer_list<std::initializer_list<T>>>& in_list,
283 return InitWithInitializerList<T, 3>(in_list, device);
456 Tensor Flatten(int64_t start_dim = 0, int64_t end_dim = -1)
const;
504 std::string
ToString(
bool with_suffix =
true,
505 const std::string& indent =
"")
const;
523 int64_t step = 1)
const;
553 void IndexSet(
const std::vector<Tensor>& index_tensors,
554 const Tensor& src_tensor);
584 template <
typename T>
588 "Tensor::Item() only works for Tensor with exactly one " 591 AssertTemplateDtype<T>();
958 double atol = 1e-8)
const;
980 double atol = 1e-8)
const;
988 template <
typename T>
990 AssertTemplateDtype<T>();
1028 std::tuple<Tensor, Tensor, Tensor>
LU(
const bool permute_l =
false)
const;
1042 std::tuple<Tensor, Tensor>
LUIpiv()
const;
1077 std::tuple<Tensor, Tensor>
Triul(
const int diagonal = 0)
const;
1085 std::tuple<Tensor, Tensor, Tensor>
SVD()
const;
1107 template <
typename T>
1109 return const_cast<T*
>(
const_cast<const Tensor*
>(
this)->GetDataPtr<T>());
1112 template <
typename T>
1116 "Requested values have type {} but Tensor has type {}. " 1117 "Please use non templated GetDataPtr() with manual " 1138 template <
typename T>
1142 "Requested values have type {} but Tensor has type {}",
1158 void Save(
const std::string& file_name)
const;
1161 static Tensor Load(
const std::string& file_name);
1187 std::unique_ptr<Impl> impl_;
1214 std::unique_ptr<Impl> impl_;
1254 template <
typename T,
size_t D>
1255 static Tensor InitWithInitializerList(
1259 std::vector<T> values =
1260 tensor_init::ToFlatVector<T, D>(shape, nested_list);
1261 return Tensor(values, shape, Dtype::FromType<T>(), device);
1304 :
Tensor(shape, dtype, device) {
1308 "Tensor initialization values' size {} does not match the " 1314 AssertTemplateDtype<bool>();
1318 std::vector<uint8_t> init_vals_uchar(init_vals.size());
1319 std::transform(init_vals.begin(), init_vals.end(), init_vals_uchar.begin(),
1320 [](
bool v) -> uint8_t {
return static_cast<uint8_t
>(v); });
1323 init_vals_uchar.data(),
1324 init_vals_uchar.size() * dtype.
ByteSize());
1329 AssertTemplateDtype<bool>();
1338 std::transform(values_uchar.begin(), values_uchar.end(), values.begin(),
1339 [](uint8_t v) ->
bool {
return static_cast<bool>(v); });
1347 "Tensor::Item only works for Tensor with one element.");
1349 AssertTemplateDtype<bool>();
1353 return static_cast<bool>(value);
1356 template <
typename S>
1359 scalar_t casted_v =
static_cast<scalar_t
>(v);
1366 template <
typename Object>
1373 template <
typename T>
1375 return rhs + scalar_lhs;
1378 template <
typename T>
1383 template <
typename T>
1385 return rhs * scalar_lhs;
1388 template <
typename T>
Tensor Cos_()
Element-wise cosine of a tensor, in-place.
Definition: Tensor.cpp:1254
const Tensor AsRvalue() const
Convert to constant rvalue.
Definition: Tensor.h:538
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:1134
Tensor operator[](int64_t i) const
Extract the i-th Tensor along the first axis, returning a new view.
Definition: Tensor.cpp:813
constexpr nullopt_t nullopt
Definition: Optional.h:171
Tensor GetItem(const TensorKey &tk) const
Definition: Tensor.cpp:447
Tensor Sin_()
Element-wise sine of a tensor, in-place.
Definition: Tensor.cpp:1243
Tensor Sqrt_()
Element-wise square root of a tensor, in-place.
Definition: Tensor.cpp:1232
std::string ToString(bool with_suffix=true, const std::string &indent="") const
Definition: Tensor.cpp:754
Tensor operator*=(const Tensor &value)
Definition: Tensor.h:633
Tensor LogicalOr(const Tensor &value) const
Definition: Tensor.cpp:1417
The common header of DLPack.
int64_t NumDims() const
Definition: Tensor.h:1136
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:86
Tensor Sum(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1170
Tensor(const SizeVector &shape, const SizeVector &strides, void *data_ptr, Dtype dtype, const std::shared_ptr< Blob > &blob)
Definition: Tensor.h:114
static Tensor Init(const std::initializer_list< std::initializer_list< T >> &in_list, const Device &device=Device("CPU:0"))
Definition: Tensor.h:270
const Dtype Int64
Definition: Dtype.cpp:66
ConstIterator end() const
Definition: Tensor.h:1247
Tensor operator||(const Tensor &value) const
Definition: Tensor.h:803
Tensor Lt_(const Tensor &value)
Definition: Tensor.cpp:1534
Tensor Inverse() const
Definition: Tensor.cpp:1867
Tensor Ge(const Tensor &value) const
Definition: Tensor.cpp:1548
Tensor SetItem(const Tensor &value)
Set all items. Equivalent to tensor[:] = value in Python.
Definition: Tensor.cpp:538
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:230
bool AllClose(const Tensor &other, double rtol=1e-5, double atol=1e-8) const
Definition: Tensor.cpp:1780
std::shared_ptr< Blob > blob_
Underlying memory buffer for Tensor.
Definition: Tensor.h:1296
Tensor ArgMin(const SizeVector &dims) const
Definition: Tensor.cpp:1212
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:1813
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:998
Tensor Gt_(const Tensor &value)
Definition: Tensor.cpp:1502
void * GetDataPtr()
Definition: Tensor.h:1124
Tensor Mul_(const Tensor &value)
Definition: Tensor.cpp:1121
Tensor LogicalXor(const Tensor &value) const
Definition: Tensor.cpp:1450
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:1762
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:410
Tensor IsClose(const Tensor &other, double rtol=1e-5, double atol=1e-8) const
Definition: Tensor.cpp:1785
pointer operator->() const
Definition: Tensor.cpp:230
std::ptrdiff_t difference_type
Definition: Tensor.h:1193
Tensor LogicalAnd_(const Tensor &value)
Definition: Tensor.cpp:1402
Tensor value_type
Definition: Tensor.h:1167
Tensor operator==(const Tensor &value) const
Definition: Tensor.h:876
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:97
reference operator*() const
Definition: Tensor.cpp:226
Tensor Exp() const
Element-wise exponential of a tensor, returning a new tensor.
Definition: Tensor.cpp:1270
const SizeVector & GetStridesRef() const
Definition: Tensor.h:1101
Tensor Broadcast(const SizeVector &dst_shape) const
Broadcast Tensor to a new broadcastable shape.
Definition: Tensor.cpp:602
Tensor Eq(const Tensor &value) const
Element-wise equals-to of tensors, returning a new boolean tensor.
Definition: Tensor.cpp:1612
Tensor operator/(const Tensor &value) const
Definition: Tensor.h:639
Tensor IsInf() const
Definition: Tensor.cpp:1302
Tensor operator*=(Scalar value)
Definition: Tensor.h:634
Tensor NonZero() const
Definition: Tensor.cpp:1685
Tensor Sub_(const Tensor &value)
Definition: Tensor.cpp:1087
Tensor operator>=(const Tensor &value) const
Definition: Tensor.h:855
int64_t GetLength() const
Definition: SizeVector.cpp:143
Tensor LogicalNot() const
Definition: Tensor.cpp:1372
Tensor LogicalXor_(const Tensor &value)
Definition: Tensor.cpp:1469
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:1833
Tensor operator+=(const Tensor &value)
Definition: Tensor.h:607
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:94
std::tuple< Tensor, Tensor, Tensor > SVD() const
Definition: Tensor.cpp:1875
Tensor Min(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1198
std::string ToString() const
Definition: Dtype.h:83
bool IsNonZero() const
Definition: Tensor.cpp:1687
Iterator for Tensor.
Definition: Tensor.h:1164
Tensor Ceil() const
Element-wise ceil value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1347
Tensor Reverse() const
Reverse a Tensor's elements by viewing the tensor as a 1D array.
Definition: Tensor.cpp:439
Device GetDevice() const
Definition: Tensor.cpp:1365
Definition: SizeVector.h:79
Const iterator for Tensor.
Definition: Tensor.h:1191
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:1841
std::forward_iterator_tag iterator_category
Definition: Tensor.h:1192
Tensor View(const SizeVector &dst_shape) const
Definition: Tensor.cpp:695
std::forward_iterator_tag iterator_category
Definition: Tensor.h:1165
Tensor Permute(const SizeVector &dims) const
Permute (dimension shuffle) the Tensor, returns a view.
Definition: Tensor.cpp:965
SizeVector strides_
Definition: Tensor.h:1275
static Tensor Diag(const Tensor &input)
Create a square matrix with specified diagonal elements in input.
Definition: Tensor.cpp:398
Tensor Matmul(const Tensor &rhs) const
Definition: Tensor.cpp:1804
Tensor operator+(Scalar value) const
Definition: Tensor.h:601
Tensor Max(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1205
Dtype GetDtype() const
Definition: Tensor.h:1128
static Tensor EmptyLike(const Tensor &other)
Definition: Tensor.h:224
Tensor operator*(const Tensor &value) const
Definition: Tensor.h:626
Tensor operator<=(const Tensor &value) const
Definition: Tensor.h:866
bool Any() const
Definition: Tensor.cpp:1707
int64_t GetStride(int64_t dim) const
Definition: Tensor.h:1103
Tensor Clip_(Scalar min_val, Scalar max_val)
Definition: Tensor.cpp:1328
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:1516
Tensor ArgMax(const SizeVector &dims) const
Definition: Tensor.cpp:1219
Tensor Transpose(int64_t dim0, int64_t dim1) const
Transpose a Tensor by swapping dimension dim0 and dim1.
Definition: Tensor.cpp:1005
Tensor IndexGet(const std::vector< Tensor > &index_tensors) const
Advanced indexing getter.
Definition: Tensor.cpp:879
Tensor T() const
Expects input to be <= 2-D Tensor by swapping dimension 0 and 1.
Definition: Tensor.cpp:1016
static Tensor Empty(const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Create a tensor with uninitialized values.
Definition: Tensor.cpp:374
Tensor LogicalAnd(const Tensor &value) const
Definition: Tensor.cpp:1383
bool AllEqual(const Tensor &other) const
Definition: Tensor.cpp:1770
Tensor Neg() const
Element-wise negation of a tensor, returning a new tensor.
Definition: Tensor.cpp:1259
const Dtype Undefined
Definition: Dtype.cpp:60
Tensor Le(const Tensor &value) const
Definition: Tensor.cpp:1580
bool All() const
Definition: Tensor.cpp:1700
Tensor Ge_(const Tensor &value)
Definition: Tensor.cpp:1566
Tensor operator &&(const Tensor &value) const
Definition: Tensor.h:786
~Iterator()
Definition: Tensor.cpp:224
Tensor Prod(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1191
Tensor Neg_()
Element-wise negation of a tensor, in-place.
Definition: Tensor.cpp:1265
void IndexSet(const std::vector< Tensor > &index_tensors, const Tensor &src_tensor)
Advanced indexing getter.
Definition: Tensor.cpp:910
Tensor operator-=(Scalar value)
Definition: Tensor.h:621
Tensor Clip(Scalar min_val, Scalar max_val) const
Definition: Tensor.cpp:1322
Tensor To(Dtype dtype, bool copy=false) const
Definition: Tensor.cpp:713
Tensor Contiguous() const
Definition: Tensor.cpp:746
Tensor & operator=(const Tensor &other) &
Definition: Tensor.cpp:341
ConstIterator cbegin() const
Definition: Tensor.cpp:324
Tensor IsNan() const
Definition: Tensor.cpp:1292
Tensor operator-(const Tensor &value) const
Definition: Tensor.h:613
Tensor Ne_(const Tensor &value)
Definition: Tensor.cpp:1662
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:145
SizeVector shape_
SizeVector of the Tensor. shape_[i] is the legnth of dimension i.
Definition: Tensor.h:1266
std::shared_ptr< Blob > GetBlob() const
Definition: Tensor.h:1132
bool IsContiguous() const
Definition: Tensor.h:1000
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:1861
const void * GetDataPtr() const
Definition: Tensor.h:1126
Tensor operator+=(Scalar value)
Definition: Tensor.h:608
Tensor Eq_(const Tensor &value)
Definition: Tensor.cpp:1630
Tensor Mean(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1177
Tensor LogicalOr_(const Tensor &value)
Definition: Tensor.cpp:1436
Tensor Div_(const Tensor &value)
Definition: Tensor.cpp:1155
void AssertTemplateDtype() const
Definition: Tensor.h:1139
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:1367
Tensor Expand(const SizeVector &dst_shape) const
Definition: Tensor.cpp:612
Tensor & AssignObject(const Object &v) &&
Definition: Tensor.h:197
Tensor IsFinite() const
Definition: Tensor.cpp:1312
static Tensor Zeros(const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Create a tensor fill with zeros.
Definition: Tensor.cpp:380
#define DISPATCH_DTYPE_TO_TEMPLATE_WITH_BOOL(DTYPE,...)
Definition: Dispatch.h:86
ConstIterator begin() const
Definition: Tensor.h:1241
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:1293
void CopyFrom(const Tensor &other)
Copy Tensor values to current tensor from the source tensor.
Definition: Tensor.cpp:744
static Tensor Load(const std::string &file_name)
Load tensor from numpy's npy format.
Definition: Tensor.cpp:1766
Tensor Gt(const Tensor &value) const
Element-wise greater-than of tensors, returning a new boolean tensor.
Definition: Tensor.cpp:1484
Tensor Add_(const Tensor &value)
Definition: Tensor.cpp:1053
SizeVector GetShape() const
Definition: Tensor.h:1091
Tensor operator+(const Tensor &value) const
Definition: Tensor.h:600
bool IsSame(const Tensor &other) const
Definition: Tensor.cpp:1797
int64_t NumElements() const
Definition: SizeVector.cpp:127
Tensor LogicalNot_()
Definition: Tensor.cpp:1378
Tensor operator-=(const Tensor &value)
Definition: Tensor.h:620
Tensor Trunc() const
Element-wise trunc value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1359
DLManagedTensor * ToDLPack() const
Convert the Tensor to DLManagedTensor.
Definition: Tensor.cpp:1714
int64_t GetShape(int64_t dim) const
Definition: Tensor.h:1095
Tensor AsRvalue()
Definition: Tensor.h:535
SizeVector GetStrides() const
Definition: Tensor.h:1099
Tensor Reshape(const SizeVector &dst_shape) const
Definition: Tensor.cpp:645
Definition: PinholeCameraIntrinsic.cpp:35
Iterator begin()
Definition: Tensor.cpp:255
std::ptrdiff_t difference_type
Definition: Tensor.h:1166
Tensor Div(const Tensor &value) const
Divides a tensor and returns the resulting tensor.
Definition: Tensor.cpp:1136
static Tensor Ones(const SizeVector &shape, Dtype dtype, const Device &device=Device("CPU:0"))
Create a tensor fill with ones.
Definition: Tensor.cpp:386
Tensor()
Definition: Tensor.h:53
int64_t ByteSize() const
Definition: Dtype.h:77
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:1849
Tensor Sub(const Tensor &value) const
Substracts a tensor and returns the resulting tensor.
Definition: Tensor.cpp:1068
Tensor Mul(const Tensor &value) const
Multiplies a tensor and returns the resulting tensor.
Definition: Tensor.cpp:1102
Tensor operator/=(const Tensor &value)
Definition: Tensor.h:646
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:659
Tensor Slice(int64_t dim, int64_t start, int64_t stop, int64_t step=1) const
Definition: Tensor.cpp:831
Tensor Sqrt() const
Element-wise square root of a tensor, returns a new tensor.
Definition: Tensor.cpp:1226
Tensor Ne(const Tensor &value) const
Element-wise not-equals-to of tensors, returning a new boolean tensor.
Definition: Tensor.cpp:1644
Tensor Le_(const Tensor &value)
Definition: Tensor.cpp:1598
double Det() const
Compute the determinant of a 2D square tensor.
Definition: Tensor.cpp:1029
Iterator & operator++()
Definition: Tensor.cpp:235
Tensor operator!=(const Tensor &value) const
Definition: Tensor.h:886
Tensor Round() const
Element-wise round value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1353
Tensor operator-(Scalar value) const
Definition: Tensor.h:614
Tensor Exp_()
Element-wise base-e exponential of a tensor, in-place.
Definition: Tensor.cpp:1276
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:596
T * GetDataPtr()
Definition: Tensor.h:1108
static Tensor Init(const T val, const Device &device=Device("CPU:0"))
Definition: Tensor.h:252
Tensor operator/(Scalar value) const
Definition: Tensor.h:640
Tensor IndexExtract(int64_t dim, int64_t idx) const
Definition: Tensor.cpp:815
Tensor operator*(Scalar value) const
Definition: Tensor.h:627
const T * GetDataPtr() const
Definition: Tensor.h:1113
static Tensor Eye(int64_t n, Dtype dtype, const Device &device)
Create an identity matrix of size n x n.
Definition: Tensor.cpp:392
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:279
std::vector< Tensor > NonZeroNumpy() const
Definition: Tensor.cpp:1676
Tensor operator<(const Tensor &value) const
Definition: Tensor.h:844
Tensor operator>(const Tensor &value) const
Definition: Tensor.h:834
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:1855
Tensor Abs() const
Element-wise absolute value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1281
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:1290
Tensor LeastSquares(const Tensor &rhs) const
Definition: Tensor.cpp:1823
ConstIterator cend() const
Definition: Tensor.cpp:331
int64_t GetLength() const
Definition: Tensor.h:1089
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:1718
std::vector< T > ToFlatVector() const
Retrive all values as an std::vector, for debugging and testing.
Definition: Tensor.h:989
Tensor & operator=(const T v) &&
Definition: Tensor.h:188
Tensor Abs_()
Element-wise absolute value of a tensor, in-place.
Definition: Tensor.cpp:1287
T Item() const
Definition: Tensor.h:585
Tensor Add(const Tensor &value) const
Adds a tensor and returns the resulting tensor.
Definition: Tensor.cpp:1034
Tensor Sin() const
Element-wise sine of a tensor, returning a new tensor.
Definition: Tensor.cpp:1237
std::string ScalarPtrToString(const void *ptr) const
Definition: Tensor.cpp:799
Tensor Clone() const
Copy Tensor to the same device.
Definition: Tensor.h:479
Tensor Floor() const
Element-wise floor value of a tensor, returning a new tensor.
Definition: Tensor.cpp:1341
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:1357
#define LogError(...)
Definition: Logging.h:67
Tensor Cos() const
Element-wise cosine of a tensor, returning a new tensor.
Definition: Tensor.cpp:1248
static Tensor Init(const std::initializer_list< T > &in_list, const Device &device=Device("CPU:0"))
Definition: Tensor.h:262
const SizeVector & GetShapeRef() const
Definition: Tensor.h:1093
Tensor operator/=(Scalar value)
Definition: Tensor.h:647