Open3D (C++ API)
Namespaces | Enumerations | Functions
BinaryEW.h File Reference
#include <unordered_set>
#include "Open3D/Core/Tensor.h"
#include "Open3D/Utility/Console.h"
#include "Open3D/Utility/Helper.h"

Go to the source code of this file.

Namespaces

 open3d
 
 open3d::kernel
 

Enumerations

enum  open3d::kernel::BinaryEWOpCode {
  open3d::kernel::BinaryEWOpCode::Add, open3d::kernel::BinaryEWOpCode::Sub, open3d::kernel::BinaryEWOpCode::Mul, open3d::kernel::BinaryEWOpCode::Div,
  open3d::kernel::BinaryEWOpCode::LogicalAnd, open3d::kernel::BinaryEWOpCode::LogicalOr, open3d::kernel::BinaryEWOpCode::LogicalXor, open3d::kernel::BinaryEWOpCode::Gt,
  open3d::kernel::BinaryEWOpCode::Lt, open3d::kernel::BinaryEWOpCode::Ge, open3d::kernel::BinaryEWOpCode::Le, open3d::kernel::BinaryEWOpCode::Eq,
  open3d::kernel::BinaryEWOpCode::Ne
}
 

Functions

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::Add (const Tensor &lhs, const Tensor &rhs, Tensor &dst)
 
void open3d::kernel::Sub (const Tensor &lhs, const Tensor &rhs, Tensor &dst)
 
void open3d::kernel::Mul (const Tensor &lhs, const Tensor &rhs, Tensor &dst)
 
void open3d::kernel::Div (const Tensor &lhs, const Tensor &rhs, Tensor &dst)