文件最后提交记录最后更新时间
update2 个月前
update2 个月前
update2 个月前
README.md

Custom Operators

This directory contains PTO custom operator development examples, demonstrating how to implement custom operators from scratch.

If you are new to PTO programming, start from the basics first:

Examples

  • fused_add_relu_mul/: Operator fusion example, fusing Add + ReLU + Mul into one kernel, achieving 2-3× speedup.

How to run

Each subdirectory is a standalone example with its own build/run instructions. See:

Developing Custom Operators

Refer to the fused_add_relu_mul/ example and follow these steps:

  1. Create directory: mkdir -p kernels/custom/my_operator
  2. Implement kernel: my_operator_kernel.cpp
  3. Write tests: main.cpp
  4. Configure build: CMakeLists.txt
  5. Run and verify: ./run.sh --sim

For detailed development guides, see: