MNN/source/backend/arm82/Arm82Functions.hpp

22 lines
414 B
C++
Raw Normal View History

2021-04-08 15:34:23 +08:00
#if defined(__ANDROID__) || defined(__aarch64__)
#ifndef Arm82Functions_hpp
#define Arm82Functions_hpp
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#include "core/Macro.h"
#include "backend/cpu/CPUBackend.hpp"
namespace MNN {
class Arm82Functions {
public:
static bool init();
static CoreFunctions* get();
2024-11-18 14:37:45 +08:00
static CoreInt8Functions* getInt8();
2021-04-08 15:34:23 +08:00
};
};
#endif // Arm82Functions_hpp
#endif