MNN/source/backend/metal/MetalSigmoid.mm

50 lines
1.6 KiB
Plaintext
Executable File

//
// MetalSigmoid.mm
// MNN
//
// Created by MNN on 2019/01/30.
// Copyright © 2018, Alibaba Group Holding Limited
//
#import "backend/metal/MetalSigmoid.hpp"
#import "backend/metal/MNNMetalContext.h"
#import "core/Macro.h"
#import "backend/metal/MetalBackend.hpp"
#if MNN_METAL_ENABLED
namespace MNN {
MetalSigmoid::MetalSigmoid(Backend *backend) : Execution(backend) {
// nothing to do
}
ErrorCode MetalSigmoid::onExecute(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) {
auto backend = static_cast<MetalBackend *>(this->backend());
auto context = (__bridge MNNMetalContext *)backend->context();
auto input = inputs[0], output = outputs[0];
NSUInteger size = output->elementSize();
auto simd = size % 4 == 0;
if (simd) {
size /= 4;
}
auto encoder = [context encoder];
auto bandwidth = [context load:simd ? @"sigmoid_x4" : @"sigmoid_x1" encoder:encoder];
[encoder setBuffer:(__bridge id<MTLBuffer>)(void *)input->deviceId() offset:0 atIndex:0];
[encoder setBuffer:(__bridge id<MTLBuffer>)(void *)output->deviceId() offset:0 atIndex:1];
[context dispatchEncoder:encoder threads:{ size, 1, 1 } bandwidth:bandwidth];
[encoder endEncoding];
MNN_PRINT_ENCODER(context, encoder);
return NO_ERROR;
}
class MetalSigmoidCreator : public MetalBackend::Creator {
public:
virtual Execution *onCreate(const std::vector<Tensor *> &inputs, const MNN::Op *op, Backend *backend) const {
return new MetalSigmoid(backend);
}
};
REGISTER_METAL_OP_CREATOR(MetalSigmoidCreator, OpType_Sigmoid);
} // namespace MNN
#endif /* MNN_METAL_ENABLED */