File size: 6,489 Bytes
759d0dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | #include "engine_wrapper.hpp"
#include <cstdio>
#include <cstring>
#include <fstream>
#include <vector>
#include "ax_sys_api.h"
namespace {
constexpr int kAlignment = 128;
void FreeIo(AX_ENGINE_IO_T *io) {
for (AX_U32 i = 0; io->pInputs && i < io->nInputSize; ++i) {
if (io->pInputs[i].pVirAddr) {
AX_SYS_MemFree(io->pInputs[i].phyAddr, io->pInputs[i].pVirAddr);
}
}
for (AX_U32 i = 0; io->pOutputs && i < io->nOutputSize; ++i) {
if (io->pOutputs[i].pVirAddr) {
AX_SYS_MemFree(io->pOutputs[i].phyAddr, io->pOutputs[i].pVirAddr);
}
}
delete[] io->pInputs;
delete[] io->pOutputs;
std::memset(io, 0, sizeof(*io));
}
} // namespace
EngineWrapper::~EngineWrapper() { Release(); }
int EngineWrapper::Init(const std::string &path) {
std::ifstream input(path, std::ios::binary);
if (!input) {
std::fprintf(stderr, "Failed to read model: %s\n", path.c_str());
return -1;
}
input.seekg(0, std::ios::end);
const std::streamoff model_size = input.tellg();
if (model_size <= 0 || model_size > static_cast<std::streamoff>(UINT32_MAX)) {
std::fprintf(stderr, "Invalid model size: %s\n", path.c_str());
return -1;
}
input.seekg(0, std::ios::beg);
std::vector<char> model(static_cast<std::size_t>(model_size));
input.read(model.data(), model_size);
if (!input) {
std::fprintf(stderr, "Failed to read model: %s\n", path.c_str());
return -1;
}
const AX_S32 create_ret = AX_ENGINE_CreateHandle(
&handle_, model.data(), static_cast<AX_U32>(model.size()));
if (create_ret != 0 || !handle_) {
std::fprintf(stderr, "AX_ENGINE_CreateHandle failed: %s ret=0x%x\n",
path.c_str(), static_cast<unsigned>(create_ret));
return -1;
}
if (AX_ENGINE_CreateContext(handle_) != 0 ||
AX_ENGINE_GetIOInfo(handle_, &info_) != 0 || !info_) {
Release();
return -1;
}
io_.nInputSize = info_->nInputSize;
io_.nOutputSize = info_->nOutputSize;
io_.pInputs = new AX_ENGINE_IO_BUFFER_T[io_.nInputSize]{};
io_.pOutputs = new AX_ENGINE_IO_BUFFER_T[io_.nOutputSize]{};
AX_S8 input_tag[] = "KWS-INPUT";
AX_S8 output_tag[] = "KWS-OUTPUT";
for (AX_U32 i = 0; i < io_.nInputSize; ++i) {
io_.pInputs[i].nSize = info_->pInputs[i].nSize;
if (AX_SYS_MemAlloc(&io_.pInputs[i].phyAddr,
&io_.pInputs[i].pVirAddr, io_.pInputs[i].nSize,
kAlignment, input_tag) != 0) {
Release();
return -1;
}
const std::string name = info_->pInputs[i].pName;
inputs_[name] = static_cast<int>(i);
input_names_.push_back(name);
}
for (AX_U32 i = 0; i < io_.nOutputSize; ++i) {
io_.pOutputs[i].nSize = info_->pOutputs[i].nSize;
if (AX_SYS_MemAlloc(&io_.pOutputs[i].phyAddr,
&io_.pOutputs[i].pVirAddr, io_.pOutputs[i].nSize,
kAlignment, output_tag) != 0) {
Release();
return -1;
}
const std::string name = info_->pOutputs[i].pName;
outputs_[name] = static_cast<int>(i);
output_names_.push_back(name);
}
initialized_ = true;
std::printf("Loaded %s (inputs=%u outputs=%u)\n", path.c_str(),
io_.nInputSize, io_.nOutputSize);
return 0;
}
void EngineWrapper::Release() {
FreeIo(&io_);
if (handle_) AX_ENGINE_DestroyHandle(handle_);
initialized_ = false;
handle_ = nullptr;
info_ = nullptr;
inputs_.clear();
outputs_.clear();
input_names_.clear();
output_names_.clear();
}
int EngineWrapper::InputIndex(const std::string &name) const {
const auto it = inputs_.find(name);
return it == inputs_.end() ? -1 : it->second;
}
int EngineWrapper::OutputIndex(const std::string &name) const {
const auto it = outputs_.find(name);
return it == outputs_.end() ? -1 : it->second;
}
int EngineWrapper::SetInputByName(const std::string &name, const void *data,
std::size_t size) {
const int index = InputIndex(name);
if (!initialized_ || index < 0 || !data) return -1;
const std::size_t expected = io_.pInputs[index].nSize;
if (size != 0 && size != expected) return -1;
std::memcpy(io_.pInputs[index].pVirAddr, data, expected);
return 0;
}
int EngineWrapper::ZeroInputByName(const std::string &name) {
const int index = InputIndex(name);
if (!initialized_ || index < 0) return -1;
std::memset(io_.pInputs[index].pVirAddr, 0, io_.pInputs[index].nSize);
return 0;
}
int EngineWrapper::RunSync() {
if (!initialized_) return -1;
for (AX_U32 i = 0; i < io_.nInputSize; ++i) {
const AX_S32 flush_ret = AX_SYS_MflushCache(
io_.pInputs[i].phyAddr, io_.pInputs[i].pVirAddr,
io_.pInputs[i].nSize);
if (flush_ret != 0) {
std::fprintf(stderr, "AX_SYS_MflushCache failed input=%u ret=0x%x\n", i,
static_cast<unsigned>(flush_ret));
return flush_ret;
}
}
const AX_S32 ret = AX_ENGINE_RunSync(handle_, &io_);
if (ret != 0) {
std::fprintf(stderr, "AX_ENGINE_RunSync failed ret=0x%x\n",
static_cast<unsigned>(ret));
return ret;
}
for (AX_U32 i = 0; i < io_.nOutputSize; ++i) {
const AX_S32 invalidate_ret = AX_SYS_MinvalidateCache(
io_.pOutputs[i].phyAddr, io_.pOutputs[i].pVirAddr,
io_.pOutputs[i].nSize);
if (invalidate_ret != 0) {
std::fprintf(stderr,
"AX_SYS_MinvalidateCache failed output=%u ret=0x%x\n", i,
static_cast<unsigned>(invalidate_ret));
return invalidate_ret;
}
}
return 0;
}
int EngineWrapper::GetOutputByName(const std::string &name, void *data,
std::size_t size) const {
const int index = OutputIndex(name);
if (!initialized_ || index < 0 || !data) return -1;
const std::size_t expected = io_.pOutputs[index].nSize;
if (size != 0 && size != expected) return -1;
std::memcpy(data, io_.pOutputs[index].pVirAddr, expected);
return 0;
}
int EngineWrapper::GetInputSizeByName(const std::string &name) const {
const int index = InputIndex(name);
return index < 0 ? -1 : static_cast<int>(io_.pInputs[index].nSize);
}
int EngineWrapper::GetOutputSizeByName(const std::string &name) const {
const int index = OutputIndex(name);
return index < 0 ? -1 : static_cast<int>(io_.pOutputs[index].nSize);
}
const std::string &EngineWrapper::InputName(std::size_t index) const {
return input_names_.at(index);
}
const std::string &EngineWrapper::OutputName(std::size_t index) const {
return output_names_.at(index);
}
|