Open3D (C++ API)
0.17.0
|
Data Structures | |
class | CPUReductionEngine |
class | CPUArgReductionEngine |
Enumerations | |
enum class | BinaryEWOpCode { Add , Sub , Mul , Div , Maximum , Minimum , LogicalAnd , LogicalOr , LogicalXor , Gt , Lt , Ge , Le , Eq , Ne } |
enum class | ReductionOpCode { Sum , Prod , Min , Max , ArgMin , ArgMax , All , Any } |
enum class | UnaryEWOpCode { Sqrt , Sin , Cos , Neg , Exp , Abs , IsNan , IsInf , IsFinite , Floor , Ceil , Round , Trunc , LogicalNot } |
Functions | |
Tensor | Arange (const Tensor &start, const Tensor &stop, const Tensor &step) |
void | ArangeCPU (const Tensor &start, const Tensor &stop, const Tensor &step, Tensor &dst) |
void | BinaryEW (const Tensor &lhs, const Tensor &rhs, Tensor &dst, BinaryEWOpCode op_code) |
void | BinaryEWCPU (const Tensor &lhs, const Tensor &rhs, Tensor &dst, BinaryEWOpCode op_code) |
void | IndexGet (const Tensor &src, Tensor &dst, const std::vector< Tensor > &index_tensors, const SizeVector &indexed_shape, const SizeVector &indexed_strides) |
void | IndexSet (const Tensor &src, Tensor &dst, const std::vector< Tensor > &index_tensors, const SizeVector &indexed_shape, const SizeVector &indexed_strides) |
void | IndexGetCPU (const Tensor &src, Tensor &dst, const std::vector< Tensor > &index_tensors, const SizeVector &indexed_shape, const SizeVector &indexed_strides) |
void | IndexSetCPU (const Tensor &src, Tensor &dst, const std::vector< Tensor > &index_tensors, const SizeVector &indexed_shape, const SizeVector &indexed_strides) |
void | TestLinalgIntegration () |
Tensor | NonZero (const Tensor &src) |
Tensor | NonZeroCPU (const Tensor &src) |
void | Reduction (const Tensor &src, Tensor &dst, const SizeVector &dims, bool keepdim, ReductionOpCode op_code) |
void | ReductionCPU (const Tensor &src, Tensor &dst, const SizeVector &dims, bool keepdim, ReductionOpCode op_code) |
void | UnaryEW (const Tensor &src, Tensor &dst, UnaryEWOpCode op_code) |
void | Copy (const Tensor &src, Tensor &dst) |
void | UnaryEWCPU (const Tensor &src, Tensor &dst, UnaryEWOpCode op_code) |
void | CopyCPU (const Tensor &src, Tensor &dst) |
Variables | |
const std::unordered_set< BinaryEWOpCode, utility::hash_enum_class > | s_boolean_binary_ew_op_codes |
|
strong |
|
strong |
|
strong |
Tensor open3d::core::kernel::Arange | ( | const Tensor & | start, |
const Tensor & | stop, | ||
const Tensor & | step | ||
) |
void open3d::core::kernel::ArangeCPU | ( | const Tensor & | start, |
const Tensor & | stop, | ||
const Tensor & | step, | ||
Tensor & | dst | ||
) |
void open3d::core::kernel::BinaryEW | ( | const Tensor & | lhs, |
const Tensor & | rhs, | ||
Tensor & | dst, | ||
BinaryEWOpCode | op_code | ||
) |
void open3d::core::kernel::BinaryEWCPU | ( | const Tensor & | lhs, |
const Tensor & | rhs, | ||
Tensor & | dst, | ||
BinaryEWOpCode | op_code | ||
) |
void open3d::core::kernel::IndexGet | ( | const Tensor & | src, |
Tensor & | dst, | ||
const std::vector< Tensor > & | index_tensors, | ||
const SizeVector & | indexed_shape, | ||
const SizeVector & | indexed_strides | ||
) |
void open3d::core::kernel::IndexGetCPU | ( | const Tensor & | src, |
Tensor & | dst, | ||
const std::vector< Tensor > & | index_tensors, | ||
const SizeVector & | indexed_shape, | ||
const SizeVector & | indexed_strides | ||
) |
void open3d::core::kernel::IndexSet | ( | const Tensor & | src, |
Tensor & | dst, | ||
const std::vector< Tensor > & | index_tensors, | ||
const SizeVector & | indexed_shape, | ||
const SizeVector & | indexed_strides | ||
) |
void open3d::core::kernel::IndexSetCPU | ( | const Tensor & | src, |
Tensor & | dst, | ||
const std::vector< Tensor > & | index_tensors, | ||
const SizeVector & | indexed_shape, | ||
const SizeVector & | indexed_strides | ||
) |
void open3d::core::kernel::Reduction | ( | const Tensor & | src, |
Tensor & | dst, | ||
const SizeVector & | dims, | ||
bool | keepdim, | ||
ReductionOpCode | op_code | ||
) |
void open3d::core::kernel::ReductionCPU | ( | const Tensor & | src, |
Tensor & | dst, | ||
const SizeVector & | dims, | ||
bool | keepdim, | ||
ReductionOpCode | op_code | ||
) |
void open3d::core::kernel::TestLinalgIntegration | ( | ) |
void open3d::core::kernel::UnaryEW | ( | const Tensor & | src, |
Tensor & | dst, | ||
UnaryEWOpCode | op_code | ||
) |
void open3d::core::kernel::UnaryEWCPU | ( | const Tensor & | src, |
Tensor & | dst, | ||
UnaryEWOpCode | op_code | ||
) |
const std::unordered_set< BinaryEWOpCode, utility::hash_enum_class > open3d::core::kernel::s_boolean_binary_ew_op_codes |