2021-01-05 17:51:03 +08:00
|
|
|
//
|
|
|
|
|
// Arm82Binary.hpp
|
|
|
|
|
// MNN
|
|
|
|
|
//
|
|
|
|
|
// Created by MNN on 2021/01/05.
|
|
|
|
|
// Copyright © 2021, Alibaba Group Holding Limited
|
|
|
|
|
//
|
2021-04-08 15:34:23 +08:00
|
|
|
#if defined(__ANDROID__) || defined(__aarch64__)
|
|
|
|
|
|
2021-01-05 17:51:03 +08:00
|
|
|
#ifndef Arm82Binary_hpp
|
|
|
|
|
#define Arm82Binary_hpp
|
|
|
|
|
|
|
|
|
|
#include "core/Execution.hpp"
|
2021-06-11 17:17:13 +08:00
|
|
|
#include "backend/cpu/compute/CommonOptFunction.h"
|
2021-01-05 17:51:03 +08:00
|
|
|
namespace MNN {
|
2021-06-11 17:17:13 +08:00
|
|
|
class Arm82BinaryFloat {
|
2021-01-05 17:51:03 +08:00
|
|
|
public:
|
2021-06-11 17:17:13 +08:00
|
|
|
static MNNBinaryExecute select(int32_t type);
|
2021-01-05 17:51:03 +08:00
|
|
|
};
|
|
|
|
|
} // namespace MNN
|
|
|
|
|
|
|
|
|
|
#endif /* Arm82Binary_hpp */
|
2021-01-07 15:47:48 +08:00
|
|
|
#endif
|