1.Introduction
Tensorflow Select (Flex Delegate) は、 MaxPoolWithArgmax → FlexMaxPoolWithArgmax
や ScatterNd → FlexScatterNd
のように、Tensorflow Lite では非対応のオペレーションの先頭に Flex
というサフィックスを付与し、Tensorflowへオフロードして実行できるようにする、そうです。 が、 私には C や C++ でプログラムを実装するスキルが無いため、Flex Delegate を有効にした Tensorflow Lite の共有ライブラリ(.so) のビルドと Tensorflow Lite 非対応モデルの tflite変換 + 8bit量子化だけ実施して推論のテストは実施せずに自己満足しています。 生成したTensorflow Liteの共有ライブラリ libtensorflowlite.so
は x86_64
のアーキテクチャ上でビルドしました。 ビルド済みの libtensorflowlite.so (x86_64) のダウンロードリンク (Google Drive)
Python版の Flex Delegate 対応を待ち望んでいるのですが、公式リポジトリをウォッチしている限りではしばらく期待できそうにありません。 現状では Java版 のみ正常に動作し、 C/C++版は 「まともに動かない」 という 【説1】 Shared library libtensorflowlite.so cannot be found after building from source と 【説2】 How to invoke the Flex delegate for tflite interpreters? があります。
ちなみに、Pythonで無理やり実行したところ、下図のようにエラーになりました。
Tensorflow v2.0.0 + Flex + ENet + Python を実行してみました。 エラーの内容が変わりましたね。
— Super PINTO (@PINTO03091) November 9, 2019
F tensorflow/core/framework/op.cc:55] Non-OK-status: RegisterAlreadyLocked(op_data_factory) status: Already exists: Op with name Copy pic.twitter.com/x7UJ1C7vDm
2.Environment
- Ubuntu 18.04 x86_64 (glibc2.27)
- Tensorflow v2.0.0
- Tensorflow Lite
- Bazel 0.26.1
- C or C++ ???
3.Procedure
3−1.Generate ENet 8bit quantization model (.tflite)
Tensorflow Lite非対応のオペレーションを含む セマンティック・セグメンテーションのモデル ENet
モデルを Flex Delegate
で強制的に tflite形式 へ変換すると同時に、8bit量子化 も実施します。 素の Tensorflow のオペレーションが取り込まれるためか、モデルのサイズは大きくなってしまいます。
$ cd ~
### PINTOが独自生成した ENetモデル(.pb) を含むリポジトリのClone
$ git clone https://github.com/PINTO0309/TensorFlow-ENet.git
### Tensorflow v2.0.0 のClone
$ git clone -b v2.0.0 https://github.com/tensorflow/tensorflow.git
### .pbの.tflite変換と8bit量子化
$ cd tensorflow/tensorflow/lite/python
$ sudo bazel run --define=tflite_convert_with_select_tf_ops=true \
tflite_convert -- \
--output_file=${HOME}/TensorFlow-ENet/checkpoint/semanticsegmentation_enet.tflite \
--graph_def_file=${HOME}/TensorFlow-ENet/checkpoint/semanticsegmentation_enet.pb \
--output_format=TFLITE \
--inference_type QUANTIZED_UINT8 \
--input_arrays=input \
--output_arrays=ENet/logits_to_softmax \
--target_ops=TFLITE_BUILTINS,SELECT_TF_OPS \
--post_training_quantize
3−2.Structure of .pb file before conversion (ENet)
semanticsegmentation_enet.pb
PNG Format SVG Format
3−3.Structure of .tflite file after conversion (ENet)
semanticsegmentation_enet.tflite
PNG Format SVG Format
3−4.Build a TensorflowLite shared library (.so) with FlexDelegate enabled
$ cd ~/tensorflow
$ ./configure
WARNING: ignoring LD_PRELOAD in environment.
WARNING: --batch mode is deprecated. Please instead explicitly shut down your Bazel server using the command "bazel shutdown".
You have bazel 0.26.1- (@non-git) installed.
Please specify the location of python. [Default is /usr/bin/python]: /usr/bin/python3
Found possible Python library paths:
/opt/intel/openvino_2019.3.376/deployment_tools/model_optimizer
/usr/local/lib
/opt/intel/openvino_2019.3.376/python/python3.6
/opt/intel/openvino_2019.3.376/deployment_tools/open_model_zoo/tools/accuracy_checker
/usr/local/lib/python3.6/dist-packages
/usr/lib/python3/dist-packages
/opt/intel/openvino_2019.3.376/python/python3
Please input the desired Python library path to use. Default is [/opt/intel/openvino_2019.3.376/deployment_tools/model_optimizer]
/usr/local/lib/python3.6/dist-packages
Do you wish to build TensorFlow with XLA JIT support? [Y/n]: n
No XLA JIT support will be enabled for TensorFlow.
Do you wish to build TensorFlow with OpenCL SYCL support? [y/N]: n
No OpenCL SYCL support will be enabled for TensorFlow.
Do you wish to build TensorFlow with ROCm support? [y/N]: n
No ROCm support will be enabled for TensorFlow.
Do you wish to build TensorFlow with CUDA support? [y/N]: n
No CUDA support will be enabled for TensorFlow.
Do you wish to download a fresh release of clang? (Experimental) [y/N]: n
Clang will not be downloaded.
Do you wish to build TensorFlow with MPI support? [y/N]: n
No MPI support will be enabled for TensorFlow.
Please specify optimization flags to use during compilation when bazel option "--config=opt" is specified [Default is -march=native -Wno-sign-compare]:
Would you like to interactively configure ./WORKSPACE for Android builds? [y/N]: n
Not configuring the WORKSPACE for Android builds.
Preconfigured Bazel build configs. You can use any of the below by adding "--config=<>" to your build command. See .bazelrc for more details.
--config=mkl # Build with MKL support.
--config=monolithic # Config for mostly static monolithic build.
--config=gdr # Build with GDR support.
--config=verbs # Build with libverbs support.
--config=ngraph # Build with Intel nGraph support.
--config=numa # Build with NUMA support.
--config=dynamic_kernels # (Experimental) Build kernels into separate shared objects.
--config=v2 # Build TensorFlow 2.x instead of 1.x.
Preconfigured Bazel build configs to DISABLE default on features:
--config=noaws # Disable AWS S3 filesystem support.
--config=nogcp # Disable GCP support.
--config=nohdfs # Disable HDFS support.
--config=noignite # Disable Apache Ignite support.
--config=nokafka # Disable Apache Kafka support.
--config=nonccl # Disable NVIDIA NCCL support.
Configuration finished
$ cd ~/tensorflow/tensorflow/lite
$ nano BUILD
tflite_cc_shared_object(
name = "libtensorflowlite.so",
linkopts = select({
"//tensorflow:macos": [
"-Wl,-exported_symbols_list,$(location //tensorflow/lite:tflite_exported_symbols.lds)",
"-Wl,-install_name,@rpath/libtensorflowlite.so",
],
"//tensorflow:windows": [],
"//conditions:default": [
"-z defs",
"-Wl,--version-script,$(location //tensorflow/lite:tflite_version_script.lds)",
],
}),
deps = [
":framework",
":tflite_exported_symbols.lds",
":tflite_version_script.lds",
"//tensorflow/lite/kernels:builtin_ops",
"//tensorflow/lite/delegates/flex:delegate",
],
)
Ctrl + O
Ctrl + X
$ nano ~/tensorflow/tensorflow/lite/tools/make/Makefile
BUILD_WITH_NNAPI=false
Ctrl + O
Ctrl + X
$ sudo bazel build \
--config=monolithic \
--config=noaws \
--config=nohdfs \
--config=noignite \
--config=nokafka \
--config=nonccl \
--config=v2 \
--define=tflite_convert_with_select_tf_ops=true \
--define=with_select_tf_ops=true \
//tensorflow/lite:libtensorflowlite.so
Tensorflow v2.0.0 本体のカーネルをすべて取り込んでいるようで、 95.5 MB
もの巨大な共有ライブラリが生成されました。 全然ライトじゃないです。。。
libtensorflowlite.so のシンボル参照
$ objdump -T libtensorflowlite.so | grep text
0000000000744810 g DF .text 000000000000002b VERS_1.0 _ZN6tflite8IsFlexOpEPKc
000000000060e540 g DF .text 0000000000000047 VERS_1.0 _ZN6tflite16ResourceVariableD2Ev
00000000006199b0 g DF .text 00000000000027cc VERS_1.0 _ZN6tflite11ParseOpDataEPKNS_8OperatorENS_15BuiltinOperatorEPNS_13ErrorReporterEPNS_20BuiltinDataAllocatorEPPv
00000000005f1c20 g DF .text 0000000000000079 VERS_1.0 _ZN6tflite8Subgraph11CleanupNodeEi
00000000005f0f90 g DF .text 0000000000000032 VERS_1.0 _ZN6tflite12tensor_utils32PortableVectorVectorCwiseProductEPKfS2_iPf
0000000000559730 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom11Register_IFEv
00000000004c1ba0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_TANHEv
00000000004e7720 g DF .text 0000000000000262 VERS_1.0 _ZN6tflite3ops7builtin4ceil4EvalEP13TfLiteContextP10TfLiteNode
0000000000526940 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite13optimized_ops23DepthwiseConvWorkerTaskIhiED1Ev
000000000055c570 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin37Register_LOCAL_RESPONSE_NORMALIZATIONEv
00000000005f2e90 g DF .text 000000000000013b VERS_1.0 _ZN6tflite8Subgraph20PrepareOpsAndTensorsEv
000000000053af70 w DF .text 0000000000000a71 VERS_1.0 _ZN6tflite3ops7builtin3div7EvalDivILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteDivParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000004c1f30 w DF .text 000000000000031f VERS_1.0 _ZN6tflite3ops7builtin11activations16SoftmaxQuantizedIhEE12TfLiteStatusP13TfLiteContextPK12TfLiteTensorPS7_PNS2_13SoftmaxOpDataE
0000000000538d20 w DF .text 00000000000005b3 VERS_1.0 _ZN6tflite13reference_ops18BroadcastDiv4DSlowIiEEvRKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PS8_
0000000000600630 g DF .text 00000000000000db VERS_1.0 _ZN6tflite12ArenaPlannerD2Ev
0000000000744200 g DF .text 0000000000000086 VERS_1.0 _ZN6tflite16logging_internal13MinimalLogger3LogENS_11LogSeverityEPKcz
00000000004d6c50 g DF .text 000000000000022c VERS_1.0 _ZN6tflite3ops7builtin11arg_min_max7PrepareEP13TfLiteContextP10TfLiteNode
000000000059ec50 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_SHAPEEv
0000000000744080 g DF .text 000000000000001a VERS_1.0 _ZN6tflite4flex21GetTensorFlowLiteTypeE11TF_DataType
00000000006063c0 w DF .text 00000000000000b5 VERS_1.0 _ZN6tflite8delegate5nnapi14NNAPIOpBuilder16AddScalarOperandIfEE12TfLiteStatusT_i
00000000005dcf60 g DF .text 00000000000000c1 VERS_1.0 _ZN6tflite13eigen_support21DecrementUsageCounterEP13TfLiteContext
00000000004cc5f0 w DF .text 0000000000001389 VERS_1.0 _ZN6tflite3ops7builtin3add7EvalAddILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteAddParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000005ad2f0 w DF .text 00000000000003ed VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIaiEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000058ea70 g DF .text 000000000000009e VERS_1.0 _ZN6tflite3ops7builtin7reshape4EvalEP13TfLiteContextP10TfLiteNode
00000000004c1bb0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin21Register_LOGISTIC_REFEv
0000000000577b50 w DF .text 0000000000000427 VERS_1.0 _ZN6tflite13reference_ops7PadImplIffEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
000000000061cae0 g DF .text 0000000000000069 VERS_1.0 _ZN6tflite18QuantizeMultiplierEdPiS0_
0000000000543d20 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin24Register_FULLY_CONNECTEDEv
0000000000551450 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin15Register_GATHEREv
00000000005fe1d0 g DF .text 000000000000045b VERS_1.0 _ZN6tflite18InterpreterBuilder12ParseTensorsEPKN11flatbuffers6VectorINS1_6OffsetINS_6BufferEEEEEPKNS2_INS3_INS_6TensorEEEEEPNS_8SubgraphE
00000000005ef230 g DF .text 00000000000002d4 VERS_1.0 _ZN6tflite17CpuBackendContextD1Ev
00000000004d5300 w DF .text 0000000000000092 VERS_1.0 _ZNSt6vectorIN6tflite12RuntimeShapeESaIS1_EED2Ev
0000000000580850 w DF .text 00000000000004e1 VERS_1.0 _ZN6tflite3ops7builtin7pooling20MaxEvalQuantizedInt8ILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
0000000000535220 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin3div4FreeEP13TfLiteContextPv
0000000000587b60 w DF .text 000000000000000e VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlaaE2_4_FUNEaa
00000000004c7a90 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin3add4FreeEP13TfLiteContextPv
00000000005fd990 g DF .text 000000000000054a VERS_1.0 _ZN6tflite18InterpreterBuilder10ParseNodesEPKN11flatbuffers6VectorINS1_6OffsetINS_8OperatorEEEEEPNS_8SubgraphE
0000000000556710 w DF .text 0000000000000522 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIliEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
000000000060a880 g DF .text 0000000000000970 VERS_1.0 _ZN6tflite8delegate5nnapi19NNAPIDelegateKernel16AddOpsAndTensorsEP13TfLiteContext
00000000004f7790 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIfED1Ev
00000000007444d0 g DF .text 000000000000000e VERS_1.0 _ZN6tflite9GetStringEPK12TfLiteTensori
00000000004ff5e0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin38Register_CONVOLUTION_MULTITHREADED_OPTEv
00000000005f44f0 g DF .text 000000000000010e VERS_1.0 _ZN6tflite8Subgraph10AddTensorsEiPi
00000000005639f0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin16Register_MAXIMUMEv
00000000005ff9b0 w DF .text 0000000000000112 VERS_1.0 _ZNSt10_HashtableISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiES0_IKS7_18TfLiteRegistrationESaISA_ENSt8__detail10_Select1stESt8equal_toIS7_EN6tflite18op_resolver_hasher17OperatorKeyHasherIS7_EENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashEmRKm
00000000005d2ce0 g DF .text 000000000000071a VERS_1.0 _ZN6tflite3ops7builtin28unidirectional_sequence_lstm7PrepareEP13TfLiteContextP10TfLiteNode
00000000005c75f0 g DF .text 000000000000023e VERS_1.0 _ZN6tflite3ops7builtin4svdf4EvalEP13TfLiteContextP10TfLiteNode
000000000053d2b0 g DF .text 0000000000000126 VERS_1.0 _ZN6tflite3ops7builtin16embedding_lookup10EvalHybridEP13TfLiteContextP10TfLiteNodePK12TfLiteTensorS9_PS7_
0000000000505270 w DF .text 000000000000052a VERS_1.0 _ZN6tflite3ops7builtin4conv10EvalHybridILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
00000000005e4410 g DF .text 0000000000000021 VERS_1.0 _ZN6tflite8internal7MfccDctC2Ev
000000000055f8e0 w DF .text 0000000000000034 VERS_1.0 _ZNSt6vectorIPKN6tflite12RuntimeShapeESaIS3_EE12emplace_backIJS3_EEEvDpOT_
0000000000601c40 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi48EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005ef100 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils34VectorVectorCwiseProductAccumulateEPKfS2_iPf
00000000005f2b10 g DF .text 000000000000000e VERS_1.0 _ZN6tflite8Subgraph12ResizeTensorEP13TfLiteContextP12TfLiteTensorP14TfLiteIntArray
0000000000576c50 g DF .text 00000000000002a7 VERS_1.0 _ZN6tflite3ops7builtin3pad7PrepareEP13TfLiteContextP10TfLiteNode
000000000055d6e0 w DF .text 000000000000005f VERS_1.0 _ZN6tflite12RuntimeShapeC1ERKS0_
0000000000528710 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin34Register_DEPTHWISE_CONVOLUTION_REFEv
00000000004bc680 g DF .text 0000000000000049 VERS_1.0 _ZN6tflite3ops7builtin11activations14LogSoftmaxInitEP13TfLiteContextPKcm
0000000000542720 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin15fully_connected4FreeEP13TfLiteContextPv
00000000004c7360 w DF .text 00000000000006f3 VERS_1.0 _ZN6tflite3ops7builtin11activations8TanhEvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000616550 g DF .text 0000000000000044 VERS_1.0 _ZN6tflite4flex12DelegateDataC2Ev
00000000005d0e20 w DF .text 000000000000032c VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000053dd10 w DF .text 00000000000000f4 VERS_1.0 _ZN6tflite3ops7builtin3exp4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000588db0 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlffE2_clEff
00000000005ef160 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils23VectorBatchVectorAssignEPKfiiPf
00000000004e4f70 g DF .text 00000000000008d7 VERS_1.0 _ZN6tflite3ops7builtin26bidirectional_sequence_rnn7PrepareEP13TfLiteContextP10TfLiteNode
00000000004e7640 g DF .text 00000000000000d9 VERS_1.0 _ZN6tflite3ops7builtin4ceil7PrepareEP13TfLiteContextP10TfLiteNode
000000000055d070 g DF .text 00000000000001ce VERS_1.0 _ZN6tflite3ops7builtin14lsh_projection6ResizeEP13TfLiteContextP10TfLiteNode
000000000053dc30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin32Register_EMBEDDING_LOOKUP_SPARSEEv
00000000005b9d60 g DF .text 0000000000000013 VERS_1.0 _ZN6tflite3ops7builtin3sub4InitEP13TfLiteContextPKcm
0000000000571020 w DF .text 00000000000005c4 VERS_1.0 _ZN6tflite13reference_ops18BroadcastMul4DSlowIfEEvRKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PS8_
0000000000588de0 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUliiE1_clEii
00000000004f7830 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIiED1Ev
0000000000601c30 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi54EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f11a0 g DF .text 0000000000000056 VERS_1.0 _ZN6tflite12tensor_utils28PortableVectorBatchVectorAddEPKfiiPf
00000000005ba390 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin21Register_SUB_NEON_OPTEv
0000000000569820 g DF .text 0000000000000563 VERS_1.0 _ZN6tflite3ops7builtin10mirror_pad4EvalEP13TfLiteContextP10TfLiteNode
00000000005f4060 g DF .text 0000000000000172 VERS_1.0 _ZN6tflite8Subgraph16UndoAllDelegatesEv
000000000057fdf0 w DF .text 0000000000000089 VERS_1.0 _ZN6tflite3ops7builtin7pooling11AverageEvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000563eb0 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIfNS2_9MaximumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
000000000052dcf0 w DF .text 00000000000003dd VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv13EvalQuantizedILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
00000000005b4630 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin27Register_SQUARED_DIFFERENCEEv
00000000005a0c20 w DF .text 00000000000002ef VERS_1.0 _ZN6tflite13optimized_ops5SliceIiEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
000000000061d170 g DF .text 000000000000005a VERS_1.0 _ZN6tflite11CheckedLog2EfPi
0000000000574e70 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_PACKEv
0000000000588e50 w DF .text 000000000000000b VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlhhE0_clEhh
00000000005e8e90 g DF .text 0000000000000701 VERS_1.0 _ZN6tflite12kernel_utils12RnnBatchStepEPKfPKafS2_S4_fS4_fS2_iiiii21TfLiteFusedActivationPaS6_S6_PfS7_S7_
00000000004d52f0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_ADD_NEv
000000000060ea40 w DF .text 00000000000000f7 VERS_1.0 _ZNSt10_HashtableIPK13TfLiteContextSt4pairIKS2_N6tflite4flex9BufferMapEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ESt4hashIS2_ENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb0ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSA_10_Hash_nodeIS8_Lb0EEE
0000000000504eb0 w DF .text 00000000000003bd VERS_1.0 _ZN6tflite3ops7builtin4conv9EvalFloatILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
0000000000500030 w DF .text 0000000000000418 VERS_1.0 _ZN6tflite13optimized_ops10HybridConvERKNS_10ConvParamsEPfRKNS_12RuntimeShapeEPKaS7_S9_S7_PKfS7_S4_S7_Pa
00000000005f3be0 g DF .text 0000000000000465 VERS_1.0 _ZN6tflite8Subgraph37ReplaceNodeSubsetsWithDelegateKernelsE18TfLiteRegistrationPK14TfLiteIntArrayP14TfLiteDelegate
00000000005f0c10 g DF .text 00000000000000ed VERS_1.0 _ZN6tflite12tensor_utils43PortableMatrixBatchVectorMultiplyAccumulateEPKaiiS2_PKfiPfi
00000000005b9e10 g DF .text 00000000000001eb VERS_1.0 _ZN6tflite3ops7builtin3sub16Prepare8BitSubOpEP13TfLiteContextPK12TfLiteTensorS7_PS5_P15TfLiteSubParamsPNS2_6OpDataEi
0000000000526940 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite13optimized_ops23DepthwiseConvWorkerTaskIhiED2Ev
00000000004e2840 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin30Register_BATCH_TO_SPACE_ND_REFEv
00000000004ddf40 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom26Register_AUDIO_SPECTROGRAMEv
00000000005ff330 w DF .text 0000000000000068 VERS_1.0 _ZNKSt10_HashtableISt4pairIN6tflite15BuiltinOperatorEiES0_IKS3_18TfLiteRegistrationESaIS6_ENSt8__detail10_Select1stESt8equal_toIS3_ENS1_18op_resolver_hasher17OperatorKeyHasherIS3_EENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS4_m
00000000005e4b30 g DF .text 0000000000000051 VERS_1.0 _ZN6tflite8internal17MfccMelFilterbankC1Ev
0000000000533770 g DF .text 00000000000003c0 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess35SelectDetectionsAboveScoreThresholdERKSt6vectorIfSaIfEEfPS5_PS3_IiSaIiEE
0000000000563790 g DF .text 0000000000000045 VERS_1.0 _ZN6tflite3ops7builtin15matrix_set_diag4EvalEP13TfLiteContextP10TfLiteNode
000000000053cfc0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin12Register_SINEv
00000000005f2a10 g DF .text 00000000000000f8 VERS_1.0 _ZN6tflite8Subgraph16ResizeTensorImplEP12TfLiteTensorP14TfLiteIntArray
00000000007440a0 g DF .text 000000000000014d VERS_1.0 _ZN6tflite4flex16CopyShapeAndTypeEP13TfLiteContextRKN10tensorflow6TensorEP12TfLiteTensor
0000000000532f80 g DF .text 000000000000005f VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess14SetTensorSizesEP13TfLiteContextP12TfLiteTensorSt16initializer_listIiE
00000000004f7990 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIlED1Ev
00000000005d3420 g DF .text 000000000000002f VERS_1.0 _ZN6tflite3ops7builtin27unidirectional_sequence_rnn4InitEP13TfLiteContextPKcm
0000000000548740 w DF .text 00000000000001a6 VERS_1.0 _ZN6tflite13optimized_ops14FullyConnectedERKNS_20FullyConnectedParamsERKNS_12RuntimeShapeEPKhS6_S8_S6_PKiS6_PhPNS_17CpuBackendContextE
00000000004d1f40 w DF .text 000000000000316d VERS_1.0 _ZN6tflite3ops7builtin3add16EvalAddQuantizedILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteAddParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
00000000005979e0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin19Register_REVERSE_V2Ev
0000000000588e40 w DF .text 0000000000000009 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlhhE_clEhh
000000000055d050 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin19Register_LOGICAL_OREv
00000000004c1b80 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_RELU6Ev
00000000005ef230 g DF .text 00000000000002d4 VERS_1.0 _ZN6tflite17CpuBackendContextD2Ev
00000000005ef110 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils29VectorBatchVectorCwiseProductEPKfiS2_iPf
00000000005643b0 w DF .text 000000000000048f VERS_1.0 _ZN6tflite13reference_ops29MaximumMinimumBroadcast4DSlowIhPFhhhEEEvRKNS_12RuntimeShapeEPKT_S6_S9_S6_PS7_T0_
0000000000601e30 g DF .text 0000000000001dc6 VERS_1.0 _ZN6tflite8delegate5nnapi19NNAPIDelegateKernel3MapEPK13TfLiteContextiiiPK10TfLiteNodeb
00000000005fd8b0 g DF .text 0000000000000082 VERS_1.0 _ZN6tflite18InterpreterBuilderC1EPKNS_5ModelERKNS_10OpResolverEPNS_13ErrorReporterE
0000000000569dc0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin3mul4FreeEP13TfLiteContextPv
00000000004e7ca0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18Register_NOT_EQUALEv
000000000059ea90 g DF .text 00000000000000a5 VERS_1.0 _ZN6tflite3ops7builtin5shape4EvalEP13TfLiteContextP10TfLiteNode
000000000058eb20 g DF .text 00000000000000d1 VERS_1.0 _ZN6tflite3ops7builtin15resize_bilinear18ResizeOutputTensorEP13TfLiteContextPK12TfLiteTensorS7_PS5_
00000000005872a0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin17Register_QUANTIZEEv
0000000000619720 g DF .text 0000000000000087 VERS_1.0 _ZN6tflite13ErrorReporter6ReportEPKcz
0000000000587a60 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlffE2_4_FUNEff
00000000005e8970 w DF .text 00000000000001bf VERS_1.0 _ZN6tflite8internal11Spectrogram34ComputeSquaredMagnitudeSpectrogramIddEEbRKSt6vectorIT_SaIS4_EEPS3_IS3_IT0_SaIS9_EESaISB_EE
00000000005b1e40 w DF .text 0000000000000203 VERS_1.0 _ZN6tflite3ops7builtin7split_v19GetSizeSplitsVectorIiEEvPK12TfLiteTensorPSt6vectorIlSaIlEE
00000000004f7790 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIfED2Ev
00000000006018e0 g DF .text 000000000000001f VERS_1.0 _ZN6tflite25ExternalCpuBackendContextC1Ev
00000000005cfa70 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin34Register_TRANSPOSECONV_GENERIC_OPTEv
0000000000576f50 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin14Register_PADV2Ev
0000000000582bb0 w DF .text 00000000000006df VERS_1.0 _ZN6tflite3ops7builtin7pooling21MaxEvalQuantizedUInt8ILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
000000000057dcd0 w DF .text 0000000000000739 VERS_1.0 _ZN6tflite13optimized_ops11AveragePoolERKNS_10PoolParamsERKNS_12RuntimeShapeEPKfS6_Pf
000000000053ed30 w DF .text 0000000000000274 VERS_1.0 _ZN6tflite3ops7builtin5floor4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004de590 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin12Register_RNNEv
000000000060e480 g DF .text 0000000000000032 VERS_1.0 _ZN6tflite16ResourceVariableC1Ev
0000000000565450 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIaNS2_9MinimumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
0000000000526110 w DF .text 000000000000020b VERS_1.0 _ZN6tflite3ops7builtin4conv4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000603c30 g DF .text 0000000000000795 VERS_1.0 _ZN6tflite8delegate5nnapi19NNAPIDelegateKernel6InvokeEP13TfLiteContextP10TfLiteNode
0000000004b02d40 g DF .text 0000000000000086 VERS_1.0 TfLiteTensorReset
00000000005d89a0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_WHEREEv
00000000005f4050 g DF .text 000000000000000e VERS_1.0 _ZN6tflite8Subgraph37ReplaceNodeSubsetsWithDelegateKernelsEP13TfLiteContext18TfLiteRegistrationPK14TfLiteIntArrayP14TfLiteDelegate
00000000004bcfc0 g DF .text 0000000000000346 VERS_1.0 _ZN6tflite3ops7builtin11activations11TanhPrepareEP13TfLiteContextP10TfLiteNode
00000000005f6ea0 g DF .text 0000000000000063 VERS_1.0 _ZN6tflite11Interpreter27SetTensorParametersReadOnlyEi10TfLiteTypePKcmPKi24TfLiteQuantizationParamsS3_mPKNS_10AllocationE
0000000000576f10 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_PAD_GENERIC_OPTEv
0000000000563870 w DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MinimumOp2opIiEET_S5_S5_
000000000055d570 g DF .text 0000000000000089 VERS_1.0 _ZN6tflite3ops7builtin14lsh_projection4EvalEP13TfLiteContextP10TfLiteNode
000000000052e0d0 w DF .text 00000000000000dd VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004c8b70 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin21Register_ADD_NEON_OPTEv
00000000004bd310 g DF .text 000000000000039e VERS_1.0 _ZN6tflite3ops7builtin11activations14SigmoidPrepareEP13TfLiteContextP10TfLiteNode
00000000005f4dd0 g DF .text 00000000000000c3 VERS_1.0 _ZN6tflite8Subgraph16RedoAllDelegatesEv
00000000004befa0 w DF .text 00000000000008d2 VERS_1.0 _ZN6tflite3ops7builtin11activations13HardSwishEvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005ef130 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils22VectorVectorDotProductEPKfS2_i
0000000000566bc0 g DF .text 0000000000000203 VERS_1.0 _ZN6tflite3ops6custom4mfcc7PrepareEP13TfLiteContextP10TfLiteNode
0000000000562ac0 g DF .text 0000000000000036 VERS_1.0 _ZN6tflite3ops7builtin4lstm4EvalEP13TfLiteContextP10TfLiteNode
0000000000593750 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin36Register_RESIZE_BILINEAR_GENERIC_OPTEv
00000000005ab570 g DF .text 0000000000000366 VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense7PrepareEP13TfLiteContextP10TfLiteNode
00000000005a8a30 w DF .text 000000000000131b VERS_1.0 _ZN6tflite3ops7builtin14space_to_depth4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000565de0 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIiNS2_9MinimumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
00000000005937f0 g DF .text 0000000000000163 VERS_1.0 _ZN6tflite3ops7builtin23resize_nearest_neighbor7PrepareEP13TfLiteContextP10TfLiteNode
000000000057be50 w DF .text 00000000000011b7 VERS_1.0 _ZN6tflite3ops7builtin3pad4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000053e1c0 g DF .text 00000000000000e1 VERS_1.0 _ZN6tflite3ops7builtin10fake_quant7PrepareEP13TfLiteContextP10TfLiteNode
00000000005ab3e0 g DF .text 000000000000018a VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17ResizeOutputShapeEP13TfLiteContextPK12TfLiteTensorPS5_
00000000004f7830 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIiED2Ev
0000000000610660 w DF .text 0000000000000145 VERS_1.0 _ZNSt6vectorIN6tflite4flex6kernel12TensorSourceESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_
00000000005fd260 g DF .text 0000000000000206 VERS_1.0 _ZN6tflite15FlatBufferModel22VerifyAndBuildFromFileEPKcPNS_14TfLiteVerifierEPNS_13ErrorReporterE
000000000061c440 g DF .text 0000000000000059 VERS_1.0 _ZN6tflite32GetQuantizedConvolutionMultiplerEP13TfLiteContextPK12TfLiteTensorS4_PS2_Pd
00000000004e5850 g DF .text 00000000000006ab VERS_1.0 _ZN6tflite3ops7builtin26bidirectional_sequence_rnn9EvalFloatEPK12TfLiteTensorS5_S5_S5_S5_S5_S5_S5_S5_S5_S5_PK36TfLiteBidirectionalSequenceRNNParamsPS3_S9_S9_S9_
0000000000551d80 w DF .text 0000000000000476 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIaiEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
0000000000527c30 w DF .text 000000000000004c VERS_1.0 _ZN6tflite13optimized_ops23DepthwiseConvWorkerTaskIffE3RunEv
00000000005ffd00 g DF .text 0000000000000148 VERS_1.0 _ZN6tflite17MutableOpResolver9AddCustomEPKcPK18TfLiteRegistrationii
000000000057db80 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin24Register_AVERAGE_POOL_2DEv
00000000006171e0 g DF .text 0000000000000054 VERS_1.0 _ZNK6tflite4flex9BufferMap9HasTensorEi
0000000000600970 g DF .text 00000000000000bb VERS_1.0 _ZN6tflite12ArenaPlanner25CalculateTensorAllocationEi
00000000005d8c60 g DF .text 000000000000002f VERS_1.0 _ZN6tflite3ops6custom12while_kernel4InitEP13TfLiteContextPKcm
0000000000586640 g DF .text 0000000000000c43 VERS_1.0 _ZN6tflite3ops7builtin8quantize4EvalEP13TfLiteContextP10TfLiteNode
00000000005f8860 w DF .text 00000000000001bc VERS_1.0 _ZNK6tflite22DepthwiseConv2DOptions6VerifyERN11flatbuffers8VerifierE
000000000054f4f0 w DF .text 00000000000001a6 VERS_1.0 _ZN6tflite13optimized_ops14FullyConnectedERKNS_20FullyConnectedParamsERKNS_12RuntimeShapeEPKhS6_S8_S6_PKiS6_PsPNS_17CpuBackendContextE
00000000005273b0 w DF .text 000000000000004b VERS_1.0 _ZN6tflite21optimized_integer_ops23DepthwiseConvWorkerTaskIaiE3RunEv
0000000000600c80 w DF .text 000000000000018a VERS_1.0 _ZNSt6vectorIN6tflite10ArenaAllocESaIS1_EE17_M_default_appendEm
00000000005f35d0 g DF .text 000000000000009b VERS_1.0 _ZN6tflite8Subgraph16SetExecutionPlanERKSt6vectorIiSaIiEE
0000000000563860 w DF .text 000000000000000e VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MinimumOp2opIaEET_S5_S5_
00000000005d8730 g DF .text 0000000000000161 VERS_1.0 _ZN6tflite3ops7builtin5where18ResizeOutputTensorEP13TfLiteContextPK12TfLiteTensorPS5_
00000000005c36b0 w DF .text 00000000000000ab VERS_1.0 _ZN6tflite3ops7builtin3sub4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000057d980 w DF .text 000000000000019f VERS_1.0 _ZN6tflite3ops7builtin7pooling14GenericPrepareILNS2_8PoolTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000587a90 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUliiE1_4_FUNEii
00000000005392e0 w DF .text 00000000000005b3 VERS_1.0 _ZN6tflite13optimized_ops18BroadcastDiv4DSlowIiEEvRKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PS8_
0000000000601b60 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi7EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005ef9a0 g DF .text 00000000000000da VERS_1.0 _ZN6tflite17CpuBackendContext14GetFromContextEP13TfLiteContext
00000000004d7810 w DF .text 0000000000000334 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIiiiSt8functionIFbiiEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
00000000004cd980 w DF .text 000000000000316d VERS_1.0 _ZN6tflite3ops7builtin3add16EvalAddQuantizedILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteAddParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
00000000005f1eb0 g DF .text 000000000000000e VERS_1.0 _ZN6tflite8Subgraph18SetExternalContextEP13TfLiteContext25TfLiteExternalContextTypeP21TfLiteExternalContext
00000000005e4b30 g DF .text 0000000000000051 VERS_1.0 _ZN6tflite8internal17MfccMelFilterbankC2Ev
000000000055d060 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin20Register_LOGICAL_ANDEv
00000000004bb430 w DF .text 0000000000000075 VERS_1.0 _ZNSt10_HashtableISt4pairIN6tflite15BuiltinOperatorEiES0_IKS3_18TfLiteRegistrationESaIS6_ENSt8__detail10_Select1stESt8equal_toIS3_ENS1_18op_resolver_hasher17OperatorKeyHasherIS3_EENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb1ELb0ELb1EEEED1Ev
00000000004e7c90 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_EQUALEv
0000000000597b70 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin25Register_REVERSE_SEQUENCEEv
00000000005887b0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin19Register_REDUCE_MINEv
00000000004f7990 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIlED2Ev
00000000004e6ab0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin35Register_BIDIRECTIONAL_SEQUENCE_RNNEv
000000000052e1b0 w DF .text 00000000000003dd VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv13EvalQuantizedILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
0000000000601c20 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi53EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005fb580 w DF .text 00000000000005e2 VERS_1.0 _ZNK6tflite8Operator6VerifyERN11flatbuffers8VerifierE
00000000005f7100 g DF .text 00000000000000ca VERS_1.0 _ZN6tflite11Interpreter15SetBufferHandleEiiP14TfLiteDelegate
0000000000604680 g DF .text 000000000000008f VERS_1.0 _ZN6tflite13NnApiDelegateEv
00000000005cd700 w DF .text 0000000000000375 VERS_1.0 _ZN6tflite13reference_ops9TransposeIaEEvRKNS_15TransposeParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
00000000006059c0 g DF .text 0000000000000318 VERS_1.0 _ZN6tflite8delegate5nnapi19NNAPIDelegateKernel33AddDequantizeOperatorsWhereNeededEPK13TfLiteContextiPK10TfLiteNodePNS1_14NNAPIOpBuilderE
00000000005b5b20 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_SQUEEZEEv
00000000004d53a0 w DF .text 00000000000000dc VERS_1.0 _ZNSt6vectorIPN6tflite12RuntimeShapeESaIS2_EE7reserveEm
000000000057aeb0 w DF .text 00000000000007b2 VERS_1.0 _ZN6tflite13optimized_ops7PadImplIffEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
0000000000601c70 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi84EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005afe80 g DF .text 0000000000001f56 VERS_1.0 _ZN6tflite3ops7builtin5split4EvalEP13TfLiteContextP10TfLiteNode
00000000004e5f00 g DF .text 0000000000000901 VERS_1.0 _ZN6tflite3ops7builtin26bidirectional_sequence_rnn10EvalHybridEPK12TfLiteTensorS5_S5_S5_S5_S5_S5_S5_S5_S5_S5_PK36TfLiteBidirectionalSequenceRNNParamsPS3_S9_S9_S9_S9_S9_S9_S9_S9_
00000000006018e0 g DF .text 000000000000001f VERS_1.0 _ZN6tflite25ExternalCpuBackendContextC2Ev
0000000000501d00 g DF .text 000000000000094c VERS_1.0 _ZN6tflite3ops7builtin4conv7PrepareENS2_10KernelTypeEP13TfLiteContextP10TfLiteNode
00000000005f1a10 w DF .text 0000000000000024 VERS_1.0 _ZNK6tflite15InterpreterInfo11num_tensorsEv
00000000005439f0 g DF .text 0000000000000112 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected7EvalPieEP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSD_SD_PSB_
0000000004b02ae0 g DF .text 0000000000000021 VERS_1.0 TfLiteIntArrayCreate
00000000005f77f0 g DF .text 000000000000023e VERS_1.0 _ZN6tflite11InterpreterC1EPNS_13ErrorReporterE
00000000005ab160 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin35Register_SPACE_TO_DEPTH_GENERIC_OPTEv
000000000060e480 g DF .text 0000000000000032 VERS_1.0 _ZN6tflite16ResourceVariableC2Ev
00000000005f1bd0 w DF .text 0000000000000042 VERS_1.0 _ZN6tflite13ScopedProfileC2EPNS_8ProfilerEPKcNS1_9EventTypeEj
0000000005a10110 w DO .data.rel.ro 0000000000000018 VERS_1.0 _ZTIN6tflite17CpuBackendContextE
00000000005f8a20 w DF .text 0000000000000254 VERS_1.0 _ZNK6tflite23ConcatEmbeddingsOptions6VerifyERN11flatbuffers8VerifierE
00000000005d3460 g DF .text 000000000000043d VERS_1.0 _ZN6tflite3ops7builtin27unidirectional_sequence_rnn7PrepareEP13TfLiteContextP10TfLiteNode
00000000005269b0 w DF .text 000000000000000a VERS_1.0 _ZN6tflite21optimized_integer_ops23DepthwiseConvWorkerTaskIaiED0Ev
00000000005afd30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_SPLITEv
0000000000604ac0 w DF .text 000000000000004a VERS_1.0 _ZNSt8_Rb_treeIPKN6tflite14MMAPAllocationESt4pairIKS3_P21ANeuralNetworksMemoryESt10_Select1stIS8_ESt4lessIS3_ESaIS8_EE8_M_eraseEPSt13_Rb_tree_nodeIS8_E
0000000000588720 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_SUM_REFEv
00000000005ef120 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils39VectorBatchVectorCwiseProductAccumulateEPKfiS2_iPf
000000000057f840 w DF .text 00000000000005aa VERS_1.0 _ZN6tflite3ops7builtin7pooling24AverageEvalQuantizedInt8ILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
00000000004e6ed0 w DF .text 000000000000017f VERS_1.0 _ZN6tflite3ops7builtin4cast12copyToTensorIhEE12TfLiteStatusPKT_P12TfLiteTensori
0000000000601160 g DF .text 0000000000000736 VERS_1.0 _ZN6tflite12ArenaPlanner15PlanAllocationsEv
00000000005d9ea0 g DF .text 00000000000000c7 VERS_1.0 _ZN6tflite3ops7builtin10zeros_like4EvalEP13TfLiteContextP10TfLiteNode
000000000059b950 g DF .text 00000000000000d9 VERS_1.0 _ZN6tflite3ops7builtin5round7PrepareEP13TfLiteContextP10TfLiteNode
0000000000604670 g DF .text 000000000000000d VERS_1.0 _ZN6tflite21StatefulNnApiDelegate18GetTensorMemoryMapEP14TfLiteDelegate
0000000000601a90 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi32EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005ae930 w DF .text 00000000000003ed VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIilEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000587ac0 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlllE0_4_FUNEll
0000000000563080 g DF .text 0000000000000039 VERS_1.0 _ZN6tflite3ops7builtin11matrix_diag4EvalEP13TfLiteContextP10TfLiteNode
00000000005cfa80 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin23Register_TRANSPOSE_CONVEv
00000000005b44e0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18squared_difference4FreeEP13TfLiteContextPv
00000000005ce500 w DF .text 0000000000000805 VERS_1.0 _ZN6tflite3ops7builtin9transpose4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000587af0 w DF .text 0000000000000009 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlhhE_4_FUNEhh
0000000000535020 g DF .text 0000000000000186 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess27NonMaxSuppressionMultiClassEP13TfLiteContextP10TfLiteNodePNS2_6OpDataE
000000000060d6c0 g DF .text 000000000000001f VERS_1.0 _ZN6tflite18FileCopyAllocationD0Ev
000000000057d4b0 w DF .text 00000000000000cb VERS_1.0 _ZN6tflite25ComputePaddingHeightWidthEiiiiiiii13TfLitePaddingPiS1_
0000000000555060 g DF .text 00000000000001fd VERS_1.0 _ZN6tflite3ops7builtin9gather_nd7PrepareEP13TfLiteContextP10TfLiteNode
00000000005fe6d0 w DF .text 000000000000015d VERS_1.0 _ZNSt6vectorI18TfLiteRegistrationSaIS0_EE17_M_realloc_insertIJRKS0_EEEvN9__gnu_cxx17__normal_iteratorIPS0_S2_EEDpOT_
0000000000502670 w DF .text 0000000000000015 VERS_1.0 _ZN6tflite3ops7builtin4conv7PrepareILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000588210 g DF .text 000000000000012a VERS_1.0 _ZN6tflite3ops7builtin6reduce21InitializeTemporariesEP13TfLiteContextP10TfLiteNodePNS2_9OpContextE
00000000005ffad0 w DF .text 0000000000000109 VERS_1.0 _ZNSt10_HashtableISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiES0_IKS7_18TfLiteRegistrationESaISA_ENSt8__detail10_Select1stESt8equal_toIS7_EN6tflite18op_resolver_hasher17OperatorKeyHasherIS7_EENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNSC_10_Hash_nodeISA_Lb1EEE
00000000005a8850 g DF .text 00000000000001dc VERS_1.0 _ZN6tflite3ops7builtin14space_to_depth7PrepareEP13TfLiteContextP10TfLiteNode
0000000000588e00 w DF .text 000000000000000a VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlllE_clEll
00000000005ef720 g DF .text 0000000000000276 VERS_1.0 _ZN6tflite17CpuBackendContextC1Ev
00000000005afc00 g DF .text 0000000000000123 VERS_1.0 _ZN6tflite3ops7builtin5split7PrepareEP13TfLiteContextP10TfLiteNode
00000000005f1af0 w DF .text 0000000000000010 VERS_1.0 _ZNK6tflite15InterpreterInfo9variablesEv
0000000000578440 w DF .text 000000000000042f VERS_1.0 _ZN6tflite13reference_ops7PadImplIhhEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
000000000061cd90 g DF .text 0000000000000077 VERS_1.0 _ZN6tflite21IntegerDoubleMultiplyEdd
00000000004d50b0 w DF .text 00000000000000b3 VERS_1.0 _ZN6tflite3ops7builtin3add4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000578870 w DF .text 0000000000000491 VERS_1.0 _ZN6tflite13optimized_ops19PadImageStyleMemsetIhhEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
00000000005746f0 w DF .text 0000000000000164 VERS_1.0 _ZN6tflite3ops7builtin7one_hot17OneHotComputeImplIblEEvRKNS2_13OneHotContextE
0000000000504980 w DF .text 000000000000052a VERS_1.0 _ZN6tflite3ops7builtin4conv10EvalHybridILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
0000000000500450 w DF .text 00000000000004f5 VERS_1.0 _ZN6tflite13optimized_ops13DilatedIm2colIfEEvRKNS_10ConvParamsEhRKNS_12RuntimeShapeEPKT_S7_S7_PS8_
000000000060e800 g DF .text 0000000000000031 VERS_1.0 _ZN6tflite19AcquireFlexDelegateEv
0000000000600730 g DF .text 00000000000000fb VERS_1.0 _ZN6tflite12ArenaPlannerC1EP13TfLiteContextSt10unique_ptrINS_9GraphInfoESt14default_deleteIS4_EEbbi
00000000005b7e90 w DF .text 0000000000000984 VERS_1.0 _ZN6tflite13reference_ops12StridedSliceIhEEvRKNS_18StridedSliceParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
0000000000601980 g DF .text 0000000000000059 VERS_1.0 _ZN6tflite21StatefulNnApiDelegate18DoFreeBufferHandleEP13TfLiteContextP14TfLiteDelegatePi
00000000004e6ad0 g DF .text 00000000000000c8 VERS_1.0 _ZN6tflite3ops7builtin4cast7PrepareEP13TfLiteContextP10TfLiteNode
00000000005c7830 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_SVDFEv
00000000005bdcb0 w DF .text 0000000000000591 VERS_1.0 _ZN6tflite13reference_ops18BroadcastSub4DSlowIsEEvRKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PS8_
00000000005637e0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_MATRIX_SET_DIAGEv
00000000006008b0 g DF .text 00000000000000b2 VERS_1.0 _ZN6tflite12ArenaPlanner23ResolveTensorAllocationEi
0000000000552fc0 w DF .text 0000000000000185 VERS_1.0 _ZN6tflite3ops7builtin6gather13GatherStringsIiEE12TfLiteStatusP13TfLiteContextPK12TfLiteTensorS9_PS7_
000000000053e7b0 g DF .text 0000000000000487 VERS_1.0 _ZN6tflite3ops7builtin4fill4EvalEP13TfLiteContextP10TfLiteNode
0000000000588dc0 w DF .text 0000000000000009 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUliiE_clEii
00000000004ff5f0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin30Register_CONVOLUTION_CBLAS_OPTEv
000000000061cb80 g DF .text 0000000000000042 VERS_1.0 _ZN6tflite35QuantizeMultiplierSmallerThanOneExpEdPiS0_
00000000004bb430 w DF .text 0000000000000075 VERS_1.0 _ZNSt10_HashtableISt4pairIN6tflite15BuiltinOperatorEiES0_IKS3_18TfLiteRegistrationESaIS6_ENSt8__detail10_Select1stESt8equal_toIS3_ENS1_18op_resolver_hasher17OperatorKeyHasherIS3_EENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb1ELb0ELb1EEEED2Ev
0000000000606ec0 w DF .text 00000000000002db VERS_1.0 _ZN6tflite8delegate5nnapi14NNAPIOpBuilder35AddSingleValueTensorAsScalarOperandEii
00000000004fd0f0 g DF .text 0000000000000065 VERS_1.0 _ZN6tflite3ops7builtin4conv4InitEP13TfLiteContextPKcm
000000000053ec40 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_FILLEv
00000000005ab150 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin27Register_SPACE_TO_DEPTH_REFEv
00000000005f6a90 g DF .text 00000000000000f3 VERS_1.0 _ZN6tflite11Interpreter12SetVariablesESt6vectorIiSaIiEE
00000000005f20f0 g DF .text 0000000000000015 VERS_1.0 _ZN6tflite8Subgraph15ReportErrorImplEPKcP13__va_list_tag
000000000055d620 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin4lstm4FreeEP13TfLiteContextPv
000000000052ce60 w DF .text 0000000000000469 VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv9EvalFloatILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
00000000005f2b80 g DF .text 0000000000000027 VERS_1.0 _ZN6tflite8Subgraph21SwitchToKernelContextEv
00000000005ef140 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils32BatchVectorBatchVectorDotProductEPKfS2_iiPfi
00000000004f8690 w DF .text 000000000000225c VERS_1.0 _ZN6tflite3ops7builtin13concatenation4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000006198d0 g DF .text 00000000000000db VERS_1.0 _ZN6tflite17ConvertTensorTypeENS_10TensorTypeEP10TfLiteTypePNS_13ErrorReporterE
00000000005f4600 g DF .text 000000000000000e VERS_1.0 _ZN6tflite8Subgraph10AddTensorsEP13TfLiteContextiPi
000000000061c8c0 g DF .text 0000000000000018 VERS_1.0 _ZN6tflite14HaveSameShapesEPK12TfLiteTensorS2_
00000000005ac6f0 w DF .text 000000000000040f VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIfiEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005d00d0 w DF .text 0000000000000494 VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv7PrepareILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005426d0 g DF .text 0000000000000046 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected4InitEP13TfLiteContextPKcm
00000000005dd140 g DF .text 0000000000000cc5 VERS_1.0 _ZN6tflite13eigen_support19GetThreadPoolDeviceEP13TfLiteContext
00000000005ef200 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils23MeanStddevNormalizationEPKfPfiif
00000000005f2400 g DF .text 00000000000000a5 VERS_1.0 _ZN6tflite8Subgraph12SetVariablesESt6vectorIiSaIiEE
00000000004c1bd0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_SOFTMAXEv
0000000000600580 w DF .text 000000000000000a VERS_1.0 _ZN6tflite14StderrReporterD0Ev
0000000000588790 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin20Register_REDUCE_PRODEv
00000000004c1bc0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin17Register_LOGISTICEv
00000000005ef210 g DF .text 000000000000001a VERS_1.0 _ZN6tflite17CpuBackendContext16SetMaxNumThreadsEi
0000000000558d30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin25Register_HASHTABLE_LOOKUPEv
0000000000600f30 g DF .text 0000000000000088 VERS_1.0 _ZN6tflite12ArenaPlanner16ResetAllocationsEv
00000000005ab180 g DF .text 000000000000025e VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense20CheckDimensionsMatchEP13TfLiteContextPK12TfLiteTensorS7_S7_
0000000000502c00 w DF .text 00000000000008fb VERS_1.0 _ZN6tflite3ops7builtin4conv9EvalFloatILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
0000000000600a90 g DF .text 000000000000007c VERS_1.0 _ZN6tflite12ArenaPlanner36CalculateAllocationOfInternalTensorsEi
00000000005561e0 w DF .text 0000000000000522 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIiiEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
0000000000573e30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_ONE_HOTEv
0000000000564d40 w DF .text 000000000000048f VERS_1.0 _ZN6tflite13reference_ops29MaximumMinimumBroadcast4DSlowIaPFaaaEEEvRKNS_12RuntimeShapeEPKT_S6_S9_S6_PS7_T0_
0000000000601a20 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi6EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005e4810 g DF .text 00000000000000f9 VERS_1.0 _ZNK6tflite8internal7MfccDct7ComputeERKSt6vectorIdSaIdEEPS4_
00000000005435a0 g DF .text 000000000000044f VERS_1.0 _ZN6tflite3ops7builtin15fully_connected7PrepareEP13TfLiteContextP10TfLiteNode
00000000005cf0f0 g DF .text 0000000000000961 VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv13EvalQuantizedEPK25TfLiteTransposeConvParamsPNS2_6OpDataEPK12TfLiteTensorSA_PS8_SB_SB_
0000000000526920 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite21optimized_integer_ops23DepthwiseConvWorkerTaskIaiED1Ev
00000000005fd070 g DF .text 000000000000003b VERS_1.0 _ZN6tflite15FlatBufferModelC2EPKNS_5ModelEPNS_13ErrorReporterE
00000000005ba1d0 g DF .text 000000000000019d VERS_1.0 _ZN6tflite3ops7builtin3sub7PrepareEP13TfLiteContextP10TfLiteNode
000000000053e1b0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin20Register_EXPAND_DIMSEv
0000000000572060 w DF .text 00000000000000b6 VERS_1.0 _ZN6tflite3ops7builtin3mul4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005e87a0 w DF .text 00000000000001cf VERS_1.0 _ZN6tflite8internal11Spectrogram34ComputeSquaredMagnitudeSpectrogramIdfEEbRKSt6vectorIT_SaIS4_EEPS3_IS3_IT0_SaIS9_EESaISB_EE
0000000000596b30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin44Register_RESIZE_NEAREST_NEIGHBOR_GENERIC_OPTEv
000000000055eb30 g DF .text 0000000000000475 VERS_1.0 _ZN6tflite3ops7builtin4lstm4full4EvalEP13TfLiteContextP10TfLiteNode
0000000004b02c10 g DF .text 0000000000000021 VERS_1.0 TfLiteFloatArrayCreate
00000000005b9d80 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin3sub4FreeEP13TfLiteContextPv
000000000058e370 w DF .text 0000000000000127 VERS_1.0 _ZN6tflite3ops7builtin6reduce11EvalGenericILNS2_10KernelTypeE0ELNS2_10ReduceTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000060d650 g DF .text 000000000000000a VERS_1.0 _ZNK6tflite16MemoryAllocation5bytesEv
00000000005f4610 w DF .text 000000000000013d VERS_1.0 _ZNSt6vectorIP14TfLiteDelegateSaIS1_EE17_M_realloc_insertIJRKS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_
00000000006197b0 g DF .text 0000000000000083 VERS_1.0 _ZN6tflite13ErrorReporter11ReportErrorEPvPKcz
00000000005ef0a0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils23SymmetricQuantizeFloatsEPKfiPaPfS4_S4_
00000000004c1c00 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_PRELUEv
000000000060ddc0 g DF .text 000000000000007b VERS_1.0 _ZN6tflite17SimpleMemoryArena12ResolveAllocEP13TfLiteContextRKNS_10ArenaAllocEPPc
0000000000744450 g DF .text 000000000000003b VERS_1.0 _ZN6tflite13DynamicBuffer21WriteToTensorAsVectorEP12TfLiteTensor
000000000060d670 g DF .text 000000000000002a VERS_1.0 _ZN6tflite18FileCopyAllocationD1Ev
00000000004e7bc0 w DF .text 00000000000000cb VERS_1.0 _ZN6tflite12RuntimeShapeC1EiRKS0_i
00000000004d9f60 w DF .text 0000000000000347 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIillSt8functionIFbiiEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
000000000060d3c0 g DF .text 0000000000000236 VERS_1.0 _ZN6tflite8delegate5nnapi19DecomposeBiasTensorEPKiiPSt6vectorIiSaIiEES7_S7_S7_
0000000000568dc0 g DF .text 000000000000020d VERS_1.0 _ZN6tflite3ops7builtin10mirror_pad7PrepareEP13TfLiteContextP10TfLiteNode
00000000004c1b90 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin17Register_TANH_REFEv
00000000005ef720 g DF .text 0000000000000276 VERS_1.0 _ZN6tflite17CpuBackendContextC2Ev
0000000000557160 w DF .text 0000000000000512 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIhlEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
000000000060d880 g DF .text 0000000000000027 VERS_1.0 _ZN6tflite16MemoryAllocationC2EPKvmPNS_13ErrorReporterE
0000000000601b10 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi83EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000583a00 w DF .text 0000000000000239 VERS_1.0 _ZN6tflite3ops7builtin7pooling11L2EvalFloatILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
0000000000588d90 w DF .text 000000000000000a VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlffE0_clEff
00000000005c8f90 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_TILEEv
0000000000588ec0 w DF .text 00000000000001e2 VERS_1.0 _ZN6tflite13reference_ops4MeanIfEEvRKNS_10MeanParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
000000000060dbd0 g DF .text 0000000000000112 VERS_1.0 _ZN6tflite17SimpleMemoryArena10DeallocateEP13TfLiteContextRKNS_10ArenaAllocE
00000000005664f0 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIlNS2_9MaximumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
0000000000601ac0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi29EEEiRKNS1_18NNAPIOpMappingArgsE
000000000057b670 w DF .text 000000000000002a VERS_1.0 _ZN6tflite13optimized_ops11TypedMemsetIlEEvPvT_m
00000000005f6e00 g DF .text 0000000000000011 VERS_1.0 _ZN6tflite11Interpreter20ResetVariableTensorsEv
00000000005bc9b0 w DF .text 00000000000012fd VERS_1.0 _ZN6tflite3ops7builtin3sub7EvalSubILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteSubParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000005ef0b0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils35MatrixBatchVectorMultiplyAccumulateEPKfiiS2_iPfi
00000000005ccff0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin18Register_TRANSPOSEEv
00000000004bd780 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin11activations13LeakyReluFreeEP13TfLiteContextPv
0000000000554880 w DF .text 0000000000000486 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIblEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
00000000004e28b0 g DF .text 0000000000000b2f VERS_1.0 _ZN6tflite3ops7builtin27bidirectional_sequence_lstm4EvalEP13TfLiteContextP10TfLiteNode
00000000005d70b0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin15Register_UNPACKEv
0000000000611110 w DF .text 00000000000000f3 VERS_1.0 _ZNSt8__detail9_Map_baseIPK13TfLiteContextSt4pairIKS3_N6tflite4flex9BufferMapEESaIS9_ENS_10_Select1stESt8equal_toIS3_ESt4hashIS3_ENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb0ELb0ELb1EEELb1EEixERS5_
00000000005d3e20 g DF .text 0000000000000120 VERS_1.0 _ZN6tflite3ops7builtin27unidirectional_sequence_rnn4EvalEP13TfLiteContextP10TfLiteNode
0000000000606210 w DF .text 00000000000000b5 VERS_1.0 _ZN6tflite8delegate5nnapi14NNAPIOpBuilder16AddScalarOperandIbEE12TfLiteStatusT_i
00000000005fd470 g DF .text 0000000000000135 VERS_1.0 _ZN6tflite15FlatBufferModel15BuildFromBufferEPKcmPNS_13ErrorReporterE
000000000061cb50 g DF .text 000000000000002d VERS_1.0 _ZN6tflite32QuantizeMultiplierGreaterThanOneEdPiS0_
0000000000587b00 w DF .text 000000000000000b VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlhhE0_4_FUNEhh
0000000000523cc0 w DF .text 0000000000000b77 VERS_1.0 _ZN6tflite17multithreaded_ops22EigenTensorConvFunctorIfEclERKN14EigenForTFLite16ThreadPoolDeviceEPKfiiiiS8_iiiiiiiNS_11PaddingTypeEPfii
0000000000601bf0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi62EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000587f10 g DF .text 00000000000002ff VERS_1.0 _ZN6tflite3ops7builtin6reduce18ResizeOutputTensorEP13TfLiteContextPNS2_9OpContextE
00000000005453a0 w DF .text 0000000000000519 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected9EvalFloatILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSG_SG_PSE_
0000000000513d20 w DF .text 0000000000000336 VERS_1.0 _ZN6tflite3ops7builtin4conv13EvalQuantizedILNS2_10KernelTypeE3EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
00000000004bd790 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin11activations13HardSwishFreeEP13TfLiteContextPv
0000000000528740 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin26Register_DEPTHWISE_CONV_2DEv
000000000057ae60 w DF .text 0000000000000042 VERS_1.0 _ZN6tflite13optimized_ops11TypedMemsetIfEEvPvT_m
000000000057b6a0 w DF .text 00000000000007a8 VERS_1.0 _ZN6tflite13optimized_ops7PadImplIllEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
00000000005f4ea0 g DF .text 00000000000000fa VERS_1.0 _ZN6tflite8Subgraph15AllocateTensorsEv
00000000005ab8e0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_SPARSE_TO_DENSEEv
00000000005b5b50 g DF .text 0000000000000365 VERS_1.0 _ZN6tflite3ops7builtin13strided_slice18ResizeOutputTensorEP13TfLiteContextPNS2_19StridedSliceContextE
0000000000543d30 w DF .text 000000000000047c VERS_1.0 _ZN6tflite3ops7builtin15fully_connected9EvalFloatILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSG_SG_PSE_
00000000004e2850 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin38Register_BATCH_TO_SPACE_ND_GENERIC_OPTEv
0000000000600550 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite14StderrReporterD1Ev
0000000000562c50 g DF .text 0000000000000429 VERS_1.0 _ZN6tflite3ops7builtin11matrix_diag14FillDiagHelperEPK12TfLiteTensorPS3_
000000000055d790 g DF .text 0000000000000c62 VERS_1.0 _ZN6tflite3ops7builtin4lstm4full26CheckInputTensorDimensionsEP13TfLiteContextP10TfLiteNodeiiib
000000000055b8a0 w DF .text 00000000000003c5 VERS_1.0 _ZN6tflite3ops7builtin19local_response_norm4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005c8d00 g DF .text 000000000000028c VERS_1.0 _ZN6tflite3ops7builtin4tile4EvalEP13TfLiteContextP10TfLiteNode
0000000000601b70 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi10EEEiRKNS1_18NNAPIOpMappingArgsE
000000000053d1b0 g DF .text 00000000000000f5 VERS_1.0 _ZN6tflite3ops7builtin16embedding_lookup10EvalSimpleEP13TfLiteContextP10TfLiteNodePK12TfLiteTensorS9_PS7_
00000000005332c0 g DF .text 0000000000000088 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess22DequantizeBoxEncodingsEPK12TfLiteTensoriffiPNS2_18CenterSizeEncodingE
0000000000501120 w DF .text 00000000000004f7 VERS_1.0 _ZN6tflite13optimized_ops13DilatedIm2colIhEEvRKNS_10ConvParamsEhRKNS_12RuntimeShapeEPKT_S7_S7_PS8_
00000000005f6b90 g DF .text 0000000000000011 VERS_1.0 _ZN6tflite11Interpreter15AllocateTensorsEv
0000000000610ce0 w DF .text 000000000000004a VERS_1.0 _ZNSt8_Rb_treeIiSt4pairIKiN6tflite4flex6kernel12TensorSourceEESt10_Select1stIS6_ESt4lessIiESaIS6_EE8_M_eraseEPSt13_Rb_tree_nodeIS6_E
0000000000744900 g DF .text 0000000000000054 VERS_1.0 _ZN6tflite13CombineHashesESt16initializer_listImE
0000000000533c70 g DF .text 0000000000000065 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess26DequantizeClassPredictionsEPK12TfLiteTensoriiS5_
0000000000553600 w DF .text 0000000000000486 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIhlEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
0000000000526920 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite21optimized_integer_ops23DepthwiseConvWorkerTaskIaiED2Ev
00000000006172b0 g DF .text 00000000000000a6 VERS_1.0 _ZNK6tflite4flex9BufferMap9GetTensorEi
00000000005c3760 w DF .text 000000000000304f VERS_1.0 _ZN6tflite3ops7builtin3sub13EvalQuantizedILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteSubParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000005a1540 w DF .text 0000000000000334 VERS_1.0 _ZN6tflite13reference_ops5SliceIlEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
0000000000572120 w DF .text 0000000000000a61 VERS_1.0 _ZN6tflite3ops7builtin3mul7EvalMulILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteMulParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000005c68a0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin4svdf4FreeEP13TfLiteContextPv
00000000004e71c0 w DF .text 000000000000017f VERS_1.0 _ZN6tflite3ops7builtin4cast12copyToTensorIbEE12TfLiteStatusPKT_P12TfLiteTensori
00000000005d3f80 g DF .text 0000000000000107 VERS_1.0 _ZN6tflite3ops7builtin6unique7PrepareEP13TfLiteContextP10TfLiteNode
00000000004d7b50 w DF .text 000000000000035a VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIfliSt8functionIFbffEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
000000000060d960 g DF .text 00000000000000f1 VERS_1.0 _ZN6tflite14MMAPAllocationC2EPKcPNS_13ErrorReporterE
0000000000563830 w DF .text 0000000000000010 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MaximumOp2opIlEET_S5_S5_
0000000000534390 g DF .text 0000000000000755 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess40NonMaxSuppressionMultiClassRegularHelperEP13TfLiteContextP10TfLiteNodePNS2_6OpDataEPKf
0000000000744320 g DF .text 00000000000000b5 VERS_1.0 _ZN6tflite13DynamicBuffer13WriteToBufferEPPc
000000000053e4f0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin23Register_FAKE_QUANT_REFEv
000000000060d670 g DF .text 000000000000002a VERS_1.0 _ZN6tflite18FileCopyAllocationD2Ev
0000000000612770 g DF .text 0000000000000422 VERS_1.0 _ZN6tflite4flex6kernel4FreeEP13TfLiteContextPv
0000000000566bb0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom4mfcc4FreeEP13TfLiteContextPv
0000000000532fe0 g DF .text 00000000000002df VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess7PrepareEP13TfLiteContextP10TfLiteNode
00000000004bdd70 g DF .text 00000000000002e5 VERS_1.0 _ZN6tflite3ops7builtin11activations8ReluEvalEP13TfLiteContextP10TfLiteNode
00000000006047f0 w DF .text 00000000000002ca VERS_1.0 _ZNSt6vectorI10TfLiteTypeSaIS0_EE14_M_fill_insertEN9__gnu_cxx17__normal_iteratorIPS0_S2_EEmRKS0_
00000000005ba380 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_SUB_GENERIC_OPTEv
0000000000554d10 w DF .text 0000000000000185 VERS_1.0 _ZN6tflite3ops7builtin6gather13GatherStringsIlEE12TfLiteStatusP13TfLiteContextPK12TfLiteTensorS9_PS7_
00000000004de470 g DF .text 0000000000000120 VERS_1.0 _ZN6tflite3ops7builtin3rnn4EvalEP13TfLiteContextP10TfLiteNode
0000000000559190 g DF .text 00000000000005a0 VERS_1.0 _ZN6tflite3ops6custom9if_kernel7PrepareEP13TfLiteContextP10TfLiteNode
000000000057db40 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin20Register_L2_POOL_REFEv
0000000000574570 w DF .text 0000000000000174 VERS_1.0 _ZN6tflite3ops7builtin7one_hot17OneHotComputeImplIliEEvRKNS2_13OneHotContextE
00000000004c6620 w DF .text 00000000000006a8 VERS_1.0 _ZN6tflite3ops7builtin11activations11SigmoidEvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005d1aa0 w DF .text 000000000000032c VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000562110 g DF .text 00000000000009ac VERS_1.0 _ZN6tflite3ops7builtin4lstm5basic4EvalEP13TfLiteContextP10TfLiteNode
0000000000552b40 w DF .text 0000000000000476 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIbiEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
00000000005af900 g DF .text 0000000000000169 VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense4EvalEP13TfLiteContextP10TfLiteNode
00000000005637f0 w DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MaximumOp2opIfEET_S5_S5_
00000000005af120 w DF .text 00000000000003ed VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIalEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000603c00 g DF .text 0000000000000010 VERS_1.0 _ZN6tflite8delegate5nnapi19NNAPIDelegateKernel7PrepareEP13TfLiteContextP10TfLiteNode
00000000007442c0 g DF .text 0000000000000058 VERS_1.0 _ZN6tflite16logging_internal13MinimalLogger12LogFormattedENS_11LogSeverityEPKcP13__va_list_tag
000000000053cfd0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin12Register_COSEv
000000000055d6e0 w DF .text 000000000000005f VERS_1.0 _ZN6tflite12RuntimeShapeC2ERKS0_
00000000005fcde0 g DF .text 000000000000020c VERS_1.0 _ZNK6tflite15FlatBufferModel17GetMinimumRuntimeB5cxx11Ev
0000000000587bd0 w DF .text 000000000000000a VERS_1.0 _ZN6tflite13optimized_ops14MeanWorkerTaskD0Ev
0000000000504770 w DF .text 000000000000020b VERS_1.0 _ZN6tflite3ops7builtin4conv4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000052ef70 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin19Register_DEQUANTIZEEv
00000000005823b0 w DF .text 0000000000000089 VERS_1.0 _ZN6tflite3ops7builtin7pooling11AverageEvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000544440 w DF .text 0000000000000e0d VERS_1.0 _ZN6tflite3ops7builtin15fully_connected13EvalQuantizedILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSG_SG_PSE_
00000000006064b0 w DF .text 00000000000000c5 VERS_1.0 _ZN6tflite8delegate5nnapi14NNAPIOpBuilder16AddVectorOperandIfEE12TfLiteStatusPKT_jifi
0000000000600590 g DF .text 0000000000000091 VERS_1.0 _ZN6tflite20DefaultErrorReporterEv
0000000000588780 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin12Register_SUMEv
0000000000587b50 w DF .text 000000000000000e VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlaaE1_4_FUNEaa
0000000000598060 w DF .text 00000000000004d7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIflEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
00000000004c7a70 g DF .text 0000000000000013 VERS_1.0 _ZN6tflite3ops7builtin3add4InitEP13TfLiteContextPKcm
00000000005e7740 w DF .text 00000000000001c7 VERS_1.0 _ZN6tflite8internal11Spectrogram25ComputeComplexSpectrogramIfdEEbRKSt6vectorIT_SaIS4_EEPS3_IS3_ISt7complexIT0_ESaISB_EESaISD_EE
0000000000588df0 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUliiE2_clEii
00000000006053a0 w DF .text 0000000000000110 VERS_1.0 _ZNSt8_Rb_treeIPKN6tflite14MMAPAllocationESt4pairIKS3_P21ANeuralNetworksMemoryESt10_Select1stIS8_ESt4lessIS3_ESaIS8_EE17_M_emplace_uniqueIJS4_IS3_S7_EEEES4_ISt17_Rb_tree_iteratorIS8_EbEDpOT_
00000000005f4fa0 g DF .text 0000000000000084 VERS_1.0 _ZN6tflite8Subgraph23EnsureMemoryAllocationsEv
000000000053d020 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin20Register_LOGICAL_NOTEv
0000000000583290 w DF .text 00000000000006d1 VERS_1.0 _ZN6tflite3ops7builtin7pooling20MaxEvalQuantizedInt8ILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
0000000000570a60 w DF .text 00000000000005b3 VERS_1.0 _ZN6tflite13reference_ops18BroadcastMul4DSlowIiEEvRKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PS8_
00000000004d9210 w DF .text 0000000000000334 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIiilSt8functionIFbiiEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
000000000057d010 g DF .text 000000000000000f VERS_1.0 _ZN6tflite3ops7builtin7pooling4InitEP13TfLiteContextPKcm
0000000000551900 w DF .text 0000000000000476 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIhiEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
0000000000600b90 g DF .text 00000000000000e8 VERS_1.0 _ZN6tflite12ArenaPlanner20CalculateAllocationsEii
00000000004bc870 g DF .text 0000000000000191 VERS_1.0 _ZN6tflite3ops7builtin11activations16LeakyReluPrepareEP13TfLiteContextP10TfLiteNode
0000000000600550 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite14StderrReporterD2Ev
00000000005026d0 w DF .text 000000000000052a VERS_1.0 _ZN6tflite3ops7builtin4conv10EvalHybridILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
00000000005c68b0 g DF .text 0000000000000457 VERS_1.0 _ZN6tflite3ops7builtin4svdf7PrepareEP13TfLiteContextP10TfLiteNode
000000000057db70 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin28Register_L2_POOL_GENERIC_OPTEv
0000000000565b60 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIiNS2_9MaximumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
00000000005297e0 w DF .text 0000000000000969 VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv13EvalQuantizedILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
000000000061d0c0 g DF .text 00000000000000a9 VERS_1.0 _ZN6tflite17FakeQuantizeArrayEfffPKfPff
00000000005d3400 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin37Register_UNIDIRECTIONAL_SEQUENCE_LSTMEv
0000000000535230 g DF .text 0000000000000189 VERS_1.0 _ZN6tflite3ops7builtin3div7PrepareEP13TfLiteContextP10TfLiteNode
00000000004e2870 g DF .text 000000000000002f VERS_1.0 _ZN6tflite3ops7builtin27bidirectional_sequence_lstm4InitEP13TfLiteContextPKcm
00000000005e95a0 g DF .text 0000000000000043 VERS_1.0 _ZN6tflite12kernel_utils12RnnBatchStepEPKfPKafS4_fS2_iiii21TfLiteFusedActivationPaS6_PfS7_S7_
00000000005f1ae0 w DF .text 0000000000000010 VERS_1.0 _ZNK6tflite15InterpreterInfo7outputsEv
000000000057d580 w DF .text 0000000000000200 VERS_1.0 _ZN6tflite3ops7builtin7pooling14GenericPrepareILNS2_8PoolTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000579470 w DF .text 000000000000042f VERS_1.0 _ZN6tflite13reference_ops7PadImplIaaEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
000000000055f470 w DF .text 0000000000000154 VERS_1.0 _ZN6tflite11MatchingDimIJNS_12RuntimeShapeEiS1_iS1_iEEEiRKS1_iS3_iDpT_
000000000058d280 w DF .text 000000000000050c VERS_1.0 _ZN6tflite3ops7builtin6reduce9EvalLogicIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextET_PFSB_SB_SB_E
000000000055d600 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin23Register_LSH_PROJECTIONEv
000000000053a8f0 w DF .text 00000000000000ac VERS_1.0 _ZN6tflite3ops7builtin3div4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005f2b20 g DF .text 000000000000002f VERS_1.0 _ZN6tflite8Subgraph8UseNNAPIEb
000000000058c390 w DF .text 00000000000004ec VERS_1.0 _ZN6tflite3ops7builtin6reduce9EvalLogicIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextET_PFSB_SB_SB_E
0000000000551410 w DF .text 0000000000000037 VERS_1.0 _ZN6tflite13DynamicBufferD1Ev
00000000005f1440 g DF .text 0000000000000038 VERS_1.0 _ZN6tflite12tensor_utils18PortableSub1VectorEPKfiPf
00000000005d1e30 g DF .text 00000000000004c9 VERS_1.0 _ZN6tflite3ops7builtin28unidirectional_sequence_lstm4EvalEP13TfLiteContextP10TfLiteNode
00000000005ad6e0 w DF .text 00000000000003ed VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIhiEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000580d40 w DF .text 0000000000000089 VERS_1.0 _ZN6tflite3ops7builtin7pooling7MaxEvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000542760 w DF .text 0000000000000602 VERS_1.0 _ZN6tflite13reference_ops22ShuffledFullyConnectedERKNS_20FullyConnectedParamsERKNS_12RuntimeShapeEPKhS6_S8_S6_PKiS6_PsPh
00000000005689f0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom13Register_MFCCEv
0000000000601be0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi61EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000587e10 g DF .text 0000000000000077 VERS_1.0 _ZN6tflite3ops7builtin6reduce14ResizeTempAxisEP13TfLiteContextPNS2_9OpContextEP12TfLiteTensor
00000000005580c0 w DF .text 0000000000000512 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIllEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
00000000004da2b0 g DF .text 0000000000002023 VERS_1.0 _ZN6tflite3ops7builtin11arg_min_max4EvalEP13TfLiteContextP10TfLiteNodeb
000000000053ec50 g DF .text 00000000000000d9 VERS_1.0 _ZN6tflite3ops7builtin5floor7PrepareEP13TfLiteContextP10TfLiteNode
000000000060dcf0 g DF .text 00000000000000cb VERS_1.0 _ZN6tflite17SimpleMemoryArena6CommitEP13TfLiteContext
000000000056c300 w DF .text 00000000000023aa VERS_1.0 _ZN6tflite3ops7builtin3mul13EvalQuantizedILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteMulParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
0000000000601d90 w DF .text 0000000000000092 VERS_1.0 _ZN6tflite8delegate5nnapi8NNMemoryC2EPK5NnApiPKcm
000000000052e590 w DF .text 00000000000000dd VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005903e0 w DF .text 00000000000019a5 VERS_1.0 _ZN6tflite3ops7builtin15resize_bilinear4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000057e410 w DF .text 00000000000008f5 VERS_1.0 _ZN6tflite13optimized_ops6L2PoolERKNS_10PoolParamsERKNS_12RuntimeShapeEPKfS6_Pf
00000000004bd770 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin11activations9PreluFreeEP13TfLiteContextPv
0000000000593770 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin24Register_RESIZE_BILINEAREv
000000000057db30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin21Register_MAX_POOL_REFEv
0000000000551050 w DF .text 0000000000000149 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000601b80 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi65EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f7c40 g DF .text 0000000000000082 VERS_1.0 _ZN6tflite11Interpreter23ModifyGraphWithDelegateESt10unique_ptrI14TfLiteDelegatePFvPS2_EE
00000000004d7eb0 w DF .text 0000000000000343 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIhliSt8functionIFbhhEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
0000000000587a30 w DF .text 000000000000000a VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlffE_4_FUNEff
00000000006002c0 g DF .text 000000000000028f VERS_1.0 _ZN6tflite21PrintInterpreterStateEPNS_11InterpreterE
0000000000535460 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin21Register_DIV_NEON_OPTEv
00000000004dc2e0 g DF .text 000000000000000c VERS_1.0 _ZN6tflite3ops7builtin11arg_min_max10ArgMinEvalEP13TfLiteContextP10TfLiteNode
0000000000601ae0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi38EEEiRKNS1_18NNAPIOpMappingArgsE
00000000006019f0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi40EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005b2260 g DF .text 000000000000024f VERS_1.0 _ZN6tflite3ops7builtin7split_v19ResizeOutputTensorsEP13TfLiteContextP10TfLiteNodePK12TfLiteTensorS9_S9_
0000000000587b70 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite13optimized_ops14MeanWorkerTaskD1Ev
00000000005f6bb0 g DF .text 0000000000000011 VERS_1.0 _ZN6tflite11Interpreter12ReserveNodesEi
000000000058e5d0 w DF .text 0000000000000127 VERS_1.0 _ZN6tflite3ops7builtin6reduce11EvalGenericILNS2_10KernelTypeE0ELNS2_10ReduceTypeE3EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000601120 w DF .text 000000000000003c VERS_1.0 _ZNSt6vectorIN6tflite14AllocationInfoESaIS1_EE12emplace_backIJS1_EEEvDpOT_
0000000000574290 w DF .text 0000000000000163 VERS_1.0 _ZN6tflite3ops7builtin7one_hot17OneHotComputeImplIiiEEvRKNS2_13OneHotContextE
000000000060de40 g DF .text 000000000000005d VERS_1.0 _ZN6tflite17SimpleMemoryArena5ClearEv
00000000005ef190 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils10CopyVectorEPKfiPf
000000000055d740 g DF .text 0000000000000049 VERS_1.0 _ZN6tflite3ops7builtin4lstm4full4InitEP13TfLiteContextPKcm
0000000000601aa0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi69EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f2bb0 w DF .text 00000000000000ec VERS_1.0 _ZNSt6vectorI12TfLiteTensorSaIS0_EE7reserveEm
0000000000573930 g DF .text 00000000000000d0 VERS_1.0 _ZN6tflite3ops7builtin3neg7PrepareEP13TfLiteContextP10TfLiteNode
000000000053de20 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin12Register_EXPEv
00000000005fd150 g DF .text 0000000000000022 VERS_1.0 _ZN6tflite15FlatBufferModelD1Ev
00000000005a35e0 w DF .text 0000000000000b45 VERS_1.0 _ZN6tflite3ops7builtin5slice4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000601bb0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi71EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000587a50 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlffE1_4_FUNEff
00000000004d6ea0 w DF .text 0000000000000349 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIfiiSt8functionIFbffEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
00000000004bd760 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin11activations14LogSoftmaxFreeEP13TfLiteContextPv
00000000004c1b50 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin12Register_ELUEv
00000000005890b0 w DF .text 0000000000000c8d VERS_1.0 _ZN6tflite13optimized_ops4MeanERKNS_10MeanParamsERKNS_12RuntimeShapeEPKhifS6_PhifPNS_17CpuBackendContextE
00000000004d8f00 w DF .text 000000000000030b VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIailSt8functionIFbaaEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
0000000000744880 g DF .text 0000000000000018 VERS_1.0 _ZN6tflite29ConvertVectorToTfLiteIntArrayERKSt6vectorIiSaIiEE
00000000005f1ab0 w DF .text 0000000000000015 VERS_1.0 _ZNK6tflite15InterpreterInfo10node_indexEm
00000000005a00e0 g DF .text 0000000000000239 VERS_1.0 _ZN6tflite3ops7builtin5slice17ResizeOutputShapeEP13TfLiteContextPK12TfLiteTensorS7_S7_PS5_
00000000005cda80 w DF .text 0000000000000374 VERS_1.0 _ZN6tflite13reference_ops9TransposeIiEEvRKNS_15TransposeParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
0000000000566850 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIlNS2_9MinimumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
000000000060cec0 g DF .text 00000000000000d3 VERS_1.0 _ZN6tflite21StatefulNnApiDelegate19RegisterNnapiMemoryEP21ANeuralNetworksMemoryPF12TfLiteStatusP12TfLiteTensorS2_mmPvES6_
0000000000528e50 w DF .text 0000000000000982 VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv9EvalFloatILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
000000000055a870 w DF .text 0000000000000e9c VERS_1.0 _ZN6tflite3ops7builtin6l2norm4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005b6180 w DF .text 00000000000009ab VERS_1.0 _ZN6tflite13reference_ops12StridedSliceIfEEvRKNS_18StridedSliceParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
000000000053e650 g DF .text 0000000000000154 VERS_1.0 _ZN6tflite3ops7builtin4fill7PrepareEP13TfLiteContextP10TfLiteNode
0000000000588750 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin23Register_REDUCE_MIN_REFEv
00000000005fe970 g DF .text 00000000000002d8 VERS_1.0 _ZN6tflite18InterpreterBuilder36BuildLocalIndexToRegistrationMappingEv
000000000059bca0 g DF .text 000000000000019c VERS_1.0 _ZN6tflite3ops7builtin6select13SelectPrepareEP13TfLiteContextP10TfLiteNode
000000000055d480 g DF .text 00000000000000ed VERS_1.0 _ZN6tflite3ops7builtin14lsh_projection18DenseLshProjectionEPK12TfLiteTensorS5_S5_Pi
00000000006000e0 g DF .text 000000000000007a VERS_1.0 _ZN6tflite20PrintTfLiteIntVectorEPK14TfLiteIntArray
00000000004cc530 w DF .text 00000000000000b3 VERS_1.0 _ZN6tflite3ops7builtin3add4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005a1250 w DF .text 00000000000002ef VERS_1.0 _ZN6tflite13optimized_ops5SliceIlEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
0000000000594a80 w DF .text 0000000000001046 VERS_1.0 _ZN6tflite3ops7builtin23resize_nearest_neighbor4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000593760 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin33Register_RESIZE_BILINEAR_NEON_OPTEv
00000000004c2610 g DF .text 0000000000000098 VERS_1.0 _ZN6tflite3ops7builtin11activations11SoftmaxEvalEP13TfLiteContextP10TfLiteNode
000000000053d010 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin15Register_SQUAREEv
0000000000596b40 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin41Register_RESIZE_NEAREST_NEIGHBOR_NEON_OPTEv
0000000000555270 w DF .text 0000000000000522 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIfiEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
00000000004e3f30 g DF .text 0000000000000fd6 VERS_1.0 _ZN6tflite3ops7builtin27bidirectional_sequence_lstm7PrepareEP13TfLiteContextP10TfLiteNode
000000000057db90 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin20Register_MAX_POOL_2DEv
0000000000600240 g DF .text 0000000000000071 VERS_1.0 _ZN6tflite13AllocTypeNameE20TfLiteAllocationType
0000000000593780 g DF .text 0000000000000069 VERS_1.0 _ZN6tflite3ops7builtin23resize_nearest_neighbor18ResizeOutputTensorEP13TfLiteContextPK12TfLiteTensorS7_PS5_
000000000056a060 w DF .text 0000000000002299 VERS_1.0 _ZN6tflite3ops7builtin3mul13EvalQuantizedILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteMulParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
0000000000551410 w DF .text 0000000000000037 VERS_1.0 _ZN6tflite13DynamicBufferD2Ev
00000000005fec50 g DF .text 00000000000005c2 VERS_1.0 _ZN6tflite18InterpreterBuilderclEPSt10unique_ptrINS_11InterpreterESt14default_deleteIS2_EEi
00000000004f7620 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIhED1Ev
00000000004bc610 g DF .text 000000000000000f VERS_1.0 _ZN6tflite3ops7builtin11activations13HardSwishInitEP13TfLiteContextPKcm
0000000000540920 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18Register_FLOOR_DIVEv
0000000000588510 g DF .text 0000000000000085 VERS_1.0 _ZN6tflite3ops7builtin6reduce10PrepareAnyEP13TfLiteContextP10TfLiteNode
00000000004de770 g DF .text 000000000000013e VERS_1.0 _ZN6tflite3ops7builtin17batch_to_space_nd7PrepareEP13TfLiteContextP10TfLiteNode
0000000004b02d00 g DF .text 0000000000000036 VERS_1.0 TfLiteTensorFree
00000000005139e0 w DF .text 0000000000000336 VERS_1.0 _ZN6tflite3ops7builtin4conv13EvalQuantizedILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
00000000005f6990 g DF .text 00000000000000f3 VERS_1.0 _ZN6tflite11Interpreter10SetOutputsESt6vectorIiSaIiEE
000000000057d070 w DF .text 0000000000000432 VERS_1.0 _ZN6tflite13optimized_ops13AveragePool32ERKNS_10PoolParamsERKNS_12RuntimeShapeEPKhS6_Ph
000000000052e7d0 g DF .text 000000000000078d VERS_1.0 _ZN6tflite3ops7builtin10dequantize4EvalEP13TfLiteContextP10TfLiteNode
00000000004d5480 w DF .text 000000000000013d VERS_1.0 _ZNSt6vectorIPN6tflite12RuntimeShapeESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
00000000005b5b30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin26Register_STRIDED_SLICE_REFEv
00000000005b1de0 g DF .text 0000000000000050 VERS_1.0 _ZN6tflite3ops7builtin7split_v23UseDynamicOutputTensorsEP13TfLiteContextP10TfLiteNode
0000000000587a80 w DF .text 000000000000000b VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUliiE0_4_FUNEii
00000000004c1850 g DF .text 0000000000000128 VERS_1.0 _ZN6tflite3ops7builtin11activations16HardSwishPrepareEP13TfLiteContextP10TfLiteNode
0000000000546570 w DF .text 00000000000002c3 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected21EvalShuffledQuantizedILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSG_SG_PSE_SH_
00000000005f2fd0 w DF .text 0000000000000197 VERS_1.0 _ZNSt6vectorISt4pairI10TfLiteNode18TfLiteRegistrationESaIS3_EE7reserveEm
0000000000542730 w DF .text 000000000000000a VERS_1.0 _ZN6tflite13optimized_ops32ShuffledFullyConnectedWorkerTaskD0Ev
0000000000528730 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin39Register_DEPTHWISE_CONVOLUTION_NEON_OPTEv
00000000005b2640 g DF .text 0000000000001e7a VERS_1.0 _ZN6tflite3ops7builtin7split_v4EvalEP13TfLiteContextP10TfLiteNode
000000000057dc40 w DF .text 0000000000000085 VERS_1.0 _ZN6tflite13optimized_ops28MapAsMatrixWithLastDimAsRowsIfEENSt11conditionalIXsrSt8is_constIT_E5valueEN5Eigen3MapIKNS6_6MatrixINSt12remove_constIS4_E4typeELin1ELin1ELi0ELin1ELin1EEELi0ENS6_6StrideILi0ELi0EEEEENS7_INS8_IS4_Lin1ELin1ELi0ELin1ELin1EEELi0ESF_EEE4typeEPS4_RKNS_12RuntimeShapeE
00000000004c1020 w DF .text 00000000000007f8 VERS_1.0 _ZN6tflite13optimized_ops7SoftmaxERKNS_13SoftmaxParamsERKNS_12RuntimeShapeEPKfS6_Pf
00000000005b58a0 g DF .text 00000000000001e9 VERS_1.0 _ZN6tflite3ops7builtin7squeeze7PrepareEP13TfLiteContextP10TfLiteNode
0000000000558d80 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom9if_kernel4FreeEP13TfLiteContextPv
0000000000600830 g DF .text 0000000000000029 VERS_1.0 _ZN6tflite12ArenaPlanner11BasePointerE20TfLiteAllocationType
00000000005f1200 g DF .text 0000000000000052 VERS_1.0 _ZN6tflite12tensor_utils31PortableVectorBatchVectorAssignEPKfiiPf
0000000000600560 g DF .text 0000000000000012 VERS_1.0 _ZN6tflite14StderrReporter6ReportEPKcP13__va_list_tag
0000000000582440 w DF .text 0000000000000766 VERS_1.0 _ZN6tflite3ops7builtin7pooling12MaxEvalFloatILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
00000000005e51e0 g DF .text 0000000000000127 VERS_1.0 _ZNK6tflite8internal17MfccMelFilterbank7ComputeERKSt6vectorIdSaIdEEPS4_
0000000000553a90 w DF .text 0000000000000486 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIalEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
00000000004de8b0 w DF .text 0000000000001deb VERS_1.0 _ZN6tflite3ops7builtin17batch_to_space_nd4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000600b10 g DF .text 000000000000007c VERS_1.0 _ZN6tflite12ArenaPlanner38CalculateDeallocationOfInternalTensorsEi
0000000000502690 w DF .text 0000000000000015 VERS_1.0 _ZN6tflite3ops7builtin4conv7PrepareILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000061c5d0 g DF .text 000000000000001f VERS_1.0 _ZN6tflite29CalculateActivationRangeUint8E21TfLiteFusedActivationP12TfLiteTensorPiS3_
000000000060d8b0 g DF .text 000000000000000a VERS_1.0 _ZNK6tflite14MMAPAllocation4baseEv
00000000004d55c0 w DF .text 0000000000000034 VERS_1.0 _ZNSt6vectorIPN6tflite12RuntimeShapeESaIS2_EE12emplace_backIJS2_EEEvDpOT_
0000000000587b70 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite13optimized_ops14MeanWorkerTaskD2Ev
000000000053d3e0 g DF .text 0000000000000075 VERS_1.0 _ZN6tflite3ops7builtin16embedding_lookup4EvalEP13TfLiteContextP10TfLiteNode
000000000060ebd0 g DF .text 0000000000000317 VERS_1.0 _ZN6tflite4flex8delegate7PrepareEP13TfLiteContextP14TfLiteDelegate
00000000005f1f30 g DF .text 000000000000000e VERS_1.0 _ZN6tflite8Subgraph16GetExecutionPlanEP13TfLiteContextPP14TfLiteIntArray
0000000004b02a40 g DF .text 0000000000000064 VERS_1.0 TfLiteIntArrayEqualsArray
000000000060d660 g DF .text 000000000000000e VERS_1.0 _ZNK6tflite16MemoryAllocation5validEv
00000000005fd150 g DF .text 0000000000000022 VERS_1.0 _ZN6tflite15FlatBufferModelD2Ev
00000000005b4640 w DF .text 00000000000008ed VERS_1.0 _ZN6tflite3ops7builtin18squared_difference21EvalSquaredDifferenceIfEEvP13TfLiteContextP10TfLiteNodePKNS2_6OpDataEPK12TfLiteTensorSD_PSB_
00000000005f24b0 g DF .text 0000000000000087 VERS_1.0 _ZN6tflite8Subgraph9OpPrepareERK18TfLiteRegistrationP10TfLiteNode
00000000004bb420 g DF .text 000000000000000a VERS_1.0 _ZNK6tflite3ops7builtin17BuiltinOpResolver6FindOpEPKci
000000000055b740 g DF .text 0000000000000151 VERS_1.0 _ZN6tflite3ops7builtin19local_response_norm7PrepareEP13TfLiteContextP10TfLiteNode
0000000000584250 w DF .text 00000000000003a8 VERS_1.0 _ZN6tflite13optimized_ops18IntegerExponentPowIfEEvRKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKT_iS7_PS8_
0000000000614890 g DF .text 0000000000001c08 VERS_1.0 _ZN6tflite4flex6kernel4InitEP13TfLiteContextPKcm
00000000007443e0 g DF .text 000000000000006e VERS_1.0 _ZN6tflite13DynamicBuffer13WriteToTensorEP12TfLiteTensorP14TfLiteIntArray
00000000005f7280 g DF .text 0000000000000014 VERS_1.0 _ZN6tflite11Interpreter11GetProfilerEv
00000000005b6b30 w DF .text 00000000000009a7 VERS_1.0 _ZN6tflite13reference_ops12StridedSliceIiEEvRKNS_18StridedSliceParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
00000000004c42d0 w DF .text 0000000000001862 VERS_1.0 _ZN6tflite3ops7builtin11activations14LogSoftmaxEvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000573fb0 w DF .text 000000000000016d VERS_1.0 _ZN6tflite3ops7builtin7one_hot17OneHotComputeImplIfiEEvRKNS2_13OneHotContextE
00000000005fd180 g DF .text 00000000000000d5 VERS_1.0 _ZN6tflite15FlatBufferModel14BuildFromModelEPKNS_5ModelEPNS_13ErrorReporterE
0000000004b02e30 g DF .text 00000000000000d9 VERS_1.0 TfLiteTypeGetName
000000000059ea80 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin15Register_SELECTEv
0000000000566dd0 w DF .text 0000000000000517 VERS_1.0 _ZN6tflite3ops6custom4mfcc4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000528980 g DF .text 00000000000004c8 VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv7PrepareEP13TfLiteContextP10TfLiteNode
00000000004ff600 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin16Register_CONV_2DEv
00000000004e2860 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin26Register_BATCH_TO_SPACE_NDEv
00000000004d71f0 w DF .text 000000000000030b VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIhiiSt8functionIFbhhEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
000000000060f760 g DF .text 0000000000000bfc VERS_1.0 _ZN6tflite4flex6kernel13ExecuteFlexOpEP13TfLiteContextPNS0_9BufferMapEPNS1_6OpNodeE
0000000000540b20 w DF .text 0000000000000038 VERS_1.0 _ZN6tflite13reference_ops8FloorModIfEET_S2_S2_
00000000004fa8f0 w DF .text 000000000000225c VERS_1.0 _ZN6tflite3ops7builtin13concatenation4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000581cc0 w DF .text 00000000000006ec VERS_1.0 _ZN6tflite3ops7builtin7pooling24AverageEvalQuantizedInt8ILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
00000000004d8200 w DF .text 0000000000000343 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIaliSt8functionIFbaaEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
00000000005d8b30 g DF .text 0000000000000125 VERS_1.0 _ZN6tflite3ops7builtin5where4EvalEP13TfLiteContextP10TfLiteNode
00000000005d8c90 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom12while_kernel4FreeEP13TfLiteContextPv
00000000005878c0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_RANGEEv
0000000000587e90 g DF .text 0000000000000077 VERS_1.0 _ZN6tflite3ops7builtin6reduce13ResizeTempSumEP13TfLiteContextPNS2_9OpContextEP12TfLiteTensor
00000000004f7f40 w DF .text 000000000000028c VERS_1.0 _ZN6tflite15VectorOfTensorsIaEC2ERK13TfLiteContextRK14TfLiteIntArray
0000000000601c50 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi68EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000553f20 w DF .text 00000000000004b0 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIilEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
00000000005286c0 w DF .text 0000000000000045 VERS_1.0 _ZN6tflite13optimized_ops23DepthwiseConvWorkerTaskIhiE3RunEv
00000000004bb4b0 w DF .text 000000000000009b VERS_1.0 _ZNSt10_HashtableISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiES0_IKS7_18TfLiteRegistrationESaISA_ENSt8__detail10_Select1stESt8equal_toIS7_EN6tflite18op_resolver_hasher17OperatorKeyHasherIS7_EENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb1ELb0ELb1EEEED1Ev
00000000005f7060 g DF .text 0000000000000040 VERS_1.0 _ZN6tflite11Interpreter23SetCancellationFunctionEPvPFbS1_E
00000000005dfc50 g DF .text 0000000000001a79 VERS_1.0 _ZN6tflite3ops7builtin9lstm_eval9EvalFloatEPK12TfLiteTensorS5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_PK16TfLiteLSTMParamsbbiPS3_S9_S9_S9_
00000000004d5650 w DF .text 00000000000001e8 VERS_1.0 _ZNSt6vectorIN6tflite12RuntimeShapeESaIS1_EE7reserveEm
0000000000601b20 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi70EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f2540 g DF .text 00000000000000bb VERS_1.0 _ZN6tflite8Subgraph22GetNodeAndRegistrationEiPP10TfLiteNodePP18TfLiteRegistration
00000000004f7620 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIhED2Ev
00000000005d96d0 g DF .text 00000000000006e7 VERS_1.0 _ZN6tflite3ops6custom12while_kernel4EvalEP13TfLiteContextP10TfLiteNode
00000000004e4f10 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin36Register_BIDIRECTIONAL_SEQUENCE_LSTMEv
000000000052c9f0 w DF .text 0000000000000469 VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv9EvalFloatILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
0000000000526990 w DF .text 000000000000000a VERS_1.0 _ZN6tflite13optimized_ops23DepthwiseConvWorkerTaskIffED0Ev
0000000000563820 w DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MaximumOp2opIiEET_S5_S5_
00000000004c1c20 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin19Register_HARD_SWISHEv
00000000006043f0 g DF .text 00000000000001e7 VERS_1.0 _ZN6tflite21StatefulNnApiDelegateC2ENS0_7OptionsE
00000000005fd940 g DF .text 0000000000000047 VERS_1.0 _ZN6tflite18InterpreterBuilderD1Ev
0000000000558d50 g DF .text 0000000000000027 VERS_1.0 _ZN6tflite3ops6custom9if_kernel4InitEP13TfLiteContextPKcm
0000000000744290 g DF .text 0000000000000030 VERS_1.0 _ZN6tflite16logging_internal13MinimalLogger15GetSeverityNameENS_11LogSeverityE
000000000055d360 g DF .text 0000000000000114 VERS_1.0 _ZN6tflite3ops7builtin14lsh_projection19SparseLshProjectionEPK12TfLiteTensorS5_S5_Pi
000000000058ec00 g DF .text 000000000000013a VERS_1.0 _ZN6tflite3ops7builtin15resize_bilinear7PrepareEP13TfLiteContextP10TfLiteNode
00000000004ff530 g DF .text 0000000000000087 VERS_1.0 _ZN6tflite3ops7builtin4conv20TransposeFloatTensorEP12TfLiteTensorS4_
00000000005ef1a0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils10Sub1VectorEPKfiPf
00000000005426a0 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite13optimized_ops32ShuffledFullyConnectedWorkerTaskD1Ev
00000000004d9550 w DF .text 000000000000036a VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIfllSt8functionIFbffEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
00000000005b5ec0 g DF .text 0000000000000277 VERS_1.0 _ZN6tflite3ops7builtin13strided_slice7PrepareEP13TfLiteContextP10TfLiteNode
000000000057fe80 w DF .text 00000000000004ec VERS_1.0 _ZN6tflite3ops7builtin7pooling12MaxEvalFloatILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
00000000005f0d00 g DF .text 0000000000000131 VERS_1.0 _ZN6tflite12tensor_utils49PortableSparseMatrixBatchVectorMultiplyAccumulateEPKfPKhiiS2_iPfi
000000000053c520 w DF .text 00000000000000ac VERS_1.0 _ZN6tflite3ops7builtin3div4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000059be40 g DF .text 0000000000002c38 VERS_1.0 _ZN6tflite3ops7builtin6select10SelectEvalEP13TfLiteContextP10TfLiteNode
00000000005a1b80 w DF .text 00000000000002fe VERS_1.0 _ZN6tflite13reference_ops5SliceIaEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
00000000004bc6d0 g DF .text 0000000000000049 VERS_1.0 _ZN6tflite3ops7builtin11activations9PreluInitEP13TfLiteContextPKcm
00000000006045e0 g DF .text 000000000000003e VERS_1.0 _ZN6tflite21StatefulNnApiDelegateC1Ev
0000000000588760 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin23Register_REDUCE_ANY_REFEv
00000000004bdb30 g DF .text 000000000000023b VERS_1.0 _ZN6tflite3ops7builtin11activations7EluEvalEP13TfLiteContextP10TfLiteNode
0000000004b02b10 g DF .text 000000000000008c VERS_1.0 TfLiteIntArrayPrint
0000000000601a00 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi22EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f86c0 w DF .text 000000000000019c VERS_1.0 _ZNK6tflite13Pool2DOptions6VerifyERN11flatbuffers8VerifierE
00000000005ba370 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_SUB_REFEv
0000000000505cd0 w DF .text 00000000000003bd VERS_1.0 _ZN6tflite3ops7builtin4conv9EvalFloatILNS2_10KernelTypeE3EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
00000000004e7b40 w DF .text 000000000000007c VERS_1.0 _ZN6tflite12RuntimeShape11ReplaceWithEiPKi
00000000004bc510 w DF .text 000000000000003b VERS_1.0 _ZN6tflite3ops7builtin17BuiltinOpResolverD0Ev
000000000060e590 g DF .text 00000000000000d7 VERS_1.0 _ZN6tflite16ResourceVariable10AssignFromEPK12TfLiteTensor
00000000005ff420 w DF .text 00000000000000a5 VERS_1.0 _ZNKSt10_HashtableISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiES0_IKS7_18TfLiteRegistrationESaISA_ENSt8__detail10_Select1stESt8equal_toIS7_EN6tflite18op_resolver_hasher17OperatorKeyHasherIS7_EENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb1ELb0ELb1EEEE19_M_find_before_nodeEmRS8_m
00000000005f10e0 g DF .text 000000000000005a VERS_1.0 _ZN6tflite12tensor_utils37PortableVectorBatchVectorCwiseProductEPKfiS2_iPf
00000000004d6e80 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_ARG_MAXEv
00000000004e6810 g DF .text 000000000000029f VERS_1.0 _ZN6tflite3ops7builtin26bidirectional_sequence_rnn4EvalEP13TfLiteContextP10TfLiteNode
00000000005e85d0 w DF .text 00000000000001c7 VERS_1.0 _ZN6tflite8internal11Spectrogram25ComputeComplexSpectrogramIddEEbRKSt6vectorIT_SaIS4_EEPS3_IS3_ISt7complexIT0_ESaISB_EESaISD_EE
00000000005b74e0 w DF .text 00000000000009a8 VERS_1.0 _ZN6tflite13reference_ops12StridedSliceIlEEvRKNS_18StridedSliceParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
0000000004b02ba0 g DF .text 0000000000000045 VERS_1.0 TfLiteIntArrayCopy
000000000060e680 w DF .text 0000000000000084 VERS_1.0 _ZN6tflite13DynamicBufferC1Ev
00000000005f7240 g DF .text 0000000000000034 VERS_1.0 _ZN6tflite11Interpreter11SetProfilerEPNS_8ProfilerE
00000000007444a0 g DF .text 000000000000000e VERS_1.0 _ZN6tflite14GetStringCountEPK12TfLiteTensor
00000000005fd820 g DF .text 000000000000008f VERS_1.0 _ZN6tflite18InterpreterBuilderC1ERKNS_15FlatBufferModelERKNS_10OpResolverE
000000000060da60 g DF .text 000000000000000b VERS_1.0 _ZN6tflite14MMAPAllocation11IsSupportedEv
00000000005ced50 g DF .text 000000000000001f VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv4FreeEP13TfLiteContextPv
00000000005ef0d0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils41SparseMatrixBatchVectorMultiplyAccumulateEPKfPKhiiS2_iPfi
0000000000588e90 w DF .text 000000000000000b VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlaaE0_clEaa
0000000000587bc0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin6reduce4FreeEP13TfLiteContextPv
00000000005f2ca0 g DF .text 00000000000001ea VERS_1.0 _ZN6tflite8Subgraph20PrepareOpsStartingAtEiPi
00000000005886c0 g DF .text 0000000000000044 VERS_1.0 _ZN6tflite3ops7builtin6reduce11ResolveAxisEPKiiPNS_10MeanParamsE
00000000004ddf80 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin3rnn4FreeEP13TfLiteContextPv
00000000005f3190 g DF .text 00000000000002ec VERS_1.0 _ZN6tflite8SubgraphC2EPNS_13ErrorReporterEPP21TfLiteExternalContextPSt6vectorISt10unique_ptrIS0_St14default_deleteIS0_EESaISA_EEPSt13unordered_mapIiNS_16ResourceVariableESt4hashIiESt8equal_toIiESaISt4pairIKiSF_EEE
00000000005a43e0 w DF .text 0000000000002215 VERS_1.0 _ZN6tflite3ops7builtin17space_to_batch_nd4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000588dd0 w DF .text 000000000000000b VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUliiE0_clEii
0000000000552200 w DF .text 000000000000049f VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIiiEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
00000000004c6ea0 w DF .text 00000000000004b1 VERS_1.0 _ZN6tflite3ops7builtin11activations8TanhEvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005f22a0 g DF .text 00000000000000a5 VERS_1.0 _ZN6tflite8Subgraph9SetInputsESt6vectorIiSaIiEE
0000000000744490 g DF .text 0000000000000008 VERS_1.0 _ZN6tflite14GetStringCountEPKc
0000000000617240 g DF .text 0000000000000067 VERS_1.0 _ZNK6tflite4flex9BufferMap18IsTensorFlowTensorEi
000000000059eea0 w DF .text 0000000000000034 VERS_1.0 _ZNSt6vectorIN6tflite9StringRefESaIS1_EE12emplace_backIJS1_EEEvDpOT_
0000000000525440 w DF .text 0000000000000300 VERS_1.0 _ZN6tflite21optimized_integer_ops14ConvPerChannelERKNS_10ConvParamsEPKiS5_RKNS_12RuntimeShapeEPKaS8_SA_S8_S5_S8_PaS8_SB_PNS_17CpuBackendContextE
000000000052bb80 w DF .text 000000000000040a VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv23EvalQuantizedPerChannelILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
00000000005f1b70 w DF .text 000000000000000a VERS_1.0 _ZN6tflite15InterpreterInfoD0Ev
000000000053dc40 g DF .text 00000000000000d0 VERS_1.0 _ZN6tflite3ops7builtin3exp7PrepareEP13TfLiteContextP10TfLiteNode
00000000004fd3c0 g DF .text 0000000000000047 VERS_1.0 _ZN6tflite3ops7builtin4conv4FreeEP13TfLiteContextPv
00000000005f2600 g DF .text 000000000000000e VERS_1.0 _ZN6tflite8Subgraph22GetNodeAndRegistrationEP13TfLiteContextiPP10TfLiteNodePP18TfLiteRegistration
00000000005f15c0 g DF .text 000000000000004f VERS_1.0 _ZN6tflite12tensor_utils26PortableReductionSumVectorEPKfPfii
00000000005f1e30 g DF .text 000000000000001f VERS_1.0 _ZN6tflite8SubgraphD0Ev
000000000058cd70 w DF .text 000000000000050c VERS_1.0 _ZN6tflite3ops7builtin6reduce9EvalLogicIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextET_PFSB_SB_SB_E
000000000055c340 w DF .text 0000000000000209 VERS_1.0 _ZN6tflite3ops7builtin19local_response_norm4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004bb4b0 w DF .text 000000000000009b VERS_1.0 _ZNSt10_HashtableISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiES0_IKS7_18TfLiteRegistrationESaISA_ENSt8__detail10_Select1stESt8equal_toIS7_EN6tflite18op_resolver_hasher17OperatorKeyHasherIS7_EENSC_18_Mod_range_hashingENSC_20_Default_ranged_hashENSC_20_Prime_rehash_policyENSC_17_Hashtable_traitsILb1ELb0ELb1EEEED2Ev
00000000006177d0 g DF .text 000000000000055b VERS_1.0 _ZN6tflite4flex9BufferMap13SetFromTfLiteEiPK12TfLiteTensor
000000000055f010 g DF .text 000000000000036b VERS_1.0 _ZN6tflite3ops7builtin4lstm5basic7PrepareEP13TfLiteContextP10TfLiteNode
000000000058c880 w DF .text 00000000000004ec VERS_1.0 _ZN6tflite3ops7builtin6reduce9EvalLogicIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextET_PFSB_SB_SB_E
0000000000583c40 w DF .text 0000000000000068 VERS_1.0 _ZN6tflite3ops7builtin7pooling6L2EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000007449e0 g DF .text 0000000000000017 VERS_1.0 _ZN6tflite18UnresolvedOpInvokeEP13TfLiteContextP10TfLiteNode
0000000000598a00 w DF .text 00000000000004b7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIhlEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
00000000005885a0 g DF .text 000000000000011a VERS_1.0 _ZN6tflite3ops7builtin6reduce16PrepareMeanOrSumEP13TfLiteContextP10TfLiteNode
00000000004e7ce0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin19Register_LESS_EQUALEv
00000000005f1480 g DF .text 0000000000000013 VERS_1.0 _ZN6tflite12tensor_utils18PortableZeroVectorEPfi
00000000004c8b80 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin12Register_ADDEv
00000000005fd0b0 g DF .text 000000000000009b VERS_1.0 _ZN6tflite15FlatBufferModelC2ESt10unique_ptrINS_10AllocationESt14default_deleteIS2_EEPNS_13ErrorReporterE
00000000005fcd30 g DF .text 00000000000000a4 VERS_1.0 _ZN6tflite21GetAllocationFromFileEPKcbPNS_13ErrorReporterEb
0000000000526930 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite13optimized_ops23DepthwiseConvWorkerTaskIffED1Ev
0000000000588710 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin17Register_MEAN_REFEv
00000000005fd940 g DF .text 0000000000000047 VERS_1.0 _ZN6tflite18InterpreterBuilderD2Ev
0000000000557ba0 w DF .text 0000000000000512 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIilEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
0000000000563a00 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin16Register_MINIMUMEv
000000000060e4c0 g DF .text 0000000000000071 VERS_1.0 _ZN6tflite16ResourceVariableC2EOS0_
00000000005f14a0 g DF .text 0000000000000034 VERS_1.0 _ZN6tflite12tensor_utils28PortableVectorScalarMultiplyEPKaifPf
00000000005b44c0 g DF .text 0000000000000013 VERS_1.0 _ZN6tflite3ops7builtin18squared_difference4InitEP13TfLiteContextPKcm
000000000059f3b0 w DF .text 0000000000000047 VERS_1.0 _ZN6tflite22SequentialTensorWriterINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED1Ev
0000000000525740 w DF .text 00000000000003d7 VERS_1.0 _ZN6tflite3ops7builtin4conv23EvalQuantizedPerChannelILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_
00000000005f72a0 w DF .text 000000000000008b VERS_1.0 _ZNSt10_HashtableIiSt4pairIKiN6tflite16ResourceVariableEESaIS4_ENSt8__detail10_Select1stESt8equal_toIiESt4hashIiENS6_18_Mod_range_hashingENS6_20_Default_ranged_hashENS6_20_Prime_rehash_policyENS6_17_Hashtable_traitsILb0ELb0ELb1EEEED1Ev
00000000005426a0 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite13optimized_ops32ShuffledFullyConnectedWorkerTaskD2Ev
00000000005f80d0 w DF .text 00000000000005e2 VERS_1.0 _ZNK6tflite22QuantizationParameters6VerifyERN11flatbuffers8VerifierE
00000000005b8820 w DF .text 0000000000000984 VERS_1.0 _ZN6tflite13reference_ops12StridedSliceIaEEvRKNS_18StridedSliceParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
00000000004e6be0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_CASTEv
00000000005f1ad0 w DF .text 0000000000000010 VERS_1.0 _ZNK6tflite15InterpreterInfo6inputsEv
000000000060cfb0 g DF .text 000000000000027a VERS_1.0 _ZN6tflite8delegate5nnapi32ExtractQuantLstmWeightsSubmatrixEPK14TfLiteIntArrayiiS4_PKhPSt6vectorIhSaIhEE
00000000005f8c80 w DF .text 00000000000001bd VERS_1.0 _ZNK6tflite8Metadata6VerifyERN11flatbuffers8VerifierE
00000000005f4750 g DF .text 00000000000001f5 VERS_1.0 _ZN6tflite8Subgraph23ModifyGraphWithDelegateEP14TfLiteDelegate
00000000005ade10 w DF .text 000000000000070b VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense16GetIndicesVectorIlEE12TfLiteStatusP13TfLiteContextPK12TfLiteTensoriPSt6vectorISA_IT_SaISB_EESaISD_EE
000000000061cf00 g DF .text 0000000000000054 VERS_1.0 _ZN6tflite30PreprocessLogSoftmaxScalingExpEddiPiS0_S0_S0_
0000000000574860 w DF .text 0000000000000164 VERS_1.0 _ZN6tflite3ops7builtin7one_hot17OneHotComputeImplIbiEEvRKNS2_13OneHotContextE
00000000005d3f60 g DF .text 0000000000000008 VERS_1.0 _ZN6tflite3ops7builtin6unique4InitEP13TfLiteContextPKcm
00000000006045e0 g DF .text 000000000000003e VERS_1.0 _ZN6tflite21StatefulNnApiDelegateC2Ev
00000000004f7760 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin26Register_CONCATENATION_REFEv
000000000059eb40 g DF .text 0000000000000107 VERS_1.0 _ZN6tflite3ops7builtin5shape7PrepareEP13TfLiteContextP10TfLiteNode
00000000005ba000 g DF .text 00000000000001ce VERS_1.0 _ZN6tflite3ops7builtin3sub17PrepareInt16SubOpEP13TfLiteContextPK12TfLiteTensorS7_PS5_P15TfLiteSubParamsPNS2_6OpDataE
00000000004de5a0 g DF .text 00000000000001cf VERS_1.0 _ZN6tflite3ops7builtin17batch_to_space_nd18ResizeOutputTensorEP13TfLiteContextPNS2_21BatchToSpaceNDContextE
00000000004e7340 w DF .text 0000000000000146 VERS_1.0 _ZN6tflite3ops7builtin4cast12copyToTensorISt7complexIfEEE12TfLiteStatusPKT_P12TfLiteTensori
00000000004bc4d0 w DF .text 0000000000000033 VERS_1.0 _ZN6tflite3ops7builtin17BuiltinOpResolverD1Ev
00000000005a2180 w DF .text 00000000000002fe VERS_1.0 _ZN6tflite13reference_ops5SliceIhEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
0000000000611210 w DF .text 0000000000000089 VERS_1.0 _ZNSt8_Rb_treeIiSt4pairIKiN6tflite4flex6kernel12TensorSourceEESt10_Select1stIS6_ESt4lessIiESaIS6_EE24_M_get_insert_unique_posERS1_
000000000060f410 g DF .text 0000000000000055 VERS_1.0 _ZN6tflite4flex9GetKernelEv
0000000000528750 w DF .text 0000000000000229 VERS_1.0 _ZNSt6vectorIN6tflite21optimized_integer_ops23DepthwiseConvWorkerTaskIaiEESaIS3_EE7reserveEm
00000000005135e0 w DF .text 00000000000003f7 VERS_1.0 _ZN6tflite3ops7builtin4conv13EvalQuantizedILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
0000000000500950 w DF .text 0000000000000532 VERS_1.0 _ZN6tflite13optimized_ops6Im2colIfEEvRKNS_10ConvParamsEiihRKNS_12RuntimeShapeEPKT_S7_PS8_
00000000004d98c0 w DF .text 0000000000000343 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIhllSt8functionIFbhhEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
00000000005b92f0 w DF .text 0000000000000a6d VERS_1.0 _ZN6tflite3ops7builtin13strided_slice4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005132c0 w DF .text 0000000000000311 VERS_1.0 _ZN6tflite13optimized_ops4ConvERKNS_10ConvParamsERKNS_12RuntimeShapeEPKhS6_S8_S6_PKiS6_PhS6_SB_PNS_17CpuBackendContextE
000000000060e680 w DF .text 0000000000000084 VERS_1.0 _ZN6tflite13DynamicBufferC2Ev
00000000005aed20 w DF .text 00000000000003fd VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIllEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000055e400 g DF .text 0000000000000727 VERS_1.0 _ZN6tflite3ops7builtin4lstm4full7PrepareEP13TfLiteContextP10TfLiteNode
000000000059fac0 w DF .text 00000000000004b6 VERS_1.0 _ZN6tflite13reference_ops5SliceINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEvRKNS_11SliceParamsERKNS_12RuntimeShapeEPK12TfLiteTensorSD_PSE_
00000000005585e0 g DF .text 0000000000000185 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd4EvalEP13TfLiteContextP10TfLiteNode
0000000000525b20 w DF .text 000000000000020b VERS_1.0 _ZN6tflite3ops7builtin4conv4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005a0540 w DF .text 00000000000000aa VERS_1.0 _ZN6tflite3ops7builtin5slice22GetBeginAndSizeVectorsIlEEviPK12TfLiteTensorS6_PSt6vectorIiSaIiEESA_
000000000060d6e0 g DF .text 0000000000000198 VERS_1.0 _ZN6tflite18FileCopyAllocationC1EPKcPNS_13ErrorReporterE
000000000052aad0 w DF .text 00000000000000dd VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005d1de0 g DF .text 000000000000003a VERS_1.0 _ZN6tflite3ops7builtin28unidirectional_sequence_lstm4InitEP13TfLiteContextPKcm
000000000057d020 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin7pooling4FreeEP13TfLiteContextPv
000000000053d460 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin25Register_EMBEDDING_LOOKUPEv
0000000000586480 g DF .text 00000000000001b3 VERS_1.0 _ZN6tflite3ops7builtin8quantize7PrepareEP13TfLiteContextP10TfLiteNode
0000000000601a40 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi19EEEiRKNS1_18NNAPIOpMappingArgsE
000000000058d890 g DF .text 0000000000000ad5 VERS_1.0 _ZN6tflite3ops7builtin6reduce7EvalSumEP13TfLiteContextP10TfLiteNode
00000000005d3af0 g DF .text 0000000000000329 VERS_1.0 _ZN6tflite3ops7builtin27unidirectional_sequence_rnn10EvalHybridEPK12TfLiteTensorS5_S5_S5_PK23TfLiteSequenceRNNParamsPS3_S9_S9_S9_S9_
0000000000601a60 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi21EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f1b60 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite15InterpreterInfoD1Ev
000000000061c8e0 g DF .text 00000000000001f3 VERS_1.0 _ZN6tflite26CalculateShapeForBroadcastEP13TfLiteContextPK12TfLiteTensorS4_PP14TfLiteIntArray
00000000005d88a0 g DF .text 00000000000000f6 VERS_1.0 _ZN6tflite3ops7builtin5where7PrepareEP13TfLiteContextP10TfLiteNode
00000000005ce180 w DF .text 0000000000000375 VERS_1.0 _ZN6tflite13reference_ops9TransposeIbEEvRKNS_15TransposeParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
00000000004dc5c0 w DF .text 0000000000000620 VERS_1.0 _ZN6tflite3ops6custom17audio_spectrogram4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004e7990 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_CEILEv
0000000000588770 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin13Register_MEANEv
0000000000604620 g DF .text 0000000000000043 VERS_1.0 _ZN6tflite21StatefulNnApiDelegate10GetOptionsEP14TfLiteDelegate
00000000005f1ca0 g DF .text 000000000000018f VERS_1.0 _ZN6tflite8SubgraphD1Ev
00000000005d3f70 g DF .text 0000000000000006 VERS_1.0 _ZN6tflite3ops7builtin6unique4FreeEP13TfLiteContextPv
00000000005cfa90 g DF .text 00000000000001f1 VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv25ResizeAndTransposeWeightsEP13TfLiteContextPK12TfLiteTensorPS5_
0000000000559740 g DF .text 00000000000001f4 VERS_1.0 _ZN6tflite3ops7builtin6l2norm7PrepareEP13TfLiteContextP10TfLiteNode
0000000000563a10 w DF .text 0000000000000492 VERS_1.0 _ZN6tflite13reference_ops29MaximumMinimumBroadcast4DSlowIfPFfffEEEvRKNS_12RuntimeShapeEPKT_S6_S9_S6_PS7_T0_
0000000004c033f0 w DO .rodata 000000000000001d VERS_1.0 _ZTSN6tflite17CpuBackendContextE
00000000004dcbe0 g DF .text 0000000000001359 VERS_1.0 _ZN6tflite3ops6custom17audio_spectrogram4InitEP13TfLiteContextPKcm
0000000000588e30 w DF .text 0000000000000010 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlllE2_clEll
000000000059a710 w DF .text 00000000000004d7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIllEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
0000000000526930 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite13optimized_ops23DepthwiseConvWorkerTaskIffED2Ev
0000000000503ed0 w DF .text 000000000000089c VERS_1.0 _ZN6tflite3ops7builtin4conv23EvalQuantizedPerChannelILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_
00000000005f1420 g DF .text 000000000000001e VERS_1.0 _ZN6tflite12tensor_utils18PortableCopyVectorEPKfiPf
000000000061c180 g DF .text 000000000000016f VERS_1.0 _ZN6tflite25GetRegistrationFromOpCodeEPKNS_12OperatorCodeERKNS_10OpResolverEPNS_13ErrorReporterEPPK18TfLiteRegistration
00000000005afad0 g DF .text 0000000000000123 VERS_1.0 _ZN6tflite3ops7builtin5split19ResizeOutputTensorsEP13TfLiteContextP10TfLiteNodePK12TfLiteTensorS9_i
000000000059f3b0 w DF .text 0000000000000047 VERS_1.0 _ZN6tflite22SequentialTensorWriterINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEED2Ev
00000000005f72a0 w DF .text 000000000000008b VERS_1.0 _ZNSt10_HashtableIiSt4pairIKiN6tflite16ResourceVariableEESaIS4_ENSt8__detail10_Select1stESt8equal_toIiESt4hashIiENS6_18_Mod_range_hashingENS6_20_Default_ranged_hashENS6_20_Prime_rehash_policyENS6_17_Hashtable_traitsILb0ELb0ELb1EEEED2Ev
00000000005acb00 w DF .text 00000000000003ed VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIiiEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005a1880 w DF .text 00000000000002fe VERS_1.0 _ZN6tflite13optimized_ops5SliceIaEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
00000000005672f0 g DF .text 00000000000016fe VERS_1.0 _ZN6tflite3ops6custom4mfcc4InitEP13TfLiteContextPKcm
00000000007446e0 g DF .text 0000000000000130 VERS_1.0 _ZN6tflite13DynamicBuffer15AddJoinedStringERKSt6vectorINS_9StringRefESaIS2_EEc
0000000000587b40 w DF .text 000000000000000b VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlaaE0_4_FUNEaa
00000000004be9e0 g DF .text 00000000000005b6 VERS_1.0 _ZN6tflite3ops7builtin11activations9Relu1EvalEP13TfLiteContextP10TfLiteNode
00000000005fd820 g DF .text 000000000000008f VERS_1.0 _ZN6tflite18InterpreterBuilderC2ERKNS_15FlatBufferModelERKNS_10OpResolverE
00000000005fd070 g DF .text 000000000000003b VERS_1.0 _ZN6tflite15FlatBufferModelC1EPKNS_5ModelEPNS_13ErrorReporterE
00000000005f71d0 g DF .text 0000000000000062 VERS_1.0 _ZN6tflite11Interpreter15GetBufferHandleEiPiPP14TfLiteDelegate
00000000005e7570 w DF .text 00000000000001cf VERS_1.0 _ZN6tflite8internal11Spectrogram25ComputeComplexSpectrogramIffEEbRKSt6vectorIT_SaIS4_EEPS3_IS3_ISt7complexIT0_ESaISB_EESaISD_EE
00000000005e1ba0 g DF .text 00000000000026aa VERS_1.0 _ZN6tflite3ops7builtin9lstm_eval10EvalHybridEPK12TfLiteTensorS5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_S5_PK16TfLiteLSTMParamsbbiPS3_S9_S9_S9_S9_S9_S9_S9_S9_S9_S9_
00000000004c8b90 w DF .text 0000000000000237 VERS_1.0 _ZN6tflite35NdArrayDescsForElementwiseBroadcastILi4EEEvRKNS_12RuntimeShapeES3_PNS_11NdArrayDescIXT_EEES6_
00000000005630c0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin20Register_MATRIX_DIAGEv
00000000004e7cd0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_LESSEv
0000000000588740 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin23Register_REDUCE_MAX_REFEv
0000000000533ba0 g DF .text 00000000000000c3 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess28ComputeIntersectionOverUnionEPK12TfLiteTensorii
00000000005057a0 w DF .text 000000000000052a VERS_1.0 _ZN6tflite3ops7builtin4conv10EvalHybridILNS2_10KernelTypeE3EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
000000000060d230 g DF .text 0000000000000025 VERS_1.0 _ZN6tflite8delegate5nnapi22SetWeightSubmatrixDimsEPK14TfLiteIntArrayPS2_S5_
00000000005f6de0 g DF .text 0000000000000011 VERS_1.0 _ZN6tflite11Interpreter10AddTensorsEiPi
0000000000587a70 w DF .text 0000000000000009 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUliiE_4_FUNEii
000000000055c550 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin32Register_LOCAL_RESPONSE_NORM_REFEv
00000000004bc4d0 w DF .text 0000000000000033 VERS_1.0 _ZN6tflite3ops7builtin17BuiltinOpResolverD2Ev
0000000000550ac0 w DF .text 0000000000000149 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005ef1c0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils20VectorScalarMultiplyEPKaifPf
0000000000576f60 w DF .text 0000000000000418 VERS_1.0 _ZN6tflite13reference_ops7PadImplIiiEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
00000000005993a0 w DF .text 00000000000004c7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIslEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
000000000053d030 g DF .text 000000000000017a VERS_1.0 _ZN6tflite3ops7builtin16embedding_lookup7PrepareEP13TfLiteContextP10TfLiteNode
000000000057f2b0 w DF .text 0000000000000582 VERS_1.0 _ZN6tflite3ops7builtin7pooling25AverageEvalQuantizedUint8ILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
00000000005432c0 w DF .text 00000000000002d6 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected10CheckTypesEP13TfLiteContextPK12TfLiteTensorS7_S7_PS5_P26TfLiteFullyConnectedParams
00000000004ddf50 g DF .text 000000000000002f VERS_1.0 _ZN6tflite3ops7builtin3rnn4InitEP13TfLiteContextPKcm
00000000005d1e20 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin28unidirectional_sequence_lstm4FreeEP13TfLiteContextPv
0000000000535470 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin12Register_DIVEv
0000000000588d00 w DF .text 0000000000000077 VERS_1.0 _ZN6tflite3ops7builtin6reduce11EvalGenericILNS2_10KernelTypeE0ELNS2_10ReduceTypeE4EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000057dba0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin19Register_L2_POOL_2DEv
00000000007444b0 g DF .text 000000000000001e VERS_1.0 _ZN6tflite9GetStringEPKci
00000000005f6f10 g DF .text 0000000000000067 VERS_1.0 _ZN6tflite11Interpreter28SetTensorParametersReadWriteEi10TfLiteTypePKcmPKi24TfLiteQuantizationParamsb
00000000005d1150 w DF .text 0000000000000942 VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv9EvalFloatILNS2_10KernelTypeE1EEEvP13TfLiteContextPK25TfLiteTransposeConvParamsPKNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_SG_
00000000005ffbe0 w DF .text 0000000000000113 VERS_1.0 _ZNSt8__detail9_Map_baseISt4pairINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEiES1_IKS8_18TfLiteRegistrationESaISB_ENS_10_Select1stESt8equal_toIS8_EN6tflite18op_resolver_hasher17OperatorKeyHasherIS8_EENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixEOS8_
00000000007448a0 g DF .text 0000000000000054 VERS_1.0 _ZN6tflite27EqualArrayAndTfLiteIntArrayEPK14TfLiteIntArrayiPKi
0000000000587b80 g DF .text 000000000000003e VERS_1.0 _ZN6tflite3ops7builtin6reduce4InitEP13TfLiteContextPKcm
00000000006173c0 g DF .text 000000000000002b VERS_1.0 _ZN6tflite4flex9BufferMapD1Ev
00000000005a2780 w DF .text 0000000000000b45 VERS_1.0 _ZN6tflite3ops7builtin5slice4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005f6fa0 g DF .text 0000000000000015 VERS_1.0 _ZN6tflite11Interpreter8UseNNAPIEb
00000000005af510 w DF .text 00000000000003ed VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIhlEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000599d50 w DF .text 00000000000004d7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIilEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
0000000000535480 w DF .text 00000000000012da VERS_1.0 _ZN6tflite3ops7builtin3div13EvalQuantizedILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteDivParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
000000000056a020 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_MUL_REFEv
00000000004e28a0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin27bidirectional_sequence_lstm4FreeEP13TfLiteContextPv
00000000005f1a40 w DF .text 0000000000000016 VERS_1.0 _ZN6tflite15InterpreterInfo6tensorEm
00000000005f1b60 w DF .text 0000000000000006 VERS_1.0 _ZN6tflite15InterpreterInfoD2Ev
0000000000524840 w DF .text 0000000000000822 VERS_1.0 _ZN6tflite3ops7builtin4conv9EvalFloatILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
00000000006114a0 g DF .text 0000000000000530 VERS_1.0 _ZN6tflite4flex6kernel7PrepareEP13TfLiteContextP10TfLiteNode
0000000000573790 g DF .text 0000000000000198 VERS_1.0 _ZN6tflite3ops7builtin3neg4EvalEP13TfLiteContextP10TfLiteNode
00000000004dc2f0 g DF .text 000000000000000f VERS_1.0 _ZN6tflite3ops7builtin11arg_min_max10ArgMaxEvalEP13TfLiteContextP10TfLiteNode
0000000000502650 w DF .text 0000000000000012 VERS_1.0 _ZN6tflite3ops7builtin4conv7PrepareILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000060e900 w DF .text 0000000000000137 VERS_1.0 _ZNSt10_HashtableIPK13TfLiteContextSt4pairIKS2_N6tflite4flex9BufferMapEESaIS8_ENSt8__detail10_Select1stESt8equal_toIS2_ESt4hashIS2_ENSA_18_Mod_range_hashingENSA_20_Default_ranged_hashENSA_20_Prime_rehash_policyENSA_17_Hashtable_traitsILb0ELb0ELb1EEEE9_M_rehashEmRKm
00000000005e42e0 g DF .text 000000000000004b VERS_1.0 _ZN6tflite8internal4Mfcc10InitializeEid
0000000004b02c40 g DF .text 000000000000000a VERS_1.0 TfLiteFloatArrayFree
0000000000563850 w DF .text 000000000000000e VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MinimumOp2opIhEET_S5_S5_
00000000004d5170 g DF .text 000000000000017a VERS_1.0 _ZN6tflite3ops7builtin5add_n7PrepareEP13TfLiteContextP10TfLiteNode
00000000005f1ca0 g DF .text 000000000000018f VERS_1.0 _ZN6tflite8SubgraphD2Ev
00000000005462a0 w DF .text 00000000000002c3 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected21EvalShuffledQuantizedILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSG_SG_PSE_SH_
00000000004e4f30 g DF .text 000000000000002f VERS_1.0 _ZN6tflite3ops7builtin26bidirectional_sequence_rnn4InitEP13TfLiteContextPKcm
000000000061cbd0 g DF .text 00000000000000ba VERS_1.0 _ZN6tflite12IntegerFrExpEdPi
00000000004d0af0 w DF .text 00000000000000b3 VERS_1.0 _ZN6tflite3ops7builtin3add4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005f1e50 g DF .text 0000000000000024 VERS_1.0 _ZN6tflite8Subgraph18GetExternalContextE25TfLiteExternalContextType
0000000000573a10 g DF .text 00000000000000e0 VERS_1.0 _ZN6tflite3ops7builtin7one_hot18ResizeOutputTensorEP13TfLiteContextRKNS2_13OneHotContextE
00000000005f1260 g DF .text 000000000000006a VERS_1.0 _ZN6tflite12tensor_utils28PortableApplySigmoidToVectorEPKfiPf
0000000000550680 w DF .text 000000000000043e VERS_1.0 _ZN6tflite3ops7builtin15fully_connected13EvalQuantizedILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSG_SG_PSE_
00000000005ef0e0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils41SparseMatrixBatchVectorMultiplyAccumulateEPKaPKhiiS2_PKfiPfi
000000000053e090 g DF .text 0000000000000111 VERS_1.0 _ZN6tflite3ops7builtin11expand_dims7PrepareEP13TfLiteContextP10TfLiteNode
0000000000533600 g DF .text 0000000000000170 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess24DecreasingPartialArgSortEPKfiiPi
00000000004c8570 w DF .text 00000000000005dc VERS_1.0 _ZN6tflite13optimized_ops3AddERKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKiS6_S8_S6_Pi
00000000005fd6d0 g DF .text 0000000000000142 VERS_1.0 _ZN6tflite15FlatBufferModel13BuildFromFileEPKcPNS_13ErrorReporterE
00000000005f1bd0 w DF .text 0000000000000042 VERS_1.0 _ZN6tflite13ScopedProfileC1EPNS_8ProfilerEPKcNS1_9EventTypeEj
0000000004b02ca0 g DF .text 000000000000005b VERS_1.0 TfLiteQuantizationFree
00000000005f1540 g DF .text 000000000000007c VERS_1.0 _ZN6tflite12tensor_utils23PortableVectorShiftLeftEPfif
00000000005cb2e0 g DF .text 0000000000001a90 VERS_1.0 _ZN6tflite3ops7builtin7topk_v24EvalEP13TfLiteContextP10TfLiteNode
000000000056e6b0 w DF .text 00000000000023aa VERS_1.0 _ZN6tflite3ops7builtin3mul13EvalQuantizedILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteMulParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
0000000000550c10 w DF .text 000000000000043e VERS_1.0 _ZN6tflite3ops7builtin15fully_connected13EvalQuantizedILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSG_SG_PSE_
00000000005f1e90 g DF .text 0000000000000018 VERS_1.0 _ZN6tflite8Subgraph18SetExternalContextE25TfLiteExternalContextTypeP21TfLiteExternalContext
00000000004de390 g DF .text 000000000000005c VERS_1.0 _ZN6tflite3ops7builtin3rnn9EvalFloatEPK12TfLiteTensorS5_S5_S5_PK15TfLiteRNNParamsPS3_S9_
0000000000587ae0 w DF .text 0000000000000010 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlllE2_4_FUNEll
0000000000587a40 w DF .text 000000000000000a VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlffE0_4_FUNEff
00000000005a1e80 w DF .text 00000000000002fe VERS_1.0 _ZN6tflite13optimized_ops5SliceIhEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
0000000000578d10 w DF .text 000000000000075a VERS_1.0 _ZN6tflite13optimized_ops7PadImplIhhEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
0000000000596b20 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin36Register_RESIZE_NEAREST_NEIGHBOR_REFEv
00000000005cfc90 w DF .text 0000000000000432 VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv7PrepareILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000053cfb0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin12Register_ABSEv
0000000000601af0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi49EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005d9dd0 g DF .text 00000000000000d0 VERS_1.0 _ZN6tflite3ops7builtin10zeros_like7PrepareEP13TfLiteContextP10TfLiteNode
0000000000563200 g DF .text 0000000000000583 VERS_1.0 _ZN6tflite3ops7builtin15matrix_set_diag14FillDiagHelperEPK12TfLiteTensorS5_PS3_
0000000000526a10 w DF .text 0000000000000996 VERS_1.0 _ZN6tflite21optimized_integer_ops14depthwise_conv20DepthwiseConvGeneralERKNS_15DepthwiseParamsEPKiS6_RKNS_12RuntimeShapeEPKaS9_SB_S9_S6_S9_Paiii
000000000060d940 g DF .text 000000000000001f VERS_1.0 _ZN6tflite14MMAPAllocationD0Ev
0000000000587290 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin21Register_QUANTIZE_OPTEv
000000000060eef0 g DF .text 000000000000041d VERS_1.0 _ZN6tflite4flex8delegate20CopyFromBufferHandleEP13TfLiteContextP14TfLiteDelegateiP12TfLiteTensor
00000000005d5010 g DF .text 0000000000001dda VERS_1.0 _ZN6tflite3ops7builtin6unique4EvalEP13TfLiteContextP10TfLiteNode
00000000005e4330 g DF .text 00000000000000d8 VERS_1.0 _ZNK6tflite8internal4Mfcc7ComputeERKSt6vectorIdSaIdEEPS4_
0000000000588e60 w DF .text 000000000000000e VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlhhE1_clEhh
00000000005dce70 g DF .text 00000000000000e3 VERS_1.0 _ZN6tflite13eigen_support21IncrementUsageCounterEP13TfLiteContext
00000000005f18f0 g DF .text 000000000000011f VERS_1.0 _ZN6tflite12tensor_utils31PortableSymmetricQuantizeFloatsEPKfiPaPfS4_S4_
00000000005d0570 w DF .text 00000000000008ad VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv9EvalFloatILNS2_10KernelTypeE0EEEvP13TfLiteContextPK25TfLiteTransposeConvParamsPKNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_SG_
00000000004de3f0 g DF .text 000000000000007f VERS_1.0 _ZN6tflite3ops7builtin3rnn10EvalHybridEPK12TfLiteTensorS5_S5_S5_PK15TfLiteRNNParamsPS3_S9_S9_S9_S9_
00000000005511b0 g DF .text 000000000000025b VERS_1.0 _ZN6tflite3ops7builtin6gather7PrepareEP13TfLiteContextP10TfLiteNode
00000000004c1c30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin23Register_HARD_SWISH_REFEv
0000000000527c80 w DF .text 0000000000000a3b VERS_1.0 _ZN6tflite13optimized_ops14depthwise_conv20DepthwiseConvGeneralERKNS_15DepthwiseParamsERKNS_12RuntimeShapeEPKhS7_S9_S7_PKiS7_Phiii
000000000053cff0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_SQRTEv
0000000000612ba0 w DF .text 0000000000000596 VERS_1.0 _ZNSt6vectorISt10unique_ptrIN6tflite4flex6kernel6OpNodeESt14default_deleteIS4_EESaIS7_EE17_M_realloc_insertIJPS4_EEEvN9__gnu_cxx17__normal_iteratorIPS7_S9_EEDpOT_
0000000000600e10 g DF .text 0000000000000111 VERS_1.0 _ZN6tflite12ArenaPlanner18ExecuteAllocationsEii
00000000004bc620 g DF .text 000000000000003e VERS_1.0 _ZN6tflite3ops7builtin11activations4InitEP13TfLiteContextPKcm
00000000005a08e0 w DF .text 0000000000000331 VERS_1.0 _ZN6tflite13reference_ops5SliceIfEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
00000000005e58b0 g DF .text 00000000000000fc VERS_1.0 _ZN6tflite8internal11Spectrogram10InitializeEii
00000000004d5d90 w DF .text 0000000000000540 VERS_1.0 _ZN6tflite3ops7builtin5add_n8EvalAddNIfEEvP13TfLiteContextP10TfLiteNode
0000000005a10100 w DO .data.rel.ro 0000000000000010 VERS_1.0 _ZTIN6tflite28TfLiteInternalBackendContextE
0000000000576f40 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin26Register_PADV2_GENERIC_OPTEv
00000000006173c0 g DF .text 000000000000002b VERS_1.0 _ZN6tflite4flex9BufferMapD2Ev
00000000005fd8b0 g DF .text 0000000000000082 VERS_1.0 _ZN6tflite18InterpreterBuilderC2EPKNS_5ModelERKNS_10OpResolverEPNS_13ErrorReporterE
0000000004b02f10 g DF .text 0000000000000038 VERS_1.0 TfLiteDelegateCreate
0000000000601a80 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi28EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000562b10 g DF .text 0000000000000135 VERS_1.0 _ZN6tflite3ops7builtin11matrix_diag7PrepareEP13TfLiteContextP10TfLiteNode
000000000058d790 w DF .text 00000000000000ff VERS_1.0 _ZN6tflite3ops7builtin6reduce11EvalGenericILNS2_10KernelTypeE0ELNS2_10ReduceTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000543b10 g DF .text 00000000000001db VERS_1.0 _ZN6tflite3ops7builtin15fully_connected10EvalHybridEP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSD_SD_PSB_SE_SE_
0000000000601b30 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi86EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000588730 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_REDUCE_PROD_REFEv
0000000000601c10 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi59EEEiRKNS1_18NNAPIOpMappingArgsE
00000000004bc780 g DF .text 00000000000000ef VERS_1.0 _ZN6tflite3ops7builtin11activations14GenericPrepareEP13TfLiteContextP10TfLiteNode
000000000053efb0 w DF .text 000000000000039f VERS_1.0 _ZN6tflite3ops7builtin5floor4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000503500 w DF .text 00000000000009c6 VERS_1.0 _ZN6tflite3ops7builtin4conv13EvalQuantizedILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_SE_
0000000000572c50 w DF .text 0000000000000a71 VERS_1.0 _ZN6tflite3ops7builtin3mul7EvalMulILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteMulParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
0000000000526700 w DF .text 000000000000020b VERS_1.0 _ZN6tflite3ops7builtin4conv4EvalILNS2_10KernelTypeE3EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004e7cb0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_GREATEREv
00000000005f6e60 g DF .text 0000000000000033 VERS_1.0 _ZN6tflite11Interpreter28SetTensorParametersReadWriteEi10TfLiteTypePKcRKSt6vectorIiSaIiEE18TfLiteQuantizationb
00000000004bb550 g DF .text 0000000000000f7d VERS_1.0 _ZN6tflite3ops7builtin17BuiltinOpResolverC1Ev
000000000056a050 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin12Register_MULEv
00000000004f76c0 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIaED1Ev
00000000005ef1e0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils15VectorShiftLeftEPfif
000000000057dbb0 w DF .text 0000000000000085 VERS_1.0 _ZN6tflite13optimized_ops28MapAsMatrixWithLastDimAsRowsIKfEENSt11conditionalIXsrSt8is_constIT_E5valueEN5Eigen3MapIKNS7_6MatrixINSt12remove_constIS5_E4typeELin1ELin1ELi0ELin1ELin1EEELi0ENS7_6StrideILi0ELi0EEEEENS8_INS9_IS5_Lin1ELin1ELi0ELin1ELin1EEELi0ESG_EEE4typeEPS5_RKNS_12RuntimeShapeE
0000000000542d70 w DF .text 0000000000000502 VERS_1.0 _ZN6tflite13optimized_ops32ShuffledFullyConnectedWorkerImplEPKhPKaiiiiPKiiiPs
00000000005b24b0 g DF .text 0000000000000188 VERS_1.0 _ZN6tflite3ops7builtin7split_v7PrepareEP13TfLiteContextP10TfLiteNode
00000000005e7ca0 w DF .text 000000000000075f VERS_1.0 _ZN6tflite8internal11Spectrogram22GetNextWindowOfSamplesIdEEbRKSt6vectorIT_SaIS4_EEPi
00000000005fc370 w DF .text 000000000000099c VERS_1.0 _ZNK6tflite5Model6VerifyERN11flatbuffers8VerifierE
0000000000744960 g DF .text 0000000000000079 VERS_1.0 _ZN6tflite13GetSizeOfTypeEP13TfLiteContext10TfLiteTypePm
00000000005a4130 g DF .text 0000000000000162 VERS_1.0 _ZN6tflite3ops7builtin17space_to_batch_nd18ResizeOutputTensorEP13TfLiteContextPNS2_21SpaceToBatchNDContextE
0000000000555cc0 w DF .text 0000000000000512 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIaiEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
00000000004bf880 w DF .text 00000000000008da VERS_1.0 _ZN6tflite3ops7builtin11activations13HardSwishEvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000601970 g DF .text 000000000000000b VERS_1.0 _ZN6tflite21StatefulNnApiDelegate20DoCopyToBufferHandleEP13TfLiteContextP14TfLiteDelegateiP12TfLiteTensor
0000000000600090 g DF .text 0000000000000049 VERS_1.0 _ZN6tflite14PrintIntVectorERKSt6vectorIiSaIiEE
00000000005f1a80 w DF .text 000000000000002a VERS_1.0 _ZNK6tflite15InterpreterInfo4nodeEm
00000000005ef090 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils12IsZeroVectorEPKfi
0000000000555260 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18Register_GATHER_NDEv
00000000005ff220 g DF .text 000000000000000f VERS_1.0 _ZN6tflite18InterpreterBuilderclEPSt10unique_ptrINS_11InterpreterESt14default_deleteIS2_EE
00000000005cee40 g DF .text 00000000000002a6 VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv18ResizeCol2ImTensorEP13TfLiteContextPK12TfLiteTensorS7_S7_PS5_
00000000005ced70 g DF .text 00000000000000c7 VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv12ResizeTensorEP13TfLiteContextPK12TfLiteTensorPS5_
00000000005a9d50 w DF .text 00000000000013fa VERS_1.0 _ZN6tflite3ops7builtin14space_to_depth4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000006112a0 w DF .text 00000000000000de VERS_1.0 _ZNSt8_Rb_treeIiSt4pairIKiN6tflite4flex6kernel12TensorSourceEESt10_Select1stIS6_ESt4lessIiESaIS6_EE29_M_get_insert_hint_unique_posESt23_Rb_tree_const_iteratorIS6_ERS1_
0000000000599870 w DF .text 00000000000004d7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIiiEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
00000000005878d0 g DF .text 000000000000008f VERS_1.0 _ZN6tflite3ops7builtin4rank4EvalEP13TfLiteContextP10TfLiteNode
0000000000556c40 w DF .text 0000000000000512 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIflEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
00000000005f7a30 w DF .text 000000000000020e VERS_1.0 _ZNSt6vectorISt10unique_ptrI14TfLiteDelegatePFvPS1_EESaIS5_EE17_M_realloc_insertIJS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
00000000005b5810 g DF .text 000000000000008f VERS_1.0 _ZN6tflite3ops7builtin18squared_difference4EvalEP13TfLiteContextP10TfLiteNode
00000000004f7f40 w DF .text 000000000000028c VERS_1.0 _ZN6tflite15VectorOfTensorsIaEC1ERK13TfLiteContextRK14TfLiteIntArray
00000000005ba3a0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin12Register_SUBEv
0000000000588e80 w DF .text 0000000000000009 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlaaE_clEaa
00000000005f6890 g DF .text 00000000000000f3 VERS_1.0 _ZN6tflite11Interpreter9SetInputsESt6vectorIiSaIiEE
000000000061c4a0 g DF .text 000000000000009a VERS_1.0 _ZN6tflite32GetQuantizedConvolutionMultiplerEP13TfLiteContextPK12TfLiteTensorS4_S4_PS2_Pd
00000000004bcc60 g DF .text 0000000000000188 VERS_1.0 _ZN6tflite3ops7builtin11activations12PreluPrepareEP13TfLiteContextP10TfLiteNode
0000000000576f00 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_PAD_REFEv
00000000005f1020 g DF .text 0000000000000076 VERS_1.0 _ZN6tflite12tensor_utils40PortableBatchVectorBatchVectorDotProductEPKfS2_iiPfi
0000000000574120 w DF .text 0000000000000163 VERS_1.0 _ZN6tflite3ops7builtin7one_hot17OneHotComputeImplIilEEvRKNS2_13OneHotContextE
000000000059f410 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_SLICEEv
00000000004be4e0 g DF .text 00000000000004fb VERS_1.0 _ZN6tflite3ops7builtin11activations13LeakyReluEvalEP13TfLiteContextP10TfLiteNode
00000000005656d0 w DF .text 000000000000048b VERS_1.0 _ZN6tflite13reference_ops29MaximumMinimumBroadcast4DSlowIiPFiiiEEEvRKNS_12RuntimeShapeEPKT_S6_S9_S6_PS7_T0_
00000000004e4f60 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin26bidirectional_sequence_rnn4FreeEP13TfLiteContextPv
00000000005e5310 g DF .text 0000000000000123 VERS_1.0 _ZN6tflite8internal11Spectrogram14ProcessCoreFFTEv
00000000005c67b0 w DF .text 00000000000000ab VERS_1.0 _ZN6tflite3ops7builtin3sub4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000057db50 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin33Register_AVERAGE_POOL_GENERIC_OPTEv
000000000059ed50 w DF .text 0000000000000145 VERS_1.0 _ZNSt6vectorIN6tflite9StringRefESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_
00000000004c1bf0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin20Register_LOG_SOFTMAXEv
000000000055b730 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin25Register_L2_NORMALIZATIONEv
0000000000564ac0 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIhNS2_9MinimumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
00000000004f7770 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin34Register_CONCATENATION_GENERIC_OPTEv
00000000005f1a60 w DF .text 000000000000001c VERS_1.0 _ZNK6tflite15InterpreterInfo9num_nodesEv
000000000060d8e0 g DF .text 000000000000005f VERS_1.0 _ZN6tflite14MMAPAllocationD1Ev
0000000000586460 g DF .text 000000000000000f VERS_1.0 _ZN6tflite3ops7builtin8quantize4InitEP13TfLiteContextPKcm
000000000055bc70 w DF .text 00000000000006c7 VERS_1.0 _ZN6tflite13optimized_ops26LocalResponseNormalizationERKNS_32LocalResponseNormalizationParamsERKNS_12RuntimeShapeEPKfS6_Pf
000000000056a030 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_MUL_GENERIC_OPTEv
00000000005f1e80 g DF .text 000000000000000e VERS_1.0 _ZN6tflite8Subgraph18GetExternalContextEP13TfLiteContext25TfLiteExternalContextType
0000000000577f80 w DF .text 00000000000004b2 VERS_1.0 _ZN6tflite13optimized_ops19PadImageStyleMemsetIffEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
00000000005f2110 g DF .text 000000000000008a VERS_1.0 _ZN6tflite8Subgraph12ReportErrorCEP13TfLiteContextPKcz
00000000005d9dc0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom14Register_WHILEEv
000000000057ed10 w DF .text 0000000000000591 VERS_1.0 _ZN6tflite3ops7builtin7pooling16AverageEvalFloatILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
00000000005f7700 g DF .text 00000000000000e2 VERS_1.0 _ZN6tflite11Interpreter12AddSubgraphsEiPi
00000000005f3920 g DF .text 00000000000002b9 VERS_1.0 _ZN6tflite8Subgraph21AddNodeWithParametersERKSt6vectorIiSaIiEES5_S5_PKcmPvPK18TfLiteRegistrationPi
00000000005773b0 w DF .text 000000000000079d VERS_1.0 _ZN6tflite13optimized_ops7PadImplIiiEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
0000000000535440 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_DIV_REFEv
000000000061cf60 g DF .text 00000000000000aa VERS_1.0 _ZN6tflite20CalculateInputRadiusEii
00000000005d9f70 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin19Register_ZEROS_LIKEEv
00000000004ffb10 w DF .text 0000000000000513 VERS_1.0 _ZN6tflite13optimized_ops6Im2colIaEEvRKNS_10ConvParamsEiihRKNS_12RuntimeShapeEPKT_S7_PS8_
0000000000606580 w DF .text 000000000000015c VERS_1.0 _ZN6tflite8delegate5nnapi14NNAPIOpBuilder25AddNewInputConstantTensorIhEE12TfLiteStatusi10TfLiteTypePK14TfLiteIntArrayRKSt6vectorIT_SaISA_EERK24TfLiteQuantizationParamsPi
00000000005f6c50 g DF .text 0000000000000011 VERS_1.0 _ZN6tflite11Interpreter17ResizeInputTensorEiRKSt6vectorIiSaIiEE
000000000060d8c0 g DF .text 000000000000000a VERS_1.0 _ZNK6tflite14MMAPAllocation5bytesEv
00000000005cfa60 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin26Register_TRANSPOSECONV_REFEv
000000000059ba30 g DF .text 0000000000000251 VERS_1.0 _ZN6tflite3ops7builtin5round4EvalEP13TfLiteContextP10TfLiteNode
000000000053de10 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_EXP_REFEv
00000000005ef1f0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils18ReductionSumVectorEPKfPfii
00000000005ccec0 g DF .text 000000000000011c VERS_1.0 _ZN6tflite3ops7builtin9transpose7PrepareEP13TfLiteContextP10TfLiteNode
000000000055efb0 g DF .text 0000000000000029 VERS_1.0 _ZN6tflite3ops7builtin4lstm5basic4InitEP13TfLiteContextPKcm
0000000000533e50 g DF .text 00000000000003b6 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess34NonMaxSuppressionSingleClassHelperEP13TfLiteContextP10TfLiteNodePNS2_6OpDataERKSt6vectorIfSaIfEEPS9_IiSaIiEEi
00000000005fe830 w DF .text 000000000000013d VERS_1.0 _ZNSt6vectorIPK18TfLiteRegistrationSaIS2_EE17_M_realloc_insertIJRKS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
0000000000587b20 w DF .text 000000000000000e VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlhhE2_4_FUNEhh
00000000005f6c70 g DF .text 0000000000000161 VERS_1.0 _ZN6tflite11Interpreter6InvokeEv
00000000005f1610 g DF .text 00000000000001e4 VERS_1.0 _ZN6tflite12tensor_utils31PortableMeanStddevNormalizationEPKfPfiif
0000000000539e70 w DF .text 0000000000000a71 VERS_1.0 _ZN6tflite3ops7builtin3div7EvalDivILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteDivParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000004d8550 w DF .text 0000000000000347 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIiliSt8functionIFbiiEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
000000000061ce10 g DF .text 000000000000009f VERS_1.0 _ZN6tflite20IntegerDoubleCompareEdd
00000000005f6fc0 g DF .text 0000000000000064 VERS_1.0 _ZN6tflite11Interpreter13SetNumThreadsEi
0000000000597b80 w DF .text 00000000000004d7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIfiEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
0000000000601a30 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi8EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005a6600 w DF .text 0000000000002215 VERS_1.0 _ZN6tflite3ops7builtin17space_to_batch_nd4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000568a40 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin10mirror_pad4FreeEP13TfLiteContextPv
000000000061cc90 g DF .text 00000000000000f1 VERS_1.0 _ZN6tflite26DoubleFromFractionAndShiftEli
0000000000543d00 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin36Register_FULLY_CONNECTED_GENERIC_OPTEv
00000000004c6220 w DF .text 00000000000003f5 VERS_1.0 _ZN6tflite3ops7builtin11activations11SigmoidEvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004c8dd0 w DF .text 00000000000012fd VERS_1.0 _ZN6tflite3ops7builtin3add7EvalAddILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteAddParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000004bb550 g DF .text 0000000000000f7d VERS_1.0 _ZN6tflite3ops7builtin17BuiltinOpResolverC2Ev
00000000005ff4d0 g DF .text 0000000000000121 VERS_1.0 _ZNK6tflite17MutableOpResolver6FindOpEPKci
0000000000588ea0 w DF .text 000000000000000e VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlaaE1_clEaa
00000000004f76c0 w DF .text 0000000000000093 VERS_1.0 _ZN6tflite15VectorOfTensorsIaED2Ev
00000000005e4250 g DF .text 000000000000008c VERS_1.0 _ZN6tflite8internal4MfccC1Ev
00000000004d5840 w DF .text 000000000000036d VERS_1.0 _ZNSt6vectorIN6tflite12RuntimeShapeESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_
00000000005f2850 g DF .text 00000000000001ba VERS_1.0 _ZN6tflite8Subgraph28SetTensorParametersReadWriteEi10TfLiteTypePKcmPKi18TfLiteQuantizationb
00000000004f78d0 w DF .text 00000000000000bb VERS_1.0 _ZN6tflite24VectorOfQuantizedTensorsD1Ev
0000000000744840 g DF .text 0000000000000036 VERS_1.0 _ZN6tflite28ConvertArrayToTfLiteIntArrayEiPKi
000000000060da70 g DF .text 000000000000015b VERS_1.0 _ZN6tflite17SimpleMemoryArena8AllocateEP13TfLiteContextmmPNS_10ArenaAllocE
00000000005ccfe0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin22Register_TRANSPOSE_REFEv
0000000000588e10 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlllE0_clEll
00000000005f2350 g DF .text 00000000000000a5 VERS_1.0 _ZN6tflite8Subgraph10SetOutputsESt6vectorIiSaIiEE
00000000004c1b60 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_RELUEv
000000000052d2d0 w DF .text 0000000000000a20 VERS_1.0 _ZN6tflite13optimized_ops13DepthwiseConvIhiEEvRKNS_15DepthwiseParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PKT0_S7_PS8_PNS_17CpuBackendContextE
0000000000526320 w DF .text 00000000000003d7 VERS_1.0 _ZN6tflite3ops7builtin4conv23EvalQuantizedPerChannelILNS2_10KernelTypeE3EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_
0000000000617190 g DF .text 000000000000004c VERS_1.0 _ZN6tflite4flex9BufferMapC1Ev
0000000000601b40 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi85EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005e8400 w DF .text 00000000000001cf VERS_1.0 _ZN6tflite8internal11Spectrogram25ComputeComplexSpectrogramIdfEEbRKSt6vectorIT_SaIS4_EEPS3_IS3_ISt7complexIT0_ESaISB_EESaISD_EE
00000000004d6410 w DF .text 0000000000000530 VERS_1.0 _ZN6tflite3ops7builtin5add_n8EvalAddNIiEEvP13TfLiteContextP10TfLiteNode
00000000004bc770 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin11activations11SoftmaxFreeEP13TfLiteContextPv
00000000004bca50 g DF .text 0000000000000203 VERS_1.0 _ZN6tflite3ops7builtin11activations17LogSoftmaxPrepareEP13TfLiteContextP10TfLiteNode
000000000053f350 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18Register_FLOOR_REFEv
0000000000601c00 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi58EEEiRKNS1_18NNAPIOpMappingArgsE
000000000052b770 w DF .text 000000000000040a VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv23EvalQuantizedPerChannelILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
00000000004dc300 g DF .text 00000000000000b1 VERS_1.0 _ZN6tflite3ops6custom17audio_spectrogram4FreeEP13TfLiteContextPv
00000000005fd5b0 g DF .text 000000000000011d VERS_1.0 _ZN6tflite15FlatBufferModel24VerifyAndBuildFromBufferEPKcmPNS_14TfLiteVerifierEPNS_13ErrorReporterE
0000000000601b00 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi60EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f1f40 g DF .text 0000000000000014 VERS_1.0 _ZN6tflite8Subgraph23SetCancellationFunctionEPvPFbS1_E
00000000005b1e30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_SPLIT_VEv
0000000000601ab0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi33EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005749d0 g DF .text 0000000000000189 VERS_1.0 _ZN6tflite3ops7builtin7one_hot4EvalEP13TfLiteContextP10TfLiteNode
0000000000577380 w DF .text 000000000000002a VERS_1.0 _ZN6tflite13optimized_ops11TypedMemsetIiEEvPvT_m
000000000055f920 w DF .text 0000000000001b6b VERS_1.0 _ZN6tflite13optimized_ops8LstmCellERKNS_14LstmCellParamsERKNS_12RuntimeShapeEPKfS6_S8_S6_S8_S6_S8_S6_S8_S6_PfS6_S9_S6_S9_S6_S9_PNS_17CpuBackendContextE
0000000000601bc0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi89EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000588ce0 g DF .text 000000000000001f VERS_1.0 _ZN6tflite3ops7builtin6reduce8EvalTypeIbEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeE
000000000060e760 g DF .text 0000000000000098 VERS_1.0 _ZN6tflite12FlexDelegate6CreateEv
000000000060d8e0 g DF .text 000000000000005f VERS_1.0 _ZN6tflite14MMAPAllocationD2Ev
00000000006066e0 w DF .text 00000000000007d5 VERS_1.0 _ZN6tflite8delegate5nnapi14NNAPIOpBuilder9AddTensorEibPSt6vectorIjSaIjEEi
0000000000558d90 g DF .text 00000000000003fd VERS_1.0 _ZN6tflite3ops6custom9if_kernel4EvalEP13TfLiteContextP10TfLiteNode
00000000005a05f0 w DF .text 00000000000002ef VERS_1.0 _ZN6tflite13optimized_ops5SliceIfEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
00000000005f7330 g DF .text 00000000000000cb VERS_1.0 _ZN6tflite11InterpreterD1Ev
000000000055d240 g DF .text 0000000000000117 VERS_1.0 _ZN6tflite3ops7builtin14lsh_projection14RunningSignBitEPK12TfLiteTensorS5_f
00000000005f2b50 g DF .text 0000000000000027 VERS_1.0 _ZN6tflite8Subgraph23SwitchToDelegateContextEv
000000000058e700 g DF .text 00000000000000a2 VERS_1.0 _ZN6tflite3ops7builtin7reshape14GetOutputShapeEP13TfLiteContextP10TfLiteNode
0000000000573e40 w DF .text 000000000000016d VERS_1.0 _ZN6tflite3ops7builtin7one_hot17OneHotComputeImplIflEEvRKNS2_13OneHotContextE
0000000000588340 g DF .text 00000000000001c5 VERS_1.0 _ZN6tflite3ops7builtin6reduce13PrepareSimpleEP13TfLiteContextP10TfLiteNode
00000000004d6e90 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_ARG_MINEv
00000000005f5b20 g DF .text 0000000000000c68 VERS_1.0 _ZN6tflite40PartitionGraphIntoIndependentNodeSubsetsEPKNS_9GraphInfoEPK14TfLiteIntArrayPSt6vectorINS_10NodeSubsetESaIS7_EE
00000000005e8b30 g DF .text 0000000000000319 VERS_1.0 _ZN6tflite12kernel_utils12RnnBatchStepEPKfS2_S2_S2_S2_S2_iiiii21TfLiteFusedActivationPfS4_
000000000053f360 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_FLOOREv
0000000000601ad0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi37EEEiRKNS1_18NNAPIOpMappingArgsE
0000000004b02c50 g DF .text 0000000000000045 VERS_1.0 TfLiteTensorDataFree
00000000005ff820 w DF .text 00000000000000bf VERS_1.0 _ZNSt8__detail9_Map_baseISt4pairIN6tflite15BuiltinOperatorEiES1_IKS4_18TfLiteRegistrationESaIS7_ENS_10_Select1stESt8equal_toIS4_ENS2_18op_resolver_hasher17OperatorKeyHasherIS4_EENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb1EEixERS5_
0000000000576f30 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18Register_PADV2_REFEv
0000000000543280 w DF .text 000000000000003a VERS_1.0 _ZN6tflite13optimized_ops32ShuffledFullyConnectedWorkerTask3RunEv
0000000004b02c00 g DF .text 000000000000000d VERS_1.0 TfLiteFloatArrayGetSizeInBytes
00000000005fe630 g DF .text 000000000000009d VERS_1.0 _ZN6tflite18InterpreterBuilder14ApplyDelegatesEPNS_11InterpreterE
00000000005afa80 g DF .text 0000000000000050 VERS_1.0 _ZN6tflite3ops7builtin5split23UseDynamicOutputTensorsEP13TfLiteContextP10TfLiteNode
000000000052f0d0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess4FreeEP13TfLiteContextPv
00000000004ddf90 g DF .text 00000000000003f1 VERS_1.0 _ZN6tflite3ops7builtin3rnn7PrepareEP13TfLiteContextP10TfLiteNode
00000000005b4f30 w DF .text 00000000000008de VERS_1.0 _ZN6tflite3ops7builtin18squared_difference21EvalSquaredDifferenceIiEEvP13TfLiteContextP10TfLiteNodePKNS2_6OpDataEPK12TfLiteTensorSD_PSB_
00000000005a0320 g DF .text 0000000000000216 VERS_1.0 _ZN6tflite3ops7builtin5slice7PrepareEP13TfLiteContextP10TfLiteNode
00000000005398a0 w DF .text 00000000000005c4 VERS_1.0 _ZN6tflite13reference_ops18BroadcastDiv4DSlowIfEEvRKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PS8_
00000000006043f0 g DF .text 00000000000001e7 VERS_1.0 _ZN6tflite21StatefulNnApiDelegateC1ENS0_7OptionsE
0000000000586470 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin8quantize4FreeEP13TfLiteContextPv
00000000004c1be0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_LOG_SOFTMAX_REFEv
0000000000543d10 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin28Register_FULLY_CONNECTED_PIEEv
000000000055f3c0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_LSTMEv
00000000005ab170 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin23Register_SPACE_TO_DEPTHEv
000000000061ceb0 g DF .text 0000000000000041 VERS_1.0 _ZN6tflite24PreprocessSoftmaxScalingEddiPiS0_
000000000058ed40 w DF .text 00000000000016a0 VERS_1.0 _ZN6tflite3ops7builtin15resize_bilinear4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000569dd0 g DF .text 00000000000001cc VERS_1.0 _ZN6tflite3ops7builtin3mul7PrepareEP13TfLiteContextP10TfLiteNode
0000000000605e60 w DF .text 00000000000000b5 VERS_1.0 _ZN6tflite8delegate5nnapi14NNAPIOpBuilder16AddScalarOperandIiEE12TfLiteStatusT_i
000000000061d010 g DF .text 00000000000000ab VERS_1.0 _ZN6tflite22NudgeQuantizationRangeEffiiPfS0_S0_
0000000000545250 w DF .text 0000000000000149 VERS_1.0 _ZN6tflite3ops7builtin15fully_connected4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000744630 g DF .text 0000000000000088 VERS_1.0 _ZN6tflite13DynamicBuffer9AddStringEPKcm
00000000005e4250 g DF .text 000000000000008c VERS_1.0 _ZN6tflite8internal4MfccC2Ev
000000000059f500 w DF .text 00000000000000e2 VERS_1.0 _ZN6tflite3ops7builtin5slice22GetBeginAndSizeVectorsIiEEviPK12TfLiteTensorS6_PSt6vectorIiSaIiEESA_
00000000005f7400 w DF .text 000000000000012a VERS_1.0 _ZNSt6vectorISt10unique_ptrIN6tflite8SubgraphESt14default_deleteIS2_EESaIS5_EE7reserveEm
0000000004b02dd0 g DF .text 000000000000005e VERS_1.0 TfLiteTensorRealloc
0000000000600050 w DF .text 000000000000003b VERS_1.0 _ZN6tflite17MutableOpResolverD0Ev
0000000000572b90 w DF .text 00000000000000b6 VERS_1.0 _ZN6tflite3ops7builtin3mul4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004c8b50 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_ADD_REFEv
00000000004f78d0 w DF .text 00000000000000bb VERS_1.0 _ZN6tflite24VectorOfQuantizedTensorsD2Ev
00000000005a8830 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin38Register_SPACE_TO_BATCH_ND_GENERIC_OPTEv
000000000060d880 g DF .text 0000000000000027 VERS_1.0 _ZN6tflite16MemoryAllocationC1EPKvmPNS_13ErrorReporterE
000000000058e4a0 w DF .text 0000000000000127 VERS_1.0 _ZN6tflite3ops7builtin6reduce11EvalGenericILNS2_10KernelTypeE0ELNS2_10ReduceTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000561490 w DF .text 0000000000000c72 VERS_1.0 _ZN6tflite13optimized_ops8LstmCellILi4EEEvRKNS_14LstmCellParamsERKNS_12RuntimeShapeEPKhS7_S9_S7_S9_S7_PKiS7_PKsS7_PsS7_PhS7_SF_S7_SE_PNS_17CpuBackendContextE
00000000004e33e0 g DF .text 0000000000000a9c VERS_1.0 _ZN6tflite3ops7builtin27bidirectional_sequence_lstm33CheckLstmTensorDimensionsAndTypesEP13TfLiteContextP10TfLiteNodeiiiiiiiiiiiiiiiiiiii
00000000005f12d0 g DF .text 000000000000014c VERS_1.0 _ZN6tflite12tensor_utils31PortableApplyActivationToVectorEPKfi21TfLiteFusedActivationPf
0000000000525d30 w DF .text 00000000000003d7 VERS_1.0 _ZN6tflite3ops7builtin4conv23EvalQuantizedPerChannelILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP16TfLiteConvParamsPNS2_6OpDataEP12TfLiteTensorSE_SE_SE_SE_
00000000005c6d10 g DF .text 00000000000003e5 VERS_1.0 _ZN6tflite3ops7builtin4svdf9EvalFloatEP13TfLiteContextP10TfLiteNodePK12TfLiteTensorS9_S9_S9_PK16TfLiteSVDFParamsPS7_SD_SD_
00000000005ae520 w DF .text 000000000000040f VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIflEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000061c410 g DF .text 000000000000002a VERS_1.0 _ZN6tflite25GuardedQuantizeMultiplierEdPiS0_
0000000000617190 g DF .text 000000000000004c VERS_1.0 _ZN6tflite4flex9BufferMapC2Ev
00000000005c7a20 g DF .text 0000000000000130 VERS_1.0 _ZN6tflite3ops7builtin4tile7PrepareEP13TfLiteContextP10TfLiteNode
000000000060b670 g DF .text 000000000000055c VERS_1.0 _ZN6tflite8delegate5nnapi19NNAPIDelegateKernel4InitEP13TfLiteContextPK20TfLiteDelegateParams
0000000000563890 g DF .text 0000000000000134 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum7PrepareEP13TfLiteContextP10TfLiteNode
0000000000563810 w DF .text 000000000000000e VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MaximumOp2opIaEET_S5_S5_
000000000052e6a0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin10dequantize4FreeEP13TfLiteContextPv
00000000005ff8e0 g DF .text 00000000000000c2 VERS_1.0 _ZN6tflite17MutableOpResolver10AddBuiltinENS_15BuiltinOperatorEPK18TfLiteRegistrationii
0000000000617d30 g DF .text 00000000000001af VERS_1.0 _ZN6tflite4flex9BufferMap17SetFromTensorFlowEiN10tensorflow6TensorE
00000000005ef170 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils20ApplySigmoidToVectorEPKfiPf
0000000000559940 w DF .text 0000000000000f2f VERS_1.0 _ZN6tflite3ops7builtin6l2norm4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005ef150 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils20VectorBatchVectorAddEPKfiiPf
000000000060e840 g DF .text 000000000000000e VERS_1.0 _ZN6tflite12FlexDelegateD1Ev
00000000005d89b0 w DF .text 0000000000000180 VERS_1.0 _ZN6tflite13reference_ops16SelectTrueCoordsIbiEEvRKNS_12RuntimeShapeEPKT_PT0_
00000000004e3e80 g DF .text 00000000000000ae VERS_1.0 _ZN6tflite3ops7builtin27bidirectional_sequence_lstm26CheckInputTensorDimensionsEP13TfLiteContextP10TfLiteNodeiii
00000000005798a0 w DF .text 0000000000000420 VERS_1.0 _ZN6tflite13reference_ops7PadImplIllEEvRKNS_9PadParamsERKNS_12RuntimeShapeEPKT_PKT0_S7_PS8_
0000000000568a00 g DF .text 0000000000000035 VERS_1.0 _ZN6tflite3ops7builtin10mirror_pad4InitEP13TfLiteContextPKcm
00000000005b44f0 g DF .text 0000000000000140 VERS_1.0 _ZN6tflite3ops7builtin18squared_difference7PrepareEP13TfLiteContextP10TfLiteNode
0000000000588da0 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlffE1_clEff
0000000000587ab0 w DF .text 000000000000000a VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlllE_4_FUNEll
000000000058eb10 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_RESHAPEEv
000000000060d610 g DF .text 000000000000000a VERS_1.0 _ZNK6tflite18FileCopyAllocation5bytesEv
00000000005f2010 g DF .text 00000000000000d4 VERS_1.0 _ZN6tflite8Subgraph20ResetVariableTensorsEv
00000000005e8e50 g DF .text 0000000000000031 VERS_1.0 _ZN6tflite12kernel_utils12RnnBatchStepEPKfS2_S2_S2_iiii21TfLiteFusedActivationPfS4_
00000000005f7330 g DF .text 00000000000000cb VERS_1.0 _ZN6tflite11InterpreterD2Ev
00000000005d4090 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin15Register_UNIQUEEv
00000000005ef1d0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils10ClipVectorEPKfifPf
0000000000593960 w DF .text 0000000000001116 VERS_1.0 _ZN6tflite3ops7builtin23resize_nearest_neighbor4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000052bf90 w DF .text 0000000000000a58 VERS_1.0 _ZN6tflite13optimized_ops13DepthwiseConvIffEEvRKNS_15DepthwiseParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PKT0_S7_PS8_PNS_17CpuBackendContextE
00000000005b5b40 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin22Register_STRIDED_SLICEEv
00000000005f3170 g DF .text 0000000000000014 VERS_1.0 _ZN6tflite8Subgraph12ReserveNodesEi
0000000000527400 w DF .text 0000000000000823 VERS_1.0 _ZN6tflite13optimized_ops17DepthwiseConvImplERKNS_15DepthwiseParamsERKNS_12RuntimeShapeEPKfS6_S8_S6_S8_S6_PfRKNS_8CpuFlagsEiii
00000000005ef0f0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils24VectorVectorCwiseProductEPKfS2_iPf
000000000052e6b0 g DF .text 000000000000011c VERS_1.0 _ZN6tflite3ops7builtin10dequantize7PrepareEP13TfLiteContextP10TfLiteNode
0000000000587be0 w DF .text 0000000000000224 VERS_1.0 _ZN6tflite13optimized_ops14MeanWorkerTask3RunEv
00000000005441b0 w DF .text 000000000000028c VERS_1.0 _ZN6tflite3ops7builtin15fully_connected21EvalShuffledQuantizedILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP26TfLiteFullyConnectedParamsPNS2_6OpDataEPK12TfLiteTensorSG_SG_PSE_SH_
0000000000580370 w DF .text 00000000000004df VERS_1.0 _ZN6tflite3ops7builtin7pooling21MaxEvalQuantizedUInt8ILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
00000000005cd000 w DF .text 0000000000000378 VERS_1.0 _ZN6tflite13reference_ops9TransposeIfEEvRKNS_15TransposeParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
00000000005ed0b0 g DF .text 00000000000009b6 VERS_1.0 _ZN6tflite16cpu_backend_gemm6detail18GemmImplUsingEigen3RunERKNS0_12MatrixParamsIfEEPKfS6_S8_S6_PfRKNS0_10GemmParamsIffLNS0_18QuantizationFlavorE0EEEPNS_17CpuBackendContextE
00000000005d3f40 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin36Register_UNIDIRECTIONAL_SEQUENCE_RNNEv
00000000005887d0 w DF .text 000000000000050c VERS_1.0 _ZN6tflite3ops7builtin6reduce9EvalLogicIbEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextET_PFSB_SB_SB_E
0000000000573af0 g DF .text 000000000000033d VERS_1.0 _ZN6tflite3ops7builtin7one_hot7PrepareEP13TfLiteContextP10TfLiteNode
0000000000566060 w DF .text 000000000000048d VERS_1.0 _ZN6tflite13reference_ops29MaximumMinimumBroadcast4DSlowIlPFlllEEEvRKNS_12RuntimeShapeEPKT_S6_S9_S6_PS7_T0_
000000000058be90 w DF .text 00000000000004fb VERS_1.0 _ZN6tflite3ops7builtin6reduce9EvalLogicIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextET_PFSB_SB_SB_E
0000000000601b50 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi88EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f6bd0 g DF .text 0000000000000079 VERS_1.0 _ZN6tflite11Interpreter21AddNodeWithParametersERKSt6vectorIiSaIiEES5_PKcmPvPK18TfLiteRegistrationPi
000000000060e4c0 g DF .text 0000000000000071 VERS_1.0 _ZN6tflite16ResourceVariableC1EOS0_
000000000060d6a0 g DF .text 000000000000001f VERS_1.0 _ZN6tflite16MemoryAllocationD0Ev
00000000005e6e70 w DF .text 00000000000006fc VERS_1.0 _ZN6tflite8internal11Spectrogram22GetNextWindowOfSamplesIfEEbRKSt6vectorIT_SaIS4_EEPi
00000000005b5a90 g DF .text 0000000000000084 VERS_1.0 _ZN6tflite3ops7builtin7squeeze4EvalEP13TfLiteContextP10TfLiteNode
000000000056a040 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin21Register_MUL_NEON_OPTEv
0000000000569d90 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin19Register_MIRROR_PADEv
00000000005b2050 w DF .text 000000000000020b VERS_1.0 _ZN6tflite3ops7builtin7split_v19GetSizeSplitsVectorIlEEvPK12TfLiteTensorPSt6vectorIlSaIlEE
0000000000537a40 w DF .text 00000000000012da VERS_1.0 _ZN6tflite3ops7builtin3div13EvalQuantizedILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteDivParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
0000000000587a10 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin13Register_RANKEv
00000000005639d0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin20Register_MAXIMUM_REFEv
0000000004b02bf0 g DF .text 000000000000000a VERS_1.0 TfLiteIntArrayFree
0000000000601bd0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi63EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000600010 w DF .text 0000000000000033 VERS_1.0 _ZN6tflite17MutableOpResolverD1Ev
0000000000533ce0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops6custom30Register_DETECTION_POSTPROCESSEv
000000000061c890 g DF .text 0000000000000022 VERS_1.0 _ZN6tflite28CalculateActivationRangeInt8E21TfLiteFusedActivationP12TfLiteTensorPiS3_
000000000053dfe0 g DF .text 00000000000000a9 VERS_1.0 _ZN6tflite3ops7builtin11expand_dims4EvalEP13TfLiteContextP10TfLiteNode
00000000004c7f00 w DF .text 0000000000000663 VERS_1.0 _ZN6tflite13reference_ops22ProcessBroadcastShapesERKNS_12RuntimeShapeES3_PNS_16ArithmeticParamsE
000000000060d6e0 g DF .text 0000000000000198 VERS_1.0 _ZN6tflite18FileCopyAllocationC2EPKcPNS_13ErrorReporterE
00000000005e7ae0 w DF .text 00000000000001bf VERS_1.0 _ZN6tflite8internal11Spectrogram34ComputeSquaredMagnitudeSpectrogramIfdEEbRKSt6vectorIT_SaIS4_EEPS3_IS3_IT0_SaIS9_EESaISB_EE
00000000004d5600 w DF .text 000000000000004a VERS_1.0 _ZNSt12_Destroy_auxILb0EE9__destroyIPN6tflite12RuntimeShapeEEEvT_S5_
0000000000600a30 g DF .text 0000000000000059 VERS_1.0 _ZN6tflite12ArenaPlanner27CalculateTensorDeallocationEi
0000000000600160 g DF .text 00000000000000d9 VERS_1.0 _ZN6tflite14TensorTypeNameE10TfLiteType
00000000005ef080 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils4ClipEff
00000000004ca0d0 w DF .text 0000000000002457 VERS_1.0 _ZN6tflite3ops7builtin3add16EvalAddQuantizedILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteAddParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
00000000004d6bb0 g DF .text 0000000000000099 VERS_1.0 _ZN6tflite3ops7builtin11arg_min_max12ResizeOutputEP13TfLiteContextPK12TfLiteTensorS7_PS5_
00000000005630d0 g DF .text 0000000000000125 VERS_1.0 _ZN6tflite3ops7builtin15matrix_set_diag7PrepareEP13TfLiteContextP10TfLiteNode
00000000005887a0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin19Register_REDUCE_MAXEv
00000000005f2230 g DF .text 0000000000000068 VERS_1.0 _ZN6tflite8Subgraph18CheckTensorIndicesEPKcPKii
000000000059f400 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18Register_SLICE_REFEv
0000000000601a10 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi11EEEiRKNS1_18NNAPIOpMappingArgsE
00000000004d7500 w DF .text 000000000000030b VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIaiiSt8functionIFbaaEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
0000000000601c60 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi67EEEiRKNS1_18NNAPIOpMappingArgsE
00000000006165a0 g DF .text 00000000000000bb VERS_1.0 _ZN6tflite4flex12DelegateDataD1Ev
0000000000589d40 w DF .text 0000000000002142 VERS_1.0 _ZN6tflite3ops7builtin6reduce8EvalMeanILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005f0fd0 g DF .text 0000000000000046 VERS_1.0 _ZN6tflite12tensor_utils30PortableVectorVectorDotProductEPKfS2_i
000000000060cd60 w DF .text 000000000000015d VERS_1.0 _ZNSt6vectorIN6tflite21StatefulNnApiDelegate18MemoryRegistrationESaIS2_EE17_M_realloc_insertIJS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
00000000005f0af0 g DF .text 0000000000000044 VERS_1.0 _ZN6tflite12tensor_utils20PortableIsZeroVectorEPKfi
00000000004e6bf0 w DF .text 0000000000000167 VERS_1.0 _ZN6tflite3ops7builtin4cast12copyToTensorIlEE12TfLiteStatusPKT_P12TfLiteTensori
00000000005fdee0 g DF .text 00000000000002e4 VERS_1.0 _ZN6tflite18InterpreterBuilder17ParseQuantizationEPKNS_22QuantizationParametersEP18TfLiteQuantizationRKSt6vectorIiSaIiEE
0000000000564130 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIfNS2_9MinimumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
00000000005a42a0 g DF .text 000000000000013e VERS_1.0 _ZN6tflite3ops7builtin17space_to_batch_nd7PrepareEP13TfLiteContextP10TfLiteNode
0000000000587aa0 w DF .text 000000000000000d VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIiEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUliiE2_4_FUNEii
0000000000581620 w DF .text 0000000000000692 VERS_1.0 _ZN6tflite3ops7builtin7pooling25AverageEvalQuantizedUint8ILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
00000000004bb410 g DF .text 000000000000000a VERS_1.0 _ZNK6tflite3ops7builtin17BuiltinOpResolver6FindOpENS_15BuiltinOperatorEi
000000000060e840 g DF .text 000000000000000e VERS_1.0 _ZN6tflite12FlexDelegateD2Ev
00000000005e56c0 g DF .text 00000000000001ea VERS_1.0 _ZN6tflite8internal11Spectrogram10InitializeERKSt6vectorIdSaIdEEi
0000000000601900 g DF .text 0000000000000067 VERS_1.0 _ZN6tflite21StatefulNnApiDelegate22DoCopyFromBufferHandleEP13TfLiteContextP14TfLiteDelegateiP12TfLiteTensor
0000000000533350 g DF .text 00000000000002ad VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess21DecodeCenterSizeBoxesEP13TfLiteContextP10TfLiteNodePNS2_6OpDataE
00000000005ffe50 g DF .text 00000000000001b4 VERS_1.0 _ZN6tflite17MutableOpResolver6AddAllERKS0_
00000000005f70a0 g DF .text 000000000000005d VERS_1.0 _ZN6tflite11Interpreter23ModifyGraphWithDelegateEP14TfLiteDelegate
000000000061d1d0 g DF .text 0000000000000052 VERS_1.0 _ZN6tflite23QuantizeMultiplierArrayEPKdmPiS2_
000000000055f5d0 w DF .text 0000000000000085 VERS_1.0 _ZN6tflite13optimized_ops27MapAsArrayWithLastDimAsRowsIfEENSt11conditionalIXsrSt8is_constIT_E5valueEN5Eigen3MapIKNS6_5ArrayINSt12remove_constIS4_E4typeELin1ELin1ELi0ELin1ELin1EEELi0ENS6_6StrideILi0ELi0EEEEENS7_INS8_IS4_Lin1ELin1ELi0ELin1ELin1EEELi0ESF_EEE4typeEPS4_RKNS_12RuntimeShapeE
00000000005ff600 w DF .text 0000000000000112 VERS_1.0 _ZNSt10_HashtableISt4pairIN6tflite15BuiltinOperatorEiES0_IKS3_18TfLiteRegistrationESaIS6_ENSt8__detail10_Select1stESt8equal_toIS3_ENS1_18op_resolver_hasher17OperatorKeyHasherIS3_EENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb1ELb0ELb1EEEE9_M_rehashEmRKm
00000000005c6860 g DF .text 0000000000000040 VERS_1.0 _ZN6tflite3ops7builtin4svdf4InitEP13TfLiteContextPKcm
0000000000613140 w DF .text 000000000000174d VERS_1.0 _ZN6tflite4flex6kernel6OpNode12BuildEagerOpEPN10tensorflow12EagerContextE
000000000060b1f0 g DF .text 000000000000047b VERS_1.0 _ZN6tflite8delegate5nnapi19NNAPIDelegateKernel10BuildGraphEP13TfLiteContextPK14TfLiteIntArrayS7_
0000000000593740 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin28Register_RESIZE_BILINEAR_REFEv
00000000004d88a0 w DF .text 0000000000000349 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIfilSt8functionIFbffEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
00000000005e4bb0 g DF .text 00000000000004e8 VERS_1.0 _ZN6tflite8internal17MfccMelFilterbank10InitializeEididd
000000000053a9a0 w DF .text 00000000000005c4 VERS_1.0 _ZN6tflite13optimized_ops18BroadcastDiv4DSlowIfEEvRKNS_16ArithmeticParamsERKNS_12RuntimeShapeEPKT_S7_SA_S7_PS8_
000000000059ed40 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18Register_SKIP_GRAMEv
0000000000600fc0 w DF .text 0000000000000155 VERS_1.0 _ZNSt6vectorIN6tflite14AllocationInfoESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_
000000000060d600 g DF .text 000000000000000a VERS_1.0 _ZNK6tflite18FileCopyAllocation4baseEv
0000000000588d80 w DF .text 000000000000000a VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIfEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlffE_clEff
0000000000576f20 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin12Register_PADEv
00000000005351b0 g DF .text 000000000000004a VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess4EvalEP13TfLiteContextP10TfLiteNode
0000000000579cc0 w DF .text 000000000000119f VERS_1.0 _ZN6tflite3ops7builtin3pad4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000540b10 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin18Register_FLOOR_MODEv
00000000005cb2d0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin16Register_TOPK_V2Ev
0000000000535200 g DF .text 0000000000000013 VERS_1.0 _ZN6tflite3ops7builtin3div4InitEP13TfLiteContextPKcm
0000000000536760 w DF .text 00000000000012da VERS_1.0 _ZN6tflite3ops7builtin3div13EvalQuantizedILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNodeP15TfLiteDivParamsPKNS2_6OpDataEPK12TfLiteTensorSH_PSF_
00000000004c7aa0 g DF .text 00000000000003d1 VERS_1.0 _ZN6tflite3ops7builtin3add7PrepareEP13TfLiteContextP10TfLiteNode
00000000005887c0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin19Register_REDUCE_ANYEv
00000000005f0ad0 g DF .text 000000000000001b VERS_1.0 _ZN6tflite12tensor_utils12PortableClipEff
0000000000500e90 w DF .text 0000000000000290 VERS_1.0 _ZN6tflite13optimized_ops4ConvERKNS_10ConvParamsERKNS_12RuntimeShapeEPKfS6_S8_S6_S8_S6_PfS6_S9_PNS_17CpuBackendContextE
00000000005f5300 w DF .text 000000000000047e VERS_1.0 _ZNSt6vectorIN6tflite10NodeSubsetESaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_
0000000000587960 g DF .text 00000000000000a9 VERS_1.0 _ZN6tflite3ops7builtin4rank7PrepareEP13TfLiteContextP10TfLiteNode
0000000000588e70 w DF .text 000000000000000e VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlhhE2_clEhh
000000000060d630 g DF .text 0000000000000006 VERS_1.0 _ZN6tflite16MemoryAllocationD1Ev
00000000005c0800 w DF .text 00000000000000ab VERS_1.0 _ZN6tflite3ops7builtin3sub4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000057d780 w DF .text 0000000000000200 VERS_1.0 _ZN6tflite3ops7builtin7pooling14GenericPrepareILNS2_8PoolTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000534af0 g DF .text 000000000000052e VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess37NonMaxSuppressionMultiClassFastHelperEP13TfLiteContextP10TfLiteNodePNS2_6OpDataEPKf
00000000004c1c10 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin19Register_LEAKY_RELUEv
0000000000600860 g DF .text 0000000000000042 VERS_1.0 _ZN6tflite12ArenaPlanner6CommitEv
000000000059f5f0 w DF .text 00000000000004c9 VERS_1.0 _ZN6tflite13optimized_ops5SliceINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEvRKNS_11SliceParamsERKNS_12RuntimeShapeEPK12TfLiteTensorSD_PSE_
00000000005f7530 w DF .text 00000000000001ce VERS_1.0 _ZNSt6vectorISt10unique_ptrIN6tflite8SubgraphESt14default_deleteIS2_EESaIS5_EE17_M_realloc_insertIJRPS2_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
0000000000743fc0 g DF .text 00000000000000b7 VERS_1.0 _ZN6tflite4flex21GetTensorFlowDataTypeE10TfLiteType
000000000053b9f0 w DF .text 00000000000000ac VERS_1.0 _ZN6tflite3ops7builtin3div4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004e6ba0 g DF .text 0000000000000032 VERS_1.0 _ZN6tflite3ops7builtin4cast8copyCastISt7complexIfEEEvPKS5_PT_i
00000000004d5bb0 w DF .text 000000000000009c VERS_1.0 _ZNSt6vectorIN6tflite12RuntimeShapeESaIS1_EE12emplace_backIJS1_EEEvDpOT_
0000000000587ad0 w DF .text 0000000000000010 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlllE1_4_FUNEll
0000000000600010 w DF .text 0000000000000033 VERS_1.0 _ZN6tflite17MutableOpResolverD2Ev
00000000004ff040 w DF .text 00000000000004ec VERS_1.0 _ZN6tflite13reference_ops4ConvERKNS_10ConvParamsERKNS_12RuntimeShapeEPKhS6_S8_S6_PKiS6_PhS6_SB_Pv
00000000005f7030 g DF .text 000000000000002d VERS_1.0 _ZN6tflite11Interpreter28SetAllowFp16PrecisionForFp32Eb
00000000005f6f80 g DF .text 0000000000000011 VERS_1.0 _ZN6tflite11Interpreter16SetExecutionPlanERKSt6vectorIiSaIiEE
00000000005f21a0 g DF .text 000000000000008a VERS_1.0 _ZN6tflite8Subgraph11ReportErrorEPKcz
0000000000583970 w DF .text 0000000000000089 VERS_1.0 _ZN6tflite3ops7builtin7pooling7MaxEvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000060d8d0 g DF .text 000000000000000e VERS_1.0 _ZNK6tflite14MMAPAllocation5validEv
00000000005a32d0 w DF .text 000000000000030e VERS_1.0 _ZN6tflite13reference_ops5SliceIbEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
0000000000564840 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIhNS2_9MaximumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
0000000000610f70 w DF .text 0000000000000145 VERS_1.0 _ZNSt6vectorIN6tflite4flex6kernel12TensorSourceESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_
00000000005f42f0 w DF .text 00000000000001f6 VERS_1.0 _ZNSt6vectorI12TfLiteTensorSaIS0_EE17_M_default_appendEm
00000000005ced10 g DF .text 000000000000003c VERS_1.0 _ZN6tflite3ops7builtin14transpose_conv4InitEP13TfLiteContextPKcm
0000000000535450 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_DIV_GENERIC_OPTEv
00000000005cde00 w DF .text 0000000000000376 VERS_1.0 _ZN6tflite13reference_ops9TransposeIlEEvRKNS_15TransposeParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
0000000004b02a30 g DF .text 000000000000000d VERS_1.0 TfLiteIntArrayGetSizeInBytes
00000000005f10a0 g DF .text 0000000000000037 VERS_1.0 _ZN6tflite12tensor_utils42PortableVectorVectorCwiseProductAccumulateEPKfS2_iPf
00000000005ac070 w DF .text 0000000000000677 VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense16GetIndicesVectorIiEE12TfLiteStatusP13TfLiteContextPK12TfLiteTensoriPSt6vectorISA_IT_SaISB_EESaISD_EE
00000000004c1980 g DF .text 00000000000001ca VERS_1.0 _ZN6tflite3ops7builtin11activations12SoftmaxFloatEP13TfLiteContextPK12TfLiteTensorPS5_P19TfLiteSoftmaxParams
000000000055b720 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin27Register_L2NORM_GENERIC_OPTEv
000000000052ef60 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin23Register_DEQUANTIZE_OPTEv
00000000006165a0 g DF .text 00000000000000bb VERS_1.0 _ZN6tflite4flex12DelegateDataD2Ev
000000000060d640 g DF .text 000000000000000a VERS_1.0 _ZNK6tflite16MemoryAllocation4baseEv
00000000005f3190 g DF .text 00000000000002ec VERS_1.0 _ZN6tflite8SubgraphC1EPNS_13ErrorReporterEPP21TfLiteExternalContextPSt6vectorISt10unique_ptrIS0_St14default_deleteIS0_EESaISA_EEPSt13unordered_mapIiNS_16ResourceVariableESt4hashIiESt8equal_toIiESaISt4pairIKiSF_EEE
0000000000591d90 w DF .text 00000000000019a5 VERS_1.0 _ZN6tflite3ops7builtin15resize_bilinear4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
000000000055f380 g DF .text 0000000000000036 VERS_1.0 _ZN6tflite3ops7builtin4lstm7PrepareEP13TfLiteContextP10TfLiteNode
000000000055c560 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin40Register_LOCAL_RESPONSE_NORM_GENERIC_OPTEv
0000000000600710 g DF .text 000000000000001f VERS_1.0 _ZN6tflite12ArenaPlannerD0Ev
00000000004f81d0 g DF .text 0000000000000378 VERS_1.0 _ZN6tflite3ops7builtin13concatenation7PrepareEP13TfLiteContextP10TfLiteNode
00000000005f8e40 w DF .text 0000000000002740 VERS_1.0 _ZN6tflite20VerifyBuiltinOptionsERN11flatbuffers8VerifierEPKvNS_14BuiltinOptionsE
0000000000598540 w DF .text 00000000000004b1 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIhiEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
00000000005269c0 g DF .text 0000000000000042 VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv4FreeEP13TfLiteContextPv
00000000004be060 g DF .text 000000000000047b VERS_1.0 _ZN6tflite3ops7builtin11activations9Relu6EvalEP13TfLiteContextP10TfLiteNode
00000000004bd750 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin11activations4FreeEP13TfLiteContextPv
00000000004e6d60 w DF .text 0000000000000167 VERS_1.0 _ZN6tflite3ops7builtin4cast12copyToTensorIiEE12TfLiteStatusPKT_P12TfLiteTensori
00000000005c7100 g DF .text 00000000000004e5 VERS_1.0 _ZN6tflite3ops7builtin4svdf10EvalHybridEP13TfLiteContextP10TfLiteNodePK12TfLiteTensorS9_S9_S9_PK16TfLiteSVDFParamsPS7_SD_SD_SD_SD_
000000000057db60 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin29Register_MAX_POOL_GENERIC_OPTEv
00000000004ff5c0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_CONVOLUTION_REFEv
00000000004c1820 g DF .text 0000000000000022 VERS_1.0 _ZN6tflite3ops7builtin11activations31DownScaleInt32ToInt16MultiplierEiPs
00000000005fcff0 g DF .text 0000000000000079 VERS_1.0 _ZNK6tflite15FlatBufferModel20CheckModelIdentifierEv
00000000005ef180 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils23ApplyActivationToVectorEPKfi21TfLiteFusedActivationPf
00000000004c0160 g DF .text 0000000000000e7e VERS_1.0 _ZN6tflite3ops7builtin11activations9PreluEvalEP13TfLiteContextP10TfLiteNode
0000000000610360 g DF .text 00000000000002f5 VERS_1.0 _ZN6tflite4flex6kernel4EvalEP13TfLiteContextP10TfLiteNode
000000000053e2b0 w DF .text 000000000000023c VERS_1.0 _ZN6tflite3ops7builtin10fake_quant4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000501620 w DF .text 0000000000000513 VERS_1.0 _ZN6tflite13optimized_ops6Im2colIhEEvRKNS_10ConvParamsEiihRKNS_12RuntimeShapeEPKT_S7_PS8_
000000000055b710 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin19Register_L2NORM_REFEv
00000000005ccd70 g DF .text 0000000000000148 VERS_1.0 _ZN6tflite3ops7builtin9transpose18ResizeOutputTensorEP13TfLiteContextPNS2_16TransposeContextE
0000000000553150 w DF .text 00000000000004b0 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIflEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
00000000004c8b60 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin24Register_ADD_GENERIC_OPTEv
0000000000543cf0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin28Register_FULLY_CONNECTED_REFEv
0000000000596b50 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin32Register_RESIZE_NEAREST_NEIGHBOREv
00000000005f3670 w DF .text 00000000000002a2 VERS_1.0 _ZNSt6vectorISt4pairI10TfLiteNode18TfLiteRegistrationESaIS3_EE17_M_default_appendEm
0000000000581370 w DF .text 0000000000000068 VERS_1.0 _ZN6tflite3ops7builtin7pooling6L2EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000563880 w DF .text 0000000000000010 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MinimumOp2opIlEET_S5_S5_
0000000000601b90 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi66EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005f0e40 g DF .text 000000000000014d VERS_1.0 _ZN6tflite12tensor_utils49PortableSparseMatrixBatchVectorMultiplyAccumulateEPKaPKhiiS2_PKfiPfi
0000000000576b20 g DF .text 000000000000012a VERS_1.0 _ZN6tflite3ops7builtin3pad18ResizeOutputTensorEP13TfLiteContextPNS2_10PadContextE
00000000005557a0 w DF .text 0000000000000512 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIhiEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
00000000005458c0 w DF .text 00000000000009d2 VERS_1.0 _ZN6tflite13optimized_ops22ShuffledFullyConnectedERKNS_20FullyConnectedParamsERKNS_12RuntimeShapeEPKhS6_S8_S6_PKiS6_PsPhPNS_17CpuBackendContextE
00000000005acef0 w DF .text 00000000000003fd VERS_1.0 _ZN6tflite3ops7builtin15sparse_to_dense17SparseToDenseImplIliEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000528720 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin42Register_DEPTHWISE_CONVOLUTION_GENERIC_OPTEv
0000000000584240 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin12Register_POWEv
000000000058e7b0 g DF .text 00000000000001b7 VERS_1.0 _ZN6tflite3ops7builtin7reshape12ResizeOutputEP13TfLiteContextP10TfLiteNode
00000000005f1ec0 g DF .text 000000000000006f VERS_1.0 _ZN6tflite8Subgraph16GetExecutionPlanEPP14TfLiteIntArray
00000000004e7490 g DF .text 00000000000001b0 VERS_1.0 _ZN6tflite3ops7builtin4cast4EvalEP13TfLiteContextP10TfLiteNode
00000000006019e0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi39EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005bb6b0 w DF .text 00000000000012fd VERS_1.0 _ZN6tflite3ops7builtin3sub7EvalSubILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteSubParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000004bcdf0 g DF .text 00000000000001bc VERS_1.0 _ZN6tflite3ops7builtin11activations14SoftmaxPrepareEP13TfLiteContextP10TfLiteNode
00000000006166d0 g DF .text 000000000000035b VERS_1.0 _ZN6tflite4flex12DelegateData7PrepareERKN10tensorflow14SessionOptionsE
00000000005d92c0 g DF .text 000000000000040d VERS_1.0 _ZN6tflite3ops6custom12while_kernel7PrepareEP13TfLiteContextP10TfLiteNode
00000000004d8bf0 w DF .text 000000000000030b VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIhilSt8functionIFbhhEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
00000000004c1b70 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin21Register_RELU_N1_TO_1Ev
0000000000743f90 g DF .text 000000000000002b VERS_1.0 _ZN6tflite4flex13ConvertStatusEP13TfLiteContextRKN10tensorflow6StatusE
00000000006054b0 g DF .text 00000000000003b0 VERS_1.0 _ZN6tflite21StatefulNnApiDelegate9DoPrepareEP13TfLiteContextP14TfLiteDelegate
000000000052abb0 w DF .text 0000000000000bba VERS_1.0 _ZN6tflite21optimized_integer_ops23DepthwiseConvPerChannelERKNS_15DepthwiseParamsEPKiS5_RKNS_12RuntimeShapeEPKaS8_SA_S8_S5_S8_PaPNS_17CpuBackendContextE
0000000000601a70 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi14EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000595ad0 w DF .text 0000000000001046 VERS_1.0 _ZN6tflite3ops7builtin23resize_nearest_neighbor4EvalILNS2_10KernelTypeE2EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000563840 w DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MinimumOp2opIfEET_S5_S5_
00000000007446c0 g DF .text 0000000000000011 VERS_1.0 _ZN6tflite13DynamicBuffer9AddStringERKNS_9StringRefE
00000000004e7bc0 w DF .text 00000000000000cb VERS_1.0 _ZN6tflite12RuntimeShapeC2EiRKS0_i
00000000004bc720 g DF .text 0000000000000049 VERS_1.0 _ZN6tflite3ops7builtin11activations13LeakyReluInitEP13TfLiteContextPKcm
0000000000573a00 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin12Register_NEGEv
000000000060d630 g DF .text 0000000000000006 VERS_1.0 _ZN6tflite16MemoryAllocationD2Ev
00000000005e4910 g DF .text 0000000000000214 VERS_1.0 _ZN6tflite8internal7MfccDct10InitializeEii
0000000000601c80 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi72EEEiRKNS1_18NNAPIOpMappingArgsE
000000000055efe0 g DF .text 000000000000002e VERS_1.0 _ZN6tflite3ops7builtin4lstm4InitEP13TfLiteContextPKcm
00000000004d9c10 w DF .text 0000000000000343 VERS_1.0 _ZN6tflite13reference_ops9ArgMinMaxIallSt8functionIFbaaEEEEvRKNS_12RuntimeShapeEPKT_PKT1_S7_PT0_RKT2_
000000000061c5f0 g DF .text 0000000000000293 VERS_1.0 _ZN6tflite37PopulateConvolutionQuantizationParamsEP13TfLiteContextPK12TfLiteTensorS4_S4_PS2_RK21TfLiteFusedActivationPiS9_S9_S9_S9_S9_
000000000060e710 g DF .text 0000000000000041 VERS_1.0 _ZN6tflite12FlexDelegateC1Ev
0000000000574400 w DF .text 0000000000000165 VERS_1.0 _ZN6tflite3ops7builtin7one_hot17OneHotComputeImplIllEEvRKNS2_13OneHotContextE
0000000000533b30 g DF .text 0000000000000064 VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess13ValidateBoxesEPK12TfLiteTensori
00000000005543d0 w DF .text 00000000000004b0 VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIllEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
0000000000601ba0 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi45EEEiRKNS1_18NNAPIOpMappingArgsE
0000000000563800 w DF .text 000000000000000e VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum9MaximumOp2opIhEET_S5_S5_
00000000005639e0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin20Register_MINIMUM_REFEv
000000000055f7a0 w DF .text 000000000000013d VERS_1.0 _ZNSt6vectorIPKN6tflite12RuntimeShapeESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_
000000000060e540 g DF .text 0000000000000047 VERS_1.0 _ZN6tflite16ResourceVariableD1Ev
000000000053d000 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_RSQRTEv
0000000000580dd0 w DF .text 0000000000000595 VERS_1.0 _ZN6tflite3ops7builtin7pooling11L2EvalFloatILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
000000000061c540 g DF .text 000000000000008c VERS_1.0 _ZN6tflite33CalculateActivationRangeQuantizedEP13TfLiteContext21TfLiteFusedActivationP12TfLiteTensorPiS5_
000000000058e970 g DF .text 00000000000000f2 VERS_1.0 _ZN6tflite3ops7builtin7reshape7PrepareEP13TfLiteContextP10TfLiteNode
0000000000601a50 w DF .text 000000000000000b VERS_1.0 _ZN6tflite8delegate5nnapi14BasicMappingFnILi20EEEiRKNS1_18NNAPIOpMappingArgsE
00000000005ef0c0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils35MatrixBatchVectorMultiplyAccumulateEPKaiiS2_PKfiPfi
00000000005269a0 w DF .text 000000000000000a VERS_1.0 _ZN6tflite13optimized_ops23DepthwiseConvWorkerTaskIhiED0Ev
00000000005cd380 w DF .text 0000000000000375 VERS_1.0 _ZN6tflite13reference_ops9TransposeIhEEvRKNS_15TransposeParamsERKNS_12RuntimeShapeEPKT_S7_PS8_
00000000005a0f10 w DF .text 0000000000000334 VERS_1.0 _ZN6tflite13reference_ops5SliceIiEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
00000000005ef1b0 g DF .text 000000000000000a VERS_1.0 _ZN6tflite12tensor_utils10ZeroVectorEPfi
00000000005fbb70 w DF .text 00000000000007f3 VERS_1.0 _ZNK6tflite8SubGraph6VerifyERN11flatbuffers8VerifierE
00000000005ba3b0 w DF .text 00000000000012fd VERS_1.0 _ZN6tflite3ops7builtin3sub7EvalSubILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteSubParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000005f77f0 g DF .text 000000000000023e VERS_1.0 _ZN6tflite11InterpreterC2EPNS_13ErrorReporterE
0000000000587b30 w DF .text 0000000000000009 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlaaE_4_FUNEaa
0000000000566770 w DF .text 00000000000000d6 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum4EvalILNS2_10KernelTypeE0ENS2_9MaximumOpEEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005f67f0 g DF .text 000000000000009a VERS_1.0 _ZN6tflite11Interpreter18SetExternalContextE25TfLiteExternalContextTypeP21TfLiteExternalContext
00000000005f1140 g DF .text 0000000000000060 VERS_1.0 _ZN6tflite12tensor_utils47PortableVectorBatchVectorCwiseProductAccumulateEPKfiS2_iPf
000000000052e680 g DF .text 0000000000000013 VERS_1.0 _ZN6tflite3ops7builtin10dequantize4InitEP13TfLiteContextPKcm
0000000000600630 g DF .text 00000000000000db VERS_1.0 _ZN6tflite12ArenaPlannerD1Ev
00000000005f4950 g DF .text 000000000000047b VERS_1.0 _ZN6tflite8Subgraph6InvokeEv
00000000004ff610 w DF .text 00000000000004f7 VERS_1.0 _ZN6tflite13optimized_ops13DilatedIm2colIaEEvRKNS_10ConvParamsEhRKNS_12RuntimeShapeEPKT_S7_S7_PS8_
00000000005f0b40 g DF .text 00000000000000c6 VERS_1.0 _ZN6tflite12tensor_utils43PortableMatrixBatchVectorMultiplyAccumulateEPKfiiS2_iPfi
00000000005c08b0 w DF .text 0000000000002df5 VERS_1.0 _ZN6tflite3ops7builtin3sub13EvalQuantizedILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteSubParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000005e7910 w DF .text 00000000000001cf VERS_1.0 _ZN6tflite8internal11Spectrogram34ComputeSquaredMagnitudeSpectrogramIffEEbRKSt6vectorIT_SaIS4_EEPS3_IS3_IT0_SaIS9_EESaISB_EE
0000000000588eb0 w DF .text 000000000000000e VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIaEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlaaE2_clEaa
00000000005715f0 w DF .text 0000000000000a61 VERS_1.0 _ZN6tflite3ops7builtin3mul7EvalMulILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteMulParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000005f41e0 g DF .text 000000000000010e VERS_1.0 _ZN6tflite8Subgraph17ResizeInputTensorEiRKSt6vectorIiSaIiEE
0000000004b02ab0 g DF .text 000000000000002f VERS_1.0 TfLiteIntArrayEqual
000000000053e500 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin19Register_FAKE_QUANTEv
00000000005ff3a0 g DF .text 0000000000000071 VERS_1.0 _ZNK6tflite17MutableOpResolver6FindOpENS_15BuiltinOperatorEi
00000000004e7cc0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin22Register_GREATER_EQUALEv
000000000060d960 g DF .text 00000000000000f1 VERS_1.0 _ZN6tflite14MMAPAllocationC1EPKcPNS_13ErrorReporterE
00000000005f6e20 g DF .text 0000000000000035 VERS_1.0 _ZN6tflite11Interpreter27SetTensorParametersReadOnlyEi10TfLiteTypePKcRKSt6vectorIiSaIiEE18TfLiteQuantizationS3_mPKNS_10AllocationE
0000000005a10128 w DO .data.rel.ro 0000000000000028 VERS_1.0 _ZTVN6tflite17CpuBackendContextE
0000000000557680 w DF .text 0000000000000512 VERS_1.0 _ZN6tflite3ops7builtin9gather_nd8GatherNdIalEE12TfLiteStatusPK12TfLiteTensorS7_PS5_
0000000000551460 w DF .text 000000000000049f VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIfiEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
00000000004e06a0 w DF .text 0000000000002193 VERS_1.0 _ZN6tflite3ops7builtin17batch_to_space_nd4EvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005ff720 w DF .text 00000000000000f5 VERS_1.0 _ZNSt10_HashtableISt4pairIN6tflite15BuiltinOperatorEiES0_IKS3_18TfLiteRegistrationESaIS6_ENSt8__detail10_Select1stESt8equal_toIS3_ENS1_18op_resolver_hasher17OperatorKeyHasherIS3_EENS8_18_Mod_range_hashingENS8_20_Default_ranged_hashENS8_20_Prime_rehash_policyENS8_17_Hashtable_traitsILb1ELb0ELb1EEEE21_M_insert_unique_nodeEmmPNS8_10_Hash_nodeIS6_Lb1EEE
00000000005651d0 w DF .text 0000000000000272 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum15TFLiteOperationIaNS2_9MaximumOpEEEvP13TfLiteContextP10TfLiteNodeRKNS2_9OpContextE
00000000004c2250 w DF .text 00000000000003bb VERS_1.0 _ZN6tflite3ops7builtin11activations16SoftmaxQuantizedIaEE12TfLiteStatusP13TfLiteContextPK12TfLiteTensorPS7_PNS2_13SoftmaxOpDataE
000000000059a230 w DF .text 00000000000004d7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIliEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
00000000005026b0 w DF .text 0000000000000015 VERS_1.0 _ZN6tflite3ops7builtin4conv7PrepareILNS2_10KernelTypeE3EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004e7050 w DF .text 0000000000000167 VERS_1.0 _ZN6tflite3ops7builtin4cast12copyToTensorIfEE12TfLiteStatusPKT_P12TfLiteTensori
00000000005ef510 g DF .text 000000000000001f VERS_1.0 _ZN6tflite17CpuBackendContextD0Ev
0000000000601d90 w DF .text 0000000000000092 VERS_1.0 _ZN6tflite8delegate5nnapi8NNMemoryC1EPK5NnApiPKcm
0000000004c033c0 w DO .rodata 0000000000000028 VERS_1.0 _ZTSN6tflite28TfLiteInternalBackendContextE
00000000004d5300 w DF .text 0000000000000092 VERS_1.0 _ZNSt6vectorIN6tflite12RuntimeShapeESaIS1_EED1Ev
00000000005d3450 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin27unidirectional_sequence_rnn4FreeEP13TfLiteContextPv
00000000005a8820 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin30Register_SPACE_TO_BATCH_ND_REFEv
00000000005813e0 w DF .text 0000000000000239 VERS_1.0 _ZN6tflite3ops7builtin7pooling16AverageEvalFloatILNS2_10KernelTypeE1EEEvP13TfLiteContextP10TfLiteNodeP16TfLitePoolParamsPNS2_6OpDataEPK12TfLiteTensorPSD_
000000000057db20 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin25Register_AVERAGE_POOL_REFEv
0000000000588e20 w DF .text 0000000000000010 VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIlEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENKUlllE1_clEll
00000000005736d0 w DF .text 00000000000000b6 VERS_1.0 _ZN6tflite3ops7builtin3mul4EvalILNS2_10KernelTypeE0EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
0000000000587b10 w DF .text 000000000000000e VERS_1.0 _ZZN6tflite3ops7builtin6reduce8EvalTypeIhEE12TfLiteStatusP13TfLiteContextP10TfLiteNodePNS2_9OpContextENS2_10ReduceTypeEENUlhhE1_4_FUNEhh
0000000000526950 g DF .text 0000000000000040 VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv4InitEP13TfLiteContextPKcm
00000000005f2610 g DF .text 0000000000000240 VERS_1.0 _ZN6tflite8Subgraph27SetTensorParametersReadOnlyEi10TfLiteTypePKcmPKi18TfLiteQuantizationS3_mPKNS_10AllocationE
00000000004dc400 g DF .text 00000000000001b9 VERS_1.0 _ZN6tflite3ops6custom17audio_spectrogram7PrepareEP13TfLiteContextP10TfLiteNode
000000000053cfe0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin12Register_LOGEv
00000000005d38a0 g DF .text 0000000000000250 VERS_1.0 _ZN6tflite3ops7builtin27unidirectional_sequence_rnn9EvalFloatEPK12TfLiteTensorS5_S5_S5_PK23TfLiteSequenceRNNParamsPS3_S9_
000000000059bc90 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin14Register_ROUNDEv
00000000004f7780 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin22Register_CONCATENATIONEv
00000000005fd0b0 g DF .text 000000000000009b VERS_1.0 _ZN6tflite15FlatBufferModelC1ESt10unique_ptrINS_10AllocationESt14default_deleteIS2_EEPNS_13ErrorReporterE
00000000004d6940 g DF .text 000000000000006f VERS_1.0 _ZN6tflite3ops7builtin5add_n4EvalEP13TfLiteContextP10TfLiteNode
00000000005a8840 g DF .text 000000000000000a VERS_1.0 _ZN6tflite3ops7builtin26Register_SPACE_TO_BATCH_NDEv
00000000005e4410 g DF .text 0000000000000021 VERS_1.0 _ZN6tflite8internal7MfccDctC1Ev
0000000000566ad0 w DF .text 00000000000000d6 VERS_1.0 _ZN6tflite3ops7builtin15maximum_minimum4EvalILNS2_10KernelTypeE0ENS2_9MinimumOpEEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000004c2a50 w DF .text 0000000000001876 VERS_1.0 _ZN6tflite3ops7builtin11activations14LogSoftmaxEvalILNS2_10KernelTypeE1EEE12TfLiteStatusP13TfLiteContextP10TfLiteNode
00000000005d2300 g DF .text 00000000000009d8 VERS_1.0 _ZN6tflite3ops7builtin28unidirectional_sequence_lstm26CheckInputTensorDimensionsEP13TfLiteContextP10TfLiteNodeiiib
00000000006051e0 w DF .text 00000000000001b7 VERS_1.0 _ZNSt6vectorISt5tupleIJi10TfLiteTypeiEESaIS2_EE17_M_realloc_insertIJRiRS1_S6_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
00000000005f1f60 g DF .text 00000000000000af VERS_1.0 _ZN6tflite8Subgraph13BytesRequiredE10TfLiteTypePKimPm
0000000000569da0 g DF .text 0000000000000013 VERS_1.0 _ZN6tflite3ops7builtin3mul4InitEP13TfLiteContextPKcm
000000000053baa0 w DF .text 0000000000000a71 VERS_1.0 _ZN6tflite3ops7builtin3div7EvalDivILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteDivParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000005be250 w DF .text 00000000000025b0 VERS_1.0 _ZN6tflite3ops7builtin3sub13EvalQuantizedILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteSubParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
0000000000616550 g DF .text 0000000000000044 VERS_1.0 _ZN6tflite4flex12DelegateDataC1Ev
00000000005526a0 w DF .text 000000000000049f VERS_1.0 _ZN6tflite3ops7builtin6gather6GatherIliEE12TfLiteStatusRK18TfLiteGatherParamsPK12TfLiteTensorSA_PS8_
000000000052a150 w DF .text 0000000000000973 VERS_1.0 _ZN6tflite3ops7builtin14depthwise_conv23EvalQuantizedPerChannelILNS2_10KernelTypeE0EEEvP13TfLiteContextP10TfLiteNodeP25TfLiteDepthwiseConvParamsPNS2_6OpDataEPK12TfLiteTensorSF_SF_PSD_
0000000000598ec0 w DF .text 00000000000004d7 VERS_1.0 _ZN6tflite13reference_ops15ReverseSequenceIsiEEvPKT0_iiRKNS_12RuntimeShapeEPKT_S7_PS8_
0000000000600730 g DF .text 00000000000000fb VERS_1.0 _ZN6tflite12ArenaPlannerC2EP13TfLiteContextSt10unique_ptrINS_9GraphInfoESt14default_deleteIS4_EEbbi
00000000004bc660 g DF .text 000000000000001f VERS_1.0 _ZN6tflite3ops7builtin11activations11SoftmaxInitEP13TfLiteContextPKcm
00000000004d0bb0 w DF .text 0000000000001389 VERS_1.0 _ZN6tflite3ops7builtin3add7EvalAddILNS2_10KernelTypeE2EEEvP13TfLiteContextP10TfLiteNodeP15TfLiteAddParamsPKNS2_6OpDataEPK12TfLiteTensorSG_PSE_
00000000004ff5d0 g DF .text 000000000000000d VERS_1.0 _ZN6tflite3ops7builtin32Register_CONVOLUTION_GENERIC_OPTEv
000000000060d620 g DF .text 000000000000000e VERS_1.0 _ZNK6tflite18FileCopyAllocation5validEv
000000000060d260 g DF .text 000000000000015d VERS_1.0 _ZN6tflite8delegate5nnapi31DecomposeQuantLstmWeightsTensorEPKhPK14TfLiteIntArrayPSt6vectorIhSaIhEESA_SA_SA_SA_SA_SA_SA_
00000000005cb190 g DF .text 000000000000013d VERS_1.0 _ZN6tflite3ops7builtin7topk_v27PrepareEP13TfLiteContextP10TfLiteNode
00000000005a2480 w DF .text 00000000000002fe VERS_1.0 _ZN6tflite13optimized_ops5SliceIbEEvRKNS_11SliceParamsERKNS_12RuntimeShapeES7_PNS_22SequentialTensorWriterIT_EE
000000000052fb30 g DF .text 000000000000344f VERS_1.0 _ZN6tflite3ops6custom21detection_postprocess4InitEP13TfLiteContextPKcm
000000000060e710 g DF .text 0000000000000041 VERS_1.0 _ZN6tflite12FlexDelegateC2Ev
00000000005f14e0 g DF .text 0000000000000055 VERS_1.0 _ZN6tflite12tensor_utils18PortableClipVectorEPKfifPf
0000000000554ea0 g DF .text 00000000000001b4 VERS_1.0 _ZN6tflite3ops7builtin6gather4EvalEP13TfLiteContextP10TfLiteNode
00000000005e4b90 g DF .text 000000000000001b VERS_1.0 _ZNK6tflite8internal17MfccMelFilterbank9FreqToMelEd
4.Refernce articles