Skip to content

Latest commit

 

History

History
39 lines (21 loc) · 1.23 KB

adding_op.md

File metadata and controls

39 lines (21 loc) · 1.23 KB

Adding Tensorflow Op

All custom-op are under delta/layers/ops/ directory.

Eigen Tensor

Eigen Tensor is unsupported eigen package, which is the underlying of Tensorflow Tensor.

Implement Op Kernel

Implement your op kernel class for underlying computing.

Create Tensorlow Op Wapper

Wapper the op kernel by Tensorflow Op or Tensorflow Lite Op.

Tensorflow

Tensorflow-Lite

References