Operator Fusing

数据结构

class Node {

   Node* inputs;

   Node* outputs;

}

1. 判断父子节点能否fuse,如果能,则push to fusing_array[父,子]。(注意去重)

2. 对于每个父子节点,调用子节点.fuse(父节点)

伪代码:

son.fuse(father) :

  for i in son.inputs:

     if i == father.outputs[0]:

   i.func = father

  son::Make(remake = true);

 

void son::Make() {

  op = i1.func + i2.func;

}

 

void son::Compile() {

  // Compile负责遍历它的节点,如果是func,则继续展开。

}

 

上一篇:kali2020挂载共享目录


下一篇:COSFS工具如何开机自动挂载腾讯COS对象存储