MNN/source/backend/arm82/Arm82Relu.hpp

25 lines
460 B
C++
Raw Normal View History

//
// Arm82Relu.hpp
// MNN
//
// Created by MNN on 2020/2/13.
// Copyright © 2018, Alibaba Group Holding Limited
//
2021-04-08 15:34:23 +08:00
#if defined(__ANDROID__) || defined(__aarch64__)
#ifndef Arm82Relu_hpp
#define Arm82Relu_hpp
#include <stddef.h>
namespace MNN {
class Arm82Relu {
2020-06-02 20:21:12 +08:00
public:
static void reluWithSlopeChannel(float* dst, const float* src, const float* slope, size_t sizeQuad, size_t depthQuad);
2020-06-02 20:21:12 +08:00
};
} // namespace MNN
#endif /* Arm82Relu_hpp */
2020-06-02 20:21:12 +08:00
#endif