MNN/source/backend/metal/MetalRaster.hpp

45 lines
1.3 KiB
C++
Raw Normal View History

2019-04-17 10:49:11 +08:00
//
2020-11-05 16:41:56 +08:00
// MetalRaster.hpp
2019-04-17 10:49:11 +08:00
// MNN
//
2020-11-05 16:41:56 +08:00
// Created by MNN on 2020/05/09.
2019-04-17 10:49:11 +08:00
// Copyright © 2018, Alibaba Group Holding Limited
//
2020-11-05 16:41:56 +08:00
#ifndef MetalRaster_hpp
#define MetalRaster_hpp
2019-04-17 10:49:11 +08:00
2023-12-27 17:26:44 +08:00
#import "MetalExecution.hpp"
2020-11-05 16:41:56 +08:00
#include <map>
2019-04-17 10:49:11 +08:00
#if MNN_METAL_ENABLED
namespace MNN {
2023-12-27 17:26:44 +08:00
class MetalRaster : public MetalExecution {
2019-04-17 10:49:11 +08:00
public:
2020-11-05 16:41:56 +08:00
MetalRaster(Backend *backend);
2024-04-19 11:58:21 +08:00
virtual ~MetalRaster();
2019-04-17 10:49:11 +08:00
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
2023-12-27 17:26:44 +08:00
virtual void onEncode(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs, id<MTLComputeCommandEncoder> encoder) override;
2024-04-19 11:58:21 +08:00
static id<MTLComputePipelineState> getBlitPipeline(int bytes, Backend* backend, bool multiRegion);
struct BlitInfo {
std::pair<void*, size_t> blit;
MTLSize local;
MTLSize global;
};
2019-04-17 10:49:11 +08:00
private:
2020-11-05 16:41:56 +08:00
std::map<Tensor*, std::shared_ptr<Tensor>> mTempInput;
2024-04-19 11:58:21 +08:00
std::map<Tensor*, BlitInfo> mTempInputCopy;
2019-04-17 10:49:11 +08:00
std::shared_ptr<Tensor> mTempOutput;
2020-11-05 16:41:56 +08:00
bool mNeedZero = false;
2024-04-19 11:58:21 +08:00
Tensor* mOutputPtr = nullptr;
id<MTLComputePipelineState> mBlitPipeline;
std::vector<id<MTLBuffer>> mShapeTemp;
2023-12-27 17:26:44 +08:00
id<MTLBuffer> mZeroCopy = nil;
id<MTLComputePipelineState> mZeroPipeline;
2019-04-17 10:49:11 +08:00
};
} // namespace MNN
#endif /* MNN_METAL_ENABLED */
2020-11-05 16:41:56 +08:00
#endif /* MetalRaster_hpp */