32 #include <type_traits> 68 Tensor(
const std::vector<T>& init_vals,
72 :
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)
153 template <
typename T>
162 template <
typename Object>
166 "Assignment with scalar only works for scalar Tensor of " 169 AssertTemplateDtype<Object>();
177 template <
typename S>
180 template <
typename Object>
195 template <
typename T>
217 template <
typename T>
220 std::vector<T> ele_list{val};
222 return Tensor(ele_list, shape, type, device);
227 template <
typename T>
230 return InitWithInitializerList<T, 1>(in_list, device);
235 template <
typename T>
237 const std::initializer_list<std::initializer_list<T>>& in_list,
239 return InitWithInitializerList<T, 2>(in_list, device);
244 template <
typename T>
246 const std::initializer_list<
247 std::initializer_list<std::initializer_list<T>>>& in_list,
249 return InitWithInitializerList<T, 3>(in_list, device);
422 Tensor Flatten(int64_t start_dim = 0, int64_t end_dim = -1)
const;
470 std::string
ToString(
bool with_suffix =
true,
471 const std::string& indent =
"")
const;
489 int64_t step = 1)
const;
519 void IndexSet(
const std::vector<Tensor>& index_tensors,
520 const Tensor& src_tensor);
550 template <
typename T>
554 "Tensor::Item() only works for Tensor with exactly one " 557 AssertTemplateDtype<T>();
924 double atol = 1e-8)
const;
946 double atol = 1e-8)
const;
954 template <
typename T>
956 AssertTemplateDtype<T>();
994 std::tuple<Tensor, Tensor, Tensor>
LU(
const bool permute_l =
false)
const;
1008 std::tuple<Tensor, Tensor>
LUIpiv()
const;
1043 std::tuple<Tensor, Tensor>
Triul(
const int diagonal = 0)
const;
1051 std::tuple<Tensor, Tensor, Tensor>
SVD()
const;
1073 template <
typename T>
1075 return const_cast<T*
>(
const_cast<const Tensor*
>(
this)->GetDataPtr<T>());
1078 template <
typename T>
1082 "Requested values have type {} but Tensor has type {}. " 1083 "Please use non templated GetDataPtr() with manual " 1104 template <
typename T>
1108 "Requested values have type {} but Tensor has type {}",
1124 void Save(
const std::string& file_name)
const;
1127 static Tensor Load(
const std::string& file_name);
1153 std::unique_ptr<Impl> impl_;
1180 std::unique_ptr<Impl> impl_;
1220 template <
typename T,
size_t D>
1221 static Tensor InitWithInitializerList(
1225 std::vector<T> values =
1226 tensor_init::ToFlatVector<T, D>(shape, nested_list);
1227 return Tensor(values, shape, Dtype::FromType<T>(), device);
1270 :
Tensor(shape, dtype, device) {
1274 "Tensor initialization values' size {} does not match the " 1280 AssertTemplateDtype<bool>();
1284 std::vector<uint8_t> init_vals_uchar(init_vals.size());
1285 std::transform(init_vals.begin(), init_vals.end(), init_vals_uchar.begin(),
1286 [](
bool v) -> uint8_t {
return static_cast<uint8_t
>(v); });
1289 init_vals_uchar.data(),
1290 init_vals_uchar.size() * dtype.
ByteSize());
1295 AssertTemplateDtype<bool>();
1304 std::transform(values_uchar.begin(), values_uchar.end(), values.begin(),
1305 [](uint8_t v) ->
bool {
return static_cast<bool>(v); });
1313 "Tensor::Item only works for Tensor with one element.");
1315 AssertTemplateDtype<bool>();
1319 return static_cast<bool>(value);
1322 template <
typename S>
1325 scalar_t casted_v =
static_cast<scalar_t
>(v);
1332 template <
typename Object>
1339 template <
typename T>
1341 return rhs + scalar_lhs;
1344 template <
typename T>
1349 template <
typename T>
1351 return rhs * scalar_lhs;
1354 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:504
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:55
int64_t NumElements() const
Definition: Tensor.h:1100
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:599
Tensor LogicalOr(const Tensor &value) const
Definition: Tensor.cpp:1417
The common header of DLPack.
int64_t NumDims() const
Definition: Tensor.h:1102
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:113
static Tensor Init(const std::initializer_list< std::initializer_list< T >> &in_list, const Device &device=Device("CPU:0"))
Definition: Tensor.h:236
const Dtype Int64
Definition: Dtype.cpp:66
ConstIterator end() const
Definition: Tensor.h:1213
Tensor operator||(const Tensor &value) const
Definition: Tensor.h:769
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:196
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:1262
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:1090
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:1159
Tensor LogicalAnd_(const Tensor &value)
Definition: Tensor.cpp:1402
Tensor value_type
Definition: Tensor.h:1133
Tensor operator==(const Tensor &value) const
Definition: Tensor.h:842
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
Tensor Exp() const
Element-wise exponential of a tensor, returning a new tensor.
Definition: Tensor.cpp:1270
const SizeVector & GetStridesRef() const
Definition: Tensor.h:1067
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:605
Tensor IsInf() const
Definition: Tensor.cpp:1302
Tensor operator*=(Scalar value)
Definition: Tensor.h:600
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:821
int64_t GetLength() const
Definition: SizeVector.cpp:142
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:573
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:1130
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:1157
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:1158
Tensor View(const SizeVector &dst_shape) const
Definition: Tensor.cpp:695
std::forward_iterator_tag iterator_category
Definition: Tensor.h:1131
Tensor Permute(const SizeVector &dims) const
Permute (dimension shuffle) the Tensor, returns a view.
Definition: Tensor.cpp:965
SizeVector strides_
Definition: Tensor.h:1241
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:567
Tensor Max(const SizeVector &dims, bool keepdim=false) const
Definition: Tensor.cpp:1205
Dtype GetDtype() const
Definition: Tensor.h:1094
static Tensor EmptyLike(const Tensor &other)
Definition: Tensor.h:190
Tensor operator*(const Tensor &value) const
Definition: Tensor.h:592
Tensor operator<=(const Tensor &value) const
Definition: Tensor.h:832
bool Any() const
Definition: Tensor.cpp:1707
int64_t GetStride(int64_t dim) const
Definition: Tensor.h:1069
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:752
~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:587
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:579
Tensor Ne_(const Tensor &value)
Definition: Tensor.cpp:1662
SizeVector shape_
SizeVector of the Tensor. shape_[i] is the legnth of dimension i.
Definition: Tensor.h:1232
std::shared_ptr< Blob > GetBlob() const
Definition: Tensor.h:1098
bool IsContiguous() const
Definition: Tensor.h:966
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:1092
Tensor operator+=(Scalar value)
Definition: Tensor.h:574
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:1105
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:1333
Tensor Expand(const SizeVector &dst_shape) const
Definition: Tensor.cpp:612
Tensor & AssignObject(const Object &v) &&
Definition: Tensor.h:163
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:1207
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:1259
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:1057
Tensor operator+(const Tensor &value) const
Definition: Tensor.h:566
bool IsSame(const Tensor &other) const
Definition: Tensor.cpp:1797
int64_t NumElements() const
Definition: SizeVector.cpp:126
Tensor LogicalNot_()
Definition: Tensor.cpp:1378
Tensor operator-=(const Tensor &value)
Definition: Tensor.h:586
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:1061
Tensor AsRvalue()
Definition: Tensor.h:501
SizeVector GetStrides() const
Definition: Tensor.h:1065
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:1132
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:52
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:612
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:852
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:580
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:1074
static Tensor Init(const T val, const Device &device=Device("CPU:0"))
Definition: Tensor.h:218
Tensor operator/(Scalar value) const
Definition: Tensor.h:606
Tensor IndexExtract(int64_t dim, int64_t idx) const
Definition: Tensor.cpp:815
Tensor operator*(Scalar value) const
Definition: Tensor.h:593
const T * GetDataPtr() const
Definition: Tensor.h:1079
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:245
std::vector< Tensor > NonZeroNumpy() const
Definition: Tensor.cpp:1676
Tensor operator<(const Tensor &value) const
Definition: Tensor.h:810
Tensor operator>(const Tensor &value) const
Definition: Tensor.h:800
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:68
void * data_ptr_
Definition: Tensor.h:1256
Tensor LeastSquares(const Tensor &rhs) const
Definition: Tensor.cpp:1823
ConstIterator cend() const
Definition: Tensor.cpp:331
int64_t GetLength() const
Definition: Tensor.h:1055
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:955
Tensor & operator=(const T v) &&
Definition: Tensor.h:154
Tensor Abs_()
Element-wise absolute value of a tensor, in-place.
Definition: Tensor.cpp:1287
T Item() const
Definition: Tensor.h:551
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:445
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:1323
#define LogError(...)
Definition: Logging.h:72
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:228
const SizeVector & GetShapeRef() const
Definition: Tensor.h:1059
Tensor operator/=(Scalar value)
Definition: Tensor.h:613