|
25.11
|
#include "TfLiteParser.hpp"#include "armnnTfLiteParser/Version.hpp"#include "armnn/LstmParams.hpp"#include <armnn/BackendOptions.hpp>#include <armnn/Descriptors.hpp>#include <armnn/Exceptions.hpp>#include <armnn/Logging.hpp>#include <armnn/Tensor.hpp>#include <armnnUtils/TensorUtils.hpp>#include <armnn/TypesUtils.hpp>#include <armnn/utility/Assert.hpp>#include <armnn/utility/IgnoreUnused.hpp>#include <armnn/utility/NumericCast.hpp>#include <armnnUtils/Permute.hpp>#include <armnnUtils/Filesystem.hpp>#include <ParserHelper.hpp>#include <VerificationHelpers.hpp>#include <schema_generated.h>#include <flatbuffers/flexbuffers.h>#include <fmt/format.h>#include <algorithm>#include <iostream>#include <limits>#include <numeric>Go to the source code of this file.
Classes | |
| struct | CheckLocation |
Namespaces | |
| namespace | armnnTfLiteParser |
Macros | |
| #define | FLATBUFFERS_LOCALE_INDEPENDENT 0 |
| #define | ARMNN_THROW_PARSE_EXCEPTION(msg) |
| #define | CHECK_SUBGRAPH(MODEL, SUBGRAPH_INDEX) |
| #define | CHECK_MODEL(MODEL, SUBGRAPH_INDEX, OPERATOR_INDEX) |
| #define | CHECK_TENSOR(MODEL, SUBGRAPH_INDEX, TENSOR_INDEX) |
| #define | CHECK_TENSOR_PTR(TENSOR_PTR) |
| #define | CHECK_BUFFER(MODEL, BUFFER_INDEX) |
| #define | CHECK_BUFFER_SIZE(BUFFER_PTR, TENSOR_INFO, BUFFER_ID) |
| #define | CHECK_SUPPORTED_FUSED_ACTIVATION(OPTION, SUBGRAPH_INDEX, OPERATOR_INDEX) |
Functions | |
| unsigned int | ComputeWrappedIndex (int idx, unsigned int numDimsIn) |
| #define ARMNN_THROW_PARSE_EXCEPTION | ( | msg | ) |
Definition at line 45 of file TfLiteParser.cpp.
| #define CHECK_BUFFER | ( | MODEL, | |
| BUFFER_INDEX ) |
Definition at line 255 of file TfLiteParser.cpp.
Referenced by TfLiteParserImpl::GetBuffer().
| #define CHECK_BUFFER_SIZE | ( | BUFFER_PTR, | |
| TENSOR_INFO, | |||
| BUFFER_ID ) |
Definition at line 346 of file TfLiteParser.cpp.
| #define CHECK_MODEL | ( | MODEL, | |
| SUBGRAPH_INDEX, | |||
| OPERATOR_INDEX ) |
Definition at line 186 of file TfLiteParser.cpp.
Referenced by TfLiteParserImpl::GetInputs(), TfLiteParserImpl::GetInputTensorIds(), TfLiteParserImpl::GetOutputs(), and TfLiteParserImpl::GetOutputTensorIds().
| #define CHECK_SUBGRAPH | ( | MODEL, | |
| SUBGRAPH_INDEX ) |
Definition at line 144 of file TfLiteParser.cpp.
Referenced by TfLiteParserImpl::GetNetworkInputBindingInfo(), TfLiteParserImpl::GetNetworkOutputBindingInfo(), TfLiteParserImpl::GetSubgraphInputs(), TfLiteParserImpl::GetSubgraphInputTensorNames(), TfLiteParserImpl::GetSubgraphOutputs(), and TfLiteParserImpl::GetSubgraphOutputTensorNames().
| #define CHECK_SUPPORTED_FUSED_ACTIVATION | ( | OPTION, | |
| SUBGRAPH_INDEX, | |||
| OPERATOR_INDEX ) |
Definition at line 367 of file TfLiteParser.cpp.
| #define CHECK_TENSOR | ( | MODEL, | |
| SUBGRAPH_INDEX, | |||
| TENSOR_INDEX ) |
Definition at line 207 of file TfLiteParser.cpp.
Referenced by TfLiteParserImpl::GetOutputs(), and TfLiteParserImpl::GetSubgraphInputs().
| #define CHECK_TENSOR_PTR | ( | TENSOR_PTR | ) |
Definition at line 220 of file TfLiteParser.cpp.
| #define FLATBUFFERS_LOCALE_INDEPENDENT 0 |
Definition at line 8 of file TfLiteParser.cpp.