Open3D (C++ API)
|
Namespaces | |
parallel_util | |
Data Structures | |
class | CPUArgReductionEngine |
class | CPULauncher |
class | CPUReductionEngine |
Functions | |
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 | Add (const Tensor &lhs, const Tensor &rhs, Tensor &dst) |
void | Sub (const Tensor &lhs, const Tensor &rhs, Tensor &dst) |
void | Mul (const Tensor &lhs, const Tensor &rhs, Tensor &dst) |
void | Div (const Tensor &lhs, const Tensor &rhs, Tensor &dst) |
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) |
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::hash > | s_boolean_binary_ew_op_codes |
|
strong |
|
strong |
|
strong |
void open3d::kernel::BinaryEW | ( | const Tensor & | lhs, |
const Tensor & | rhs, | ||
Tensor & | dst, | ||
BinaryEWOpCode | op_code | ||
) |
void open3d::kernel::BinaryEWCPU | ( | const Tensor & | lhs, |
const Tensor & | rhs, | ||
Tensor & | dst, | ||
BinaryEWOpCode | op_code | ||
) |
void open3d::kernel::IndexGet | ( | const Tensor & | src, |
Tensor & | dst, | ||
const std::vector< Tensor > & | index_tensors, | ||
const SizeVector & | indexed_shape, | ||
const SizeVector & | indexed_strides | ||
) |
void open3d::kernel::IndexGetCPU | ( | const Tensor & | src, |
Tensor & | dst, | ||
const std::vector< Tensor > & | index_tensors, | ||
const SizeVector & | indexed_shape, | ||
const SizeVector & | indexed_strides | ||
) |
void open3d::kernel::IndexSet | ( | const Tensor & | src, |
Tensor & | dst, | ||
const std::vector< Tensor > & | index_tensors, | ||
const SizeVector & | indexed_shape, | ||
const SizeVector & | indexed_strides | ||
) |
void open3d::kernel::IndexSetCPU | ( | const Tensor & | src, |
Tensor & | dst, | ||
const std::vector< Tensor > & | index_tensors, | ||
const SizeVector & | indexed_shape, | ||
const SizeVector & | indexed_strides | ||
) |
void open3d::kernel::Reduction | ( | const Tensor & | src, |
Tensor & | dst, | ||
const SizeVector & | dims, | ||
bool | keepdim, | ||
ReductionOpCode | op_code | ||
) |
void open3d::kernel::ReductionCPU | ( | const Tensor & | src, |
Tensor & | dst, | ||
const SizeVector & | dims, | ||
bool | keepdim, | ||
ReductionOpCode | op_code | ||
) |
void open3d::kernel::UnaryEW | ( | const Tensor & | src, |
Tensor & | dst, | ||
UnaryEWOpCode | op_code | ||
) |
void open3d::kernel::UnaryEWCPU | ( | const Tensor & | src, |
Tensor & | dst, | ||
UnaryEWOpCode | op_code | ||
) |
const std::unordered_set< BinaryEWOpCode, utility::hash_enum_class::hash > open3d::kernel::s_boolean_binary_ew_op_codes |