forked from jiuyuan/InfiniTensor
16 lines
335 B
C++
16 lines
335 B
C++
#pragma once
|
|
#include "nnet/Pass/Pass.h"
|
|
|
|
namespace nnet {
|
|
|
|
class MatchComputationKernel : public Pass {
|
|
public:
|
|
MatchComputationKernel(Derivator &derivator)
|
|
: Pass(derivator, "MatchComputationKernel") {}
|
|
|
|
private:
|
|
virtual void transform(Formula &origin, int dfsDepth, Expr &rCur) override;
|
|
};
|
|
|
|
} // namespace nnet
|