Files
2026-07-13 13:33:03 +08:00

30 lines
738 B
C++

#ifndef _MUSA_RASTER_EXECUTION_HPP_
#define _MUSA_RASTER_EXECUTION_HPP_
#include "core/MusaBackend.hpp"
namespace MNN {
namespace MUSA {
class RasterExecution : public Execution {
public:
RasterExecution(const std::vector<Tensor*>& inputs, const MNN::Op* op, Backend* backend);
virtual ~RasterExecution() = default;
virtual ErrorCode onResize(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs) override;
virtual ErrorCode onExecute(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs) override;
private:
MusaBackend* mBackend;
int mTotalSize;
int mTotalRegions;
dim3 mDim3Grid;
dim3 mDim3Block;
};
} // namespace MUSA
} // namespace MNN
#endif