项目文件夹

文件
2026-07-13 13:33:03 +08:00

16 行
269 B
C++

#ifndef FuseExecutionV2_hpp
#define FuseExecutionV2_hpp
namespace MNN {
namespace CUDA {
class FuseExecutionV2 {
public:
static bool check(const Op* op);
static Execution* create(const Op* op, Backend *backend, int inputSize, int outputSize);
};
}
};
#endif