react-native-executorch 0.5.2 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/CMakeLists.txt +24 -0
- package/android/build.gradle +1 -0
- package/android/src/main/cpp/CMakeLists.txt +27 -1
- package/android/src/main/java/com/swmansion/rnexecutorch/RnExecutorchPackage.kt +1 -13
- package/common/rnexecutorch/RnExecutorchInstaller.cpp +52 -18
- package/common/rnexecutorch/RnExecutorchInstaller.h +0 -25
- package/common/rnexecutorch/TokenizerModule.cpp +1 -1
- package/common/rnexecutorch/TokenizerModule.h +4 -1
- package/common/rnexecutorch/data_processing/FileUtils.h +2 -2
- package/common/rnexecutorch/data_processing/ImageProcessing.cpp +5 -5
- package/common/rnexecutorch/data_processing/ImageProcessing.h +2 -2
- package/common/rnexecutorch/data_processing/Numerical.cpp +40 -19
- package/common/rnexecutorch/data_processing/Numerical.h +53 -4
- package/common/rnexecutorch/data_processing/dsp.cpp +1 -1
- package/common/rnexecutorch/data_processing/dsp.h +1 -1
- package/common/rnexecutorch/data_processing/gzip.cpp +47 -0
- package/common/rnexecutorch/data_processing/gzip.h +7 -0
- package/common/rnexecutorch/host_objects/JsiConversions.h +43 -62
- package/common/rnexecutorch/host_objects/ModelHostObject.h +67 -24
- package/common/rnexecutorch/metaprogramming/ConstructorHelpers.h +8 -6
- package/common/rnexecutorch/metaprogramming/FunctionHelpers.h +1 -1
- package/common/rnexecutorch/metaprogramming/TypeConcepts.h +21 -1
- package/common/rnexecutorch/models/BaseModel.cpp +5 -4
- package/common/rnexecutorch/models/BaseModel.h +8 -2
- package/common/rnexecutorch/models/classification/Classification.cpp +6 -6
- package/common/rnexecutorch/models/classification/Classification.h +5 -0
- package/common/rnexecutorch/models/classification/Constants.h +3 -3
- package/common/rnexecutorch/models/embeddings/BaseEmbeddings.cpp +2 -2
- package/common/rnexecutorch/models/embeddings/BaseEmbeddings.h +2 -2
- package/common/rnexecutorch/models/embeddings/image/ImageEmbeddings.cpp +3 -3
- package/common/rnexecutorch/models/embeddings/image/ImageEmbeddings.h +5 -0
- package/common/rnexecutorch/models/embeddings/text/TextEmbeddings.cpp +2 -2
- package/common/rnexecutorch/models/embeddings/text/TextEmbeddings.h +6 -1
- package/common/rnexecutorch/models/image_segmentation/Constants.h +3 -3
- package/common/rnexecutorch/models/image_segmentation/ImageSegmentation.cpp +6 -5
- package/common/rnexecutorch/models/image_segmentation/ImageSegmentation.h +8 -1
- package/common/rnexecutorch/models/llm/LLM.cpp +58 -0
- package/common/rnexecutorch/models/llm/LLM.h +35 -0
- package/common/rnexecutorch/models/object_detection/Constants.h +3 -3
- package/common/rnexecutorch/models/object_detection/ObjectDetection.cpp +8 -8
- package/common/rnexecutorch/models/object_detection/ObjectDetection.h +11 -5
- package/common/rnexecutorch/models/object_detection/Types.h +13 -0
- package/common/rnexecutorch/models/object_detection/Utils.cpp +13 -11
- package/common/rnexecutorch/models/object_detection/Utils.h +7 -13
- package/common/rnexecutorch/models/ocr/CTCLabelConverter.cpp +2 -2
- package/common/rnexecutorch/models/ocr/CTCLabelConverter.h +2 -2
- package/common/rnexecutorch/models/ocr/Constants.h +33 -26
- package/common/rnexecutorch/models/ocr/Detector.cpp +20 -22
- package/common/rnexecutorch/models/ocr/Detector.h +4 -4
- package/common/rnexecutorch/models/ocr/OCR.cpp +9 -8
- package/common/rnexecutorch/models/ocr/OCR.h +11 -3
- package/common/rnexecutorch/models/ocr/RecognitionHandler.cpp +20 -19
- package/common/rnexecutorch/models/ocr/RecognitionHandler.h +9 -7
- package/common/rnexecutorch/models/ocr/Recognizer.cpp +7 -7
- package/common/rnexecutorch/models/ocr/Recognizer.h +2 -2
- package/common/rnexecutorch/models/ocr/Types.h +4 -6
- package/common/rnexecutorch/models/ocr/{DetectorUtils.cpp → utils/DetectorUtils.cpp} +70 -63
- package/common/rnexecutorch/models/ocr/{DetectorUtils.h → utils/DetectorUtils.h} +12 -11
- package/common/rnexecutorch/models/ocr/{RecognitionHandlerUtils.cpp → utils/RecognitionHandlerUtils.cpp} +14 -11
- package/common/rnexecutorch/models/ocr/{RecognitionHandlerUtils.h → utils/RecognitionHandlerUtils.h} +5 -5
- package/common/rnexecutorch/models/ocr/{RecognizerUtils.cpp → utils/RecognizerUtils.cpp} +28 -26
- package/common/rnexecutorch/models/ocr/{RecognizerUtils.h → utils/RecognizerUtils.h} +15 -14
- package/common/rnexecutorch/models/speech_to_text/SpeechToText.cpp +102 -41
- package/common/rnexecutorch/models/speech_to_text/SpeechToText.h +48 -19
- package/common/rnexecutorch/models/speech_to_text/asr/ASR.cpp +307 -0
- package/common/rnexecutorch/models/speech_to_text/asr/ASR.h +61 -0
- package/common/rnexecutorch/models/speech_to_text/stream/HypothesisBuffer.cpp +80 -0
- package/common/rnexecutorch/models/speech_to_text/stream/HypothesisBuffer.h +27 -0
- package/common/rnexecutorch/models/speech_to_text/stream/OnlineASRProcessor.cpp +96 -0
- package/common/rnexecutorch/models/speech_to_text/stream/OnlineASRProcessor.h +36 -0
- package/common/rnexecutorch/models/speech_to_text/types/DecodingOptions.h +15 -0
- package/common/rnexecutorch/models/speech_to_text/types/GenerationResult.h +12 -0
- package/common/rnexecutorch/models/speech_to_text/types/ProcessResult.h +12 -0
- package/common/rnexecutorch/models/speech_to_text/types/Segment.h +14 -0
- package/common/rnexecutorch/models/speech_to_text/types/Word.h +13 -0
- package/common/rnexecutorch/models/style_transfer/StyleTransfer.cpp +5 -5
- package/common/rnexecutorch/models/style_transfer/StyleTransfer.h +6 -0
- package/common/rnexecutorch/models/vertical_ocr/VerticalDetector.cpp +23 -22
- package/common/rnexecutorch/models/vertical_ocr/VerticalDetector.h +4 -4
- package/common/rnexecutorch/models/vertical_ocr/VerticalOCR.cpp +34 -34
- package/common/rnexecutorch/models/vertical_ocr/VerticalOCR.h +27 -20
- package/{third-party/ios/ExecutorchLib/ExecutorchLib/sampler → common/runner}/sampler.cpp +3 -2
- package/{third-party/ios/ExecutorchLib/ExecutorchLib/sampler → common/runner}/sampler.h +3 -2
- package/ios/libs/executorch/libbackend_coreml_ios.a +0 -0
- package/ios/libs/executorch/libbackend_coreml_simulator.a +0 -0
- package/{third-party/ios/ExecutorchLib/frameworks/backend_mps.xcframework/ios-arm64 → ios/libs/executorch}/libbackend_mps_ios.a +0 -0
- package/{third-party/ios/ExecutorchLib/frameworks/backend_mps.xcframework/ios-arm64-simulator → ios/libs/executorch}/libbackend_mps_simulator.a +0 -0
- package/ios/libs/executorch/libbackend_xnnpack_ios.a +0 -0
- package/ios/libs/executorch/libbackend_xnnpack_simulator.a +0 -0
- package/ios/libs/executorch/libexecutorch_ios.a +0 -0
- package/ios/libs/executorch/libexecutorch_simulator.a +0 -0
- package/ios/libs/executorch/libkernels_custom_ios.a +0 -0
- package/ios/libs/executorch/libkernels_custom_simulator.a +0 -0
- package/ios/libs/executorch/libkernels_optimized_ios.a +0 -0
- package/ios/libs/executorch/libkernels_optimized_simulator.a +0 -0
- package/ios/libs/executorch/libkernels_portable_ios.a +0 -0
- package/ios/libs/executorch/libkernels_portable_simulator.a +0 -0
- package/ios/libs/executorch/libkernels_quantized_ios.a +0 -0
- package/ios/libs/executorch/libkernels_quantized_simulator.a +0 -0
- package/ios/libs/tokenizers-cpp/physical-arm64-release/libsentencepiece.a +0 -0
- package/ios/{ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/ExecutorchLib → libs/tokenizers-cpp/physical-arm64-release/libtokenizers_c.a} +0 -0
- package/ios/libs/tokenizers-cpp/physical-arm64-release/libtokenizers_cpp.a +0 -0
- package/ios/libs/tokenizers-cpp/simulator-arm64-debug/libsentencepiece.a +0 -0
- package/ios/{ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/ExecutorchLib → libs/tokenizers-cpp/simulator-arm64-debug/libtokenizers_c.a} +0 -0
- package/ios/libs/tokenizers-cpp/simulator-arm64-debug/libtokenizers_cpp.a +0 -0
- package/lib/Error.js +9 -6
- package/lib/ThreadPool.d.ts +10 -0
- package/lib/ThreadPool.js +28 -0
- package/lib/constants/modelUrls.js +1 -1
- package/lib/controllers/OCRController.js +9 -14
- package/lib/controllers/VerticalOCRController.js +9 -14
- package/lib/hooks/computer_vision/useOCR.js +7 -8
- package/lib/hooks/computer_vision/useVerticalOCR.js +3 -5
- package/lib/index.d.ts +0 -2
- package/lib/index.js +1 -3
- package/lib/module/controllers/LLMController.js +6 -10
- package/lib/module/controllers/LLMController.js.map +1 -1
- package/lib/module/hooks/computer_vision/useClassification.js +2 -2
- package/lib/module/hooks/computer_vision/useClassification.js.map +1 -1
- package/lib/module/hooks/computer_vision/useImageEmbeddings.js +2 -2
- package/lib/module/hooks/computer_vision/useImageEmbeddings.js.map +1 -1
- package/lib/module/hooks/computer_vision/useImageSegmentation.js +2 -2
- package/lib/module/hooks/computer_vision/useImageSegmentation.js.map +1 -1
- package/lib/module/hooks/computer_vision/useObjectDetection.js +2 -2
- package/lib/module/hooks/computer_vision/useObjectDetection.js.map +1 -1
- package/lib/module/hooks/computer_vision/useStyleTransfer.js +2 -2
- package/lib/module/hooks/computer_vision/useStyleTransfer.js.map +1 -1
- package/lib/module/hooks/general/useExecutorchModule.js +2 -2
- package/lib/module/hooks/general/useExecutorchModule.js.map +1 -1
- package/lib/module/hooks/natural_language_processing/useTextEmbeddings.js +2 -2
- package/lib/module/hooks/natural_language_processing/useTextEmbeddings.js.map +1 -1
- package/lib/module/hooks/useModule.js +13 -9
- package/lib/module/hooks/useModule.js.map +1 -1
- package/lib/module/index.js +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/modules/BaseModule.js +9 -17
- package/lib/module/modules/BaseModule.js.map +1 -1
- package/lib/module/modules/computer_vision/ClassificationModule.js +2 -2
- package/lib/module/modules/computer_vision/ClassificationModule.js.map +1 -1
- package/lib/module/modules/computer_vision/ImageEmbeddingsModule.js +2 -2
- package/lib/module/modules/computer_vision/ImageEmbeddingsModule.js.map +1 -1
- package/lib/module/modules/computer_vision/ImageSegmentationModule.js +2 -2
- package/lib/module/modules/computer_vision/ImageSegmentationModule.js.map +1 -1
- package/lib/module/modules/computer_vision/ObjectDetectionModule.js +2 -2
- package/lib/module/modules/computer_vision/ObjectDetectionModule.js.map +1 -1
- package/lib/module/modules/computer_vision/StyleTransferModule.js +2 -2
- package/lib/module/modules/computer_vision/StyleTransferModule.js.map +1 -1
- package/lib/module/modules/general/ExecutorchModule.js +2 -2
- package/lib/module/modules/general/ExecutorchModule.js.map +1 -1
- package/lib/module/modules/natural_language_processing/SpeechToTextModule.js +75 -53
- package/lib/module/modules/natural_language_processing/SpeechToTextModule.js.map +1 -1
- package/lib/module/modules/natural_language_processing/TextEmbeddingsModule.js +2 -2
- package/lib/module/modules/natural_language_processing/TextEmbeddingsModule.js.map +1 -1
- package/lib/module/native/RnExecutorchModules.js +1 -2
- package/lib/module/native/RnExecutorchModules.js.map +1 -1
- package/lib/modules/computer_vision/OCRModule.d.ts +4 -5
- package/lib/modules/computer_vision/OCRModule.js +9 -12
- package/lib/modules/computer_vision/VerticalOCRModule.d.ts +4 -5
- package/lib/modules/computer_vision/VerticalOCRModule.js +9 -12
- package/lib/native/RnExecutorchModules.d.ts +5 -1
- package/lib/native/RnExecutorchModules.js +3 -1
- package/lib/tsconfig.tsbuildinfo +1 -0
- package/lib/types/common.d.ts +1 -0
- package/lib/typescript/controllers/LLMController.d.ts +1 -1
- package/lib/typescript/controllers/LLMController.d.ts.map +1 -1
- package/lib/typescript/hooks/natural_language_processing/useSpeechToText.d.ts +5 -5
- package/lib/typescript/hooks/useModule.d.ts +8 -5
- package/lib/typescript/hooks/useModule.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +1 -0
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/modules/BaseModule.d.ts +7 -6
- package/lib/typescript/modules/BaseModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/ClassificationModule.d.ts +2 -2
- package/lib/typescript/modules/computer_vision/ClassificationModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/ImageEmbeddingsModule.d.ts +2 -2
- package/lib/typescript/modules/computer_vision/ImageEmbeddingsModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/ImageSegmentationModule.d.ts +2 -2
- package/lib/typescript/modules/computer_vision/ImageSegmentationModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/ObjectDetectionModule.d.ts +2 -2
- package/lib/typescript/modules/computer_vision/ObjectDetectionModule.d.ts.map +1 -1
- package/lib/typescript/modules/computer_vision/StyleTransferModule.d.ts +2 -2
- package/lib/typescript/modules/computer_vision/StyleTransferModule.d.ts.map +1 -1
- package/lib/typescript/modules/general/ExecutorchModule.d.ts +2 -2
- package/lib/typescript/modules/general/ExecutorchModule.d.ts.map +1 -1
- package/lib/typescript/modules/natural_language_processing/SpeechToTextModule.d.ts +7 -12
- package/lib/typescript/modules/natural_language_processing/SpeechToTextModule.d.ts.map +1 -1
- package/lib/typescript/modules/natural_language_processing/TextEmbeddingsModule.d.ts +2 -2
- package/lib/typescript/modules/natural_language_processing/TextEmbeddingsModule.d.ts.map +1 -1
- package/lib/typescript/native/RnExecutorchModules.d.ts +1 -3
- package/lib/typescript/native/RnExecutorchModules.d.ts.map +1 -1
- package/lib/typescript/types/stt.d.ts +0 -9
- package/lib/typescript/types/stt.d.ts.map +1 -1
- package/lib/utils/ResourceFetcherUtils.js +0 -1
- package/lib/utils/llm.js +0 -1
- package/package.json +1 -2
- package/react-native-executorch.podspec +49 -44
- package/src/controllers/LLMController.ts +8 -13
- package/src/hooks/computer_vision/useClassification.ts +2 -2
- package/src/hooks/computer_vision/useImageEmbeddings.ts +2 -2
- package/src/hooks/computer_vision/useImageSegmentation.ts +2 -2
- package/src/hooks/computer_vision/useObjectDetection.ts +2 -2
- package/src/hooks/computer_vision/useStyleTransfer.ts +2 -2
- package/src/hooks/general/useExecutorchModule.ts +2 -2
- package/src/hooks/natural_language_processing/useTextEmbeddings.ts +2 -2
- package/src/hooks/useModule.ts +23 -13
- package/src/index.ts +3 -2
- package/src/modules/BaseModule.ts +17 -28
- package/src/modules/computer_vision/ClassificationModule.ts +2 -2
- package/src/modules/computer_vision/ImageEmbeddingsModule.ts +2 -2
- package/src/modules/computer_vision/ImageSegmentationModule.ts +2 -2
- package/src/modules/computer_vision/ObjectDetectionModule.ts +2 -2
- package/src/modules/computer_vision/StyleTransferModule.ts +2 -2
- package/src/modules/general/ExecutorchModule.ts +2 -2
- package/src/modules/natural_language_processing/SpeechToTextModule.ts +118 -54
- package/src/modules/natural_language_processing/TextEmbeddingsModule.ts +2 -2
- package/src/native/RnExecutorchModules.ts +1 -5
- package/src/types/stt.ts +0 -12
- package/third-party/android/libs/cpuinfo/arm64-v8a/libcpuinfo.so +0 -0
- package/third-party/android/libs/pthreadpool/arm64-v8a/libpthreadpool.so +0 -0
- package/third-party/include/cpuinfo/cpuinfo.h +2305 -0
- package/third-party/include/executorch/extension/threadpool/cpuinfo_utils.h +26 -0
- package/third-party/include/executorch/extension/threadpool/threadpool.h +94 -0
- package/third-party/include/pthreadpool/pthreadpool.h +2236 -0
- package/android/src/main/java/com/swmansion/rnexecutorch/LLM.kt +0 -63
- package/common/rnexecutorch/models/EncoderDecoderBase.cpp +0 -21
- package/common/rnexecutorch/models/EncoderDecoderBase.h +0 -31
- package/common/rnexecutorch/models/speech_to_text/SpeechToTextStrategy.h +0 -27
- package/common/rnexecutorch/models/speech_to_text/WhisperStrategy.cpp +0 -50
- package/common/rnexecutorch/models/speech_to_text/WhisperStrategy.h +0 -25
- package/ios/ExecutorchLib.xcframework/Info.plist +0 -43
- package/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Headers/ETModel.h +0 -27
- package/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Headers/HuggingFaceTokenizer.h +0 -14
- package/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Headers/LLaMARunner.h +0 -32
- package/ios/ExecutorchLib.xcframework/ios-arm64/ExecutorchLib.framework/Info.plist +0 -0
- package/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Headers/ETModel.h +0 -27
- package/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Headers/HuggingFaceTokenizer.h +0 -14
- package/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Headers/LLaMARunner.h +0 -32
- package/ios/ExecutorchLib.xcframework/ios-arm64-simulator/ExecutorchLib.framework/Info.plist +0 -0
- package/ios/RnExecutorch/LLM.h +0 -5
- package/ios/RnExecutorch/LLM.mm +0 -78
- package/lib/Error.d.ts +0 -30
- package/lib/constants/directories.d.ts +0 -1
- package/lib/constants/ocr/symbols.d.ts +0 -75
- package/lib/controllers/OCRController.d.ts +0 -23
- package/lib/controllers/VerticalOCRController.d.ts +0 -25
- package/lib/hooks/useModule.d.ts +0 -17
- package/lib/module/modules/BaseNonStaticModule.js +0 -17
- package/lib/module/modules/BaseNonStaticModule.js.map +0 -1
- package/lib/module/native/NativeLLM.js +0 -5
- package/lib/module/native/NativeLLM.js.map +0 -1
- package/lib/module/utils/SpeechToTextModule/ASR.js +0 -191
- package/lib/module/utils/SpeechToTextModule/ASR.js.map +0 -1
- package/lib/module/utils/SpeechToTextModule/OnlineProcessor.js +0 -73
- package/lib/module/utils/SpeechToTextModule/OnlineProcessor.js.map +0 -1
- package/lib/module/utils/SpeechToTextModule/hypothesisBuffer.js +0 -56
- package/lib/module/utils/SpeechToTextModule/hypothesisBuffer.js.map +0 -1
- package/lib/module/utils/stt.js +0 -22
- package/lib/module/utils/stt.js.map +0 -1
- package/lib/modules/BaseModule.d.ts +0 -8
- package/lib/modules/BaseNonStaticModule.d.ts +0 -9
- package/lib/native/NativeETInstaller.d.ts +0 -6
- package/lib/native/NativeOCR.d.ts +0 -8
- package/lib/native/NativeVerticalOCR.d.ts +0 -8
- package/lib/types/imageSegmentation.d.ts +0 -24
- package/lib/types/objectDetection.d.ts +0 -104
- package/lib/types/ocr.d.ts +0 -11
- package/lib/typescript/modules/BaseNonStaticModule.d.ts +0 -10
- package/lib/typescript/modules/BaseNonStaticModule.d.ts.map +0 -1
- package/lib/typescript/native/NativeLLM.d.ts +0 -12
- package/lib/typescript/native/NativeLLM.d.ts.map +0 -1
- package/lib/typescript/utils/SpeechToTextModule/ASR.d.ts +0 -27
- package/lib/typescript/utils/SpeechToTextModule/ASR.d.ts.map +0 -1
- package/lib/typescript/utils/SpeechToTextModule/OnlineProcessor.d.ts +0 -23
- package/lib/typescript/utils/SpeechToTextModule/OnlineProcessor.d.ts.map +0 -1
- package/lib/typescript/utils/SpeechToTextModule/hypothesisBuffer.d.ts +0 -13
- package/lib/typescript/utils/SpeechToTextModule/hypothesisBuffer.d.ts.map +0 -1
- package/lib/typescript/utils/stt.d.ts +0 -2
- package/lib/typescript/utils/stt.d.ts.map +0 -1
- package/lib/utils/stt.d.ts +0 -1
- package/src/modules/BaseNonStaticModule.ts +0 -26
- package/src/native/NativeLLM.ts +0 -14
- package/src/utils/SpeechToTextModule/ASR.ts +0 -303
- package/src/utils/SpeechToTextModule/OnlineProcessor.ts +0 -87
- package/src/utils/SpeechToTextModule/hypothesisBuffer.ts +0 -79
- package/src/utils/stt.ts +0 -28
- package/third-party/include/tokenizers-cpp/tokenizers_c.h +0 -61
- package/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.h +0 -27
- package/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/ETModel.mm +0 -249
- package/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/HuggingFaceTokenizer.h +0 -14
- package/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/HuggingFaceTokenizer.mm +0 -80
- package/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/LLaMARunner.h +0 -32
- package/third-party/ios/ExecutorchLib/ExecutorchLib/Exported/LLaMARunner.mm +0 -95
- package/third-party/ios/ExecutorchLib/ExecutorchLib/InputType.h +0 -12
- package/third-party/ios/ExecutorchLib/ExecutorchLib/Utils.hpp +0 -217
- package/third-party/ios/ExecutorchLib/ExecutorchLib/model/Model.cpp +0 -11
- package/third-party/ios/ExecutorchLib/ExecutorchLib/model/Model.h +0 -11
- package/third-party/ios/ExecutorchLib/ExecutorchLib/tokenizer/base64.h +0 -202
- package/third-party/ios/ExecutorchLib/ExecutorchLib/tokenizer/bpe_tokenizer.cpp +0 -313
- package/third-party/ios/ExecutorchLib/ExecutorchLib/tokenizer/bpe_tokenizer.h +0 -57
- package/third-party/ios/ExecutorchLib/ExecutorchLib/tokenizer/llama_tiktoken.cpp +0 -78
- package/third-party/ios/ExecutorchLib/ExecutorchLib/tokenizer/llama_tiktoken.h +0 -23
- package/third-party/ios/ExecutorchLib/ExecutorchLib/tokenizer/tiktoken.cpp +0 -427
- package/third-party/ios/ExecutorchLib/ExecutorchLib/tokenizer/tiktoken.h +0 -87
- package/third-party/ios/ExecutorchLib/ExecutorchLib/tokenizer/tokenizer.h +0 -76
- package/third-party/ios/ExecutorchLib/ExecutorchLib.xcodeproj/project.pbxproj +0 -683
- package/third-party/ios/ExecutorchLib/build.sh +0 -44
- package/third-party/ios/ExecutorchLib/frameworks/backend_coreml.xcframework/Info.plist +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/backend_coreml.xcframework/ios-arm64/libbackend_coreml_ios.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/backend_coreml.xcframework/ios-arm64-simulator/libbackend_coreml_simulator.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/backend_mps.xcframework/Info.plist +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/backend_xnnpack.xcframework/Info.plist +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/backend_xnnpack.xcframework/ios-arm64/libbackend_xnnpack_ios.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/backend_xnnpack.xcframework/ios-arm64-simulator/libbackend_xnnpack_simulator.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/Info.plist +0 -47
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/macros/Export.h +0 -163
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/macros/Macros.h +0 -497
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/BFloat16-inl.h +0 -342
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/BFloat16-math.h +0 -266
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/BFloat16.h +0 -125
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/Half-inl.h +0 -347
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/Half.h +0 -416
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/TypeSafeSignMath.h +0 -133
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/bit_cast.h +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/floating_point_utils.h +0 -33
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/c10/util/irange.h +0 -107
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/ExecuTorch.h +0 -13
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/ExecuTorchError.h +0 -16
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/ExecuTorchLog.h +0 -76
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/ExecuTorchModule.h +0 -286
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/ExecuTorchTensor.h +0 -742
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/ExecuTorchValue.h +0 -219
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/extension/module/module.h +0 -492
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/extension/tensor/tensor.h +0 -13
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/extension/tensor/tensor_accessor.h +0 -190
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/extension/tensor/tensor_ptr.h +0 -347
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/extension/tensor/tensor_ptr_maker.h +0 -653
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/backend/backend_execution_context.h +0 -71
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/backend/backend_init_context.h +0 -72
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/backend/interface.h +0 -166
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/array_ref.h +0 -235
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/data_loader.h +0 -136
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/defines.h +0 -20
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/error.h +0 -229
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/evalue.h +0 -521
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/event_tracer.h +0 -565
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/event_tracer_hooks.h +0 -323
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/event_tracer_hooks_delegate.h +0 -197
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/exec_aten/exec_aten.h +0 -147
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/exec_aten/util/dim_order_util.h +0 -263
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/exec_aten/util/scalar_type_util.h +0 -1331
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h +0 -21
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h +0 -69
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/exec_aten/util/tensor_util.h +0 -1250
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/freeable_buffer.h +0 -107
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/hierarchical_allocator.h +0 -107
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/memory_allocator.h +0 -198
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/named_data_map.h +0 -86
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/bfloat16.h +0 -27
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/bfloat16_math.h +0 -14
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/bits_types.h +0 -83
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/macros/Export.h +0 -163
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h +0 -497
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h +0 -342
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h +0 -266
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h +0 -125
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h +0 -347
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/Half.h +0 -416
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h +0 -133
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h +0 -33
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/c10/c10/util/irange.h +0 -107
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/complex.h +0 -44
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/device.h +0 -70
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/half.h +0 -27
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/optional.h +0 -36
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/qint_types.h +0 -83
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/scalar.h +0 -110
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/scalar_type.h +0 -154
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/string_view.h +0 -29
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/tensor.h +0 -142
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/tensor_impl.h +0 -261
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/portable_type/tensor_options.h +0 -60
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/result.h +0 -258
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/span.h +0 -93
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/tag.h +0 -71
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/tensor_layout.h +0 -79
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/core/tensor_shape_dynamism.h +0 -39
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/executor/memory_manager.h +0 -113
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/executor/method.h +0 -387
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/executor/method_meta.h +0 -251
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/executor/program.h +0 -320
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/executor/pte_data_map.h +0 -144
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/executor/tensor_parser.h +0 -156
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/kernel/kernel_runtime_context.h +0 -122
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/kernel/operator_registry.h +0 -278
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/abort.h +0 -36
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/assert.h +0 -119
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/clock.h +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/compat_unistd.h +0 -75
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/compiler.h +0 -191
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/log.h +0 -177
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/platform.h +0 -133
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/profiler.h +0 -292
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/runtime.h +0 -35
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/system.h +0 -49
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/runtime/platform/types.h +0 -24
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/executorch/schema/extended_header.h +0 -76
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/Headers/module.modulemap +0 -5
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64/libexecutorch_ios.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/macros/Export.h +0 -163
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/macros/Macros.h +0 -497
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/BFloat16-inl.h +0 -342
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/BFloat16-math.h +0 -266
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/BFloat16.h +0 -125
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/Half-inl.h +0 -347
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/Half.h +0 -416
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/TypeSafeSignMath.h +0 -133
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/bit_cast.h +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/floating_point_utils.h +0 -33
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/c10/util/irange.h +0 -107
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/ExecuTorch.h +0 -13
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/ExecuTorchError.h +0 -16
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/ExecuTorchLog.h +0 -76
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/ExecuTorchModule.h +0 -286
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/ExecuTorchTensor.h +0 -742
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/ExecuTorchValue.h +0 -219
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/extension/module/module.h +0 -492
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/extension/tensor/tensor.h +0 -13
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/extension/tensor/tensor_accessor.h +0 -190
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/extension/tensor/tensor_ptr.h +0 -347
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/extension/tensor/tensor_ptr_maker.h +0 -653
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/backend/backend_execution_context.h +0 -71
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/backend/backend_init_context.h +0 -72
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/backend/interface.h +0 -166
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/array_ref.h +0 -235
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/data_loader.h +0 -136
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/defines.h +0 -20
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/error.h +0 -229
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/evalue.h +0 -521
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/event_tracer.h +0 -565
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/event_tracer_hooks.h +0 -323
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/event_tracer_hooks_delegate.h +0 -197
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/exec_aten/exec_aten.h +0 -147
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/exec_aten/util/dim_order_util.h +0 -263
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/exec_aten/util/scalar_type_util.h +0 -1331
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/exec_aten/util/tensor_dimension_limit.h +0 -21
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/exec_aten/util/tensor_shape_to_c_string.h +0 -69
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/exec_aten/util/tensor_util.h +0 -1250
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/freeable_buffer.h +0 -107
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/hierarchical_allocator.h +0 -107
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/memory_allocator.h +0 -198
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/named_data_map.h +0 -86
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/bfloat16.h +0 -27
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/bfloat16_math.h +0 -14
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/bits_types.h +0 -83
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/macros/Export.h +0 -163
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/macros/Macros.h +0 -497
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-inl.h +0 -342
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/BFloat16-math.h +0 -266
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/BFloat16.h +0 -125
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/Half-inl.h +0 -347
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/Half.h +0 -416
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/TypeSafeSignMath.h +0 -133
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/bit_cast.h +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/floating_point_utils.h +0 -33
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/c10/c10/util/irange.h +0 -107
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/complex.h +0 -44
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/device.h +0 -70
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/half.h +0 -27
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/optional.h +0 -36
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/qint_types.h +0 -83
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/scalar.h +0 -110
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/scalar_type.h +0 -154
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/string_view.h +0 -29
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/tensor.h +0 -142
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/tensor_impl.h +0 -261
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/portable_type/tensor_options.h +0 -60
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/result.h +0 -258
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/span.h +0 -93
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/tag.h +0 -71
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/tensor_layout.h +0 -79
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/core/tensor_shape_dynamism.h +0 -39
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/executor/memory_manager.h +0 -113
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/executor/method.h +0 -387
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/executor/method_meta.h +0 -251
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/executor/program.h +0 -320
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/executor/pte_data_map.h +0 -144
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/executor/tensor_parser.h +0 -156
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/kernel/kernel_runtime_context.h +0 -122
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/kernel/operator_registry.h +0 -278
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/abort.h +0 -36
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/assert.h +0 -119
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/clock.h +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/compat_unistd.h +0 -75
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/compiler.h +0 -191
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/log.h +0 -177
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/platform.h +0 -133
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/profiler.h +0 -292
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/runtime.h +0 -35
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/system.h +0 -49
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/runtime/platform/types.h +0 -24
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/executorch/schema/extended_header.h +0 -76
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/Headers/module.modulemap +0 -5
- package/third-party/ios/ExecutorchLib/frameworks/executorch.xcframework/ios-arm64-simulator/libexecutorch_simulator.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/kernels_custom.xcframework/Info.plist +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/kernels_custom.xcframework/ios-arm64/libkernels_custom_ios.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/kernels_custom.xcframework/ios-arm64-simulator/libkernels_custom_simulator.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/kernels_optimized.xcframework/Info.plist +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/kernels_optimized.xcframework/ios-arm64/libkernels_optimized_ios.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/kernels_optimized.xcframework/ios-arm64-simulator/libkernels_optimized_simulator.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/kernels_portable.xcframework/Info.plist +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/kernels_portable.xcframework/ios-arm64/libkernels_portable_ios.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/kernels_portable.xcframework/ios-arm64-simulator/libkernels_portable_simulator.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/kernels_quantized.xcframework/Info.plist +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/kernels_quantized.xcframework/ios-arm64/libkernels_quantized_ios.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/kernels_quantized.xcframework/ios-arm64-simulator/libkernels_quantized_simulator.a +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/Info.plist +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/bitmap256.h +0 -82
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/filtered_re2.h +0 -111
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/pod_array.h +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/prefilter.h +0 -130
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/prefilter_tree.h +0 -139
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/prog.h +0 -483
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/re2.h +0 -994
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/regexp.h +0 -692
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/set.h +0 -85
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/sparse_array.h +0 -367
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/sparse_set.h +0 -241
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/stringpiece.h +0 -205
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/unicode_casefold.h +0 -78
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/unicode_groups.h +0 -64
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Headers/walker-inl.h +0 -235
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/Info.plist +0 -26
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64/re2.framework/re2 +0 -0
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/bitmap256.h +0 -82
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/filtered_re2.h +0 -111
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/pod_array.h +0 -43
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/prefilter.h +0 -130
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/prefilter_tree.h +0 -139
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/prog.h +0 -483
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/re2.h +0 -994
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/regexp.h +0 -692
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/set.h +0 -85
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/sparse_array.h +0 -367
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/sparse_set.h +0 -241
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/stringpiece.h +0 -205
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/unicode_casefold.h +0 -78
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/unicode_groups.h +0 -64
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Headers/walker-inl.h +0 -235
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/Info.plist +0 -26
- package/third-party/ios/ExecutorchLib/frameworks/re2.xcframework/ios-arm64-simulator/re2.framework/re2 +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/irunner.h +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/runner.cpp +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/runner.h +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/stats.h +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/text_decoder_runner.cpp +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/text_decoder_runner.h +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/text_prefiller.cpp +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/text_prefiller.h +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/text_token_generator.h +0 -0
- /package/{third-party/ios/ExecutorchLib/ExecutorchLib → common}/runner/util.h +0 -0
|
@@ -1,320 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
* All rights reserved.
|
|
4
|
-
*
|
|
5
|
-
* This source code is licensed under the BSD-style license found in the
|
|
6
|
-
* LICENSE file in the root directory of this source tree.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
#pragma once
|
|
10
|
-
|
|
11
|
-
#ifdef __GNUC__
|
|
12
|
-
// Disable -Wdeprecated-declarations, as some builds use 'Werror'.
|
|
13
|
-
#pragma GCC diagnostic push
|
|
14
|
-
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
15
|
-
#endif
|
|
16
|
-
|
|
17
|
-
#include <cinttypes>
|
|
18
|
-
#include <cstdint>
|
|
19
|
-
#include <optional>
|
|
20
|
-
|
|
21
|
-
#include <executorch/runtime/core/data_loader.h>
|
|
22
|
-
#include <executorch/runtime/core/error.h>
|
|
23
|
-
#include <executorch/runtime/core/event_tracer.h>
|
|
24
|
-
#include <executorch/runtime/core/freeable_buffer.h>
|
|
25
|
-
#include <executorch/runtime/core/result.h>
|
|
26
|
-
#include <executorch/runtime/executor/memory_manager.h>
|
|
27
|
-
#include <executorch/runtime/executor/method.h>
|
|
28
|
-
#include <executorch/runtime/executor/method_meta.h>
|
|
29
|
-
#include <executorch/runtime/executor/pte_data_map.h>
|
|
30
|
-
#include <executorch/runtime/platform/compiler.h>
|
|
31
|
-
|
|
32
|
-
// Forward declare flatbuffer types. This is a public header and must not
|
|
33
|
-
// include the generated flatbuffer header.
|
|
34
|
-
namespace executorch_flatbuffer {
|
|
35
|
-
struct Program;
|
|
36
|
-
} // namespace executorch_flatbuffer
|
|
37
|
-
|
|
38
|
-
namespace executorch {
|
|
39
|
-
namespace runtime {
|
|
40
|
-
|
|
41
|
-
namespace testing {
|
|
42
|
-
// Provides test access to private Program methods.
|
|
43
|
-
class ProgramTestFriend;
|
|
44
|
-
} // namespace testing
|
|
45
|
-
|
|
46
|
-
namespace deserialization {
|
|
47
|
-
// Provides Tensor deserializaiton access to private Program methods.
|
|
48
|
-
class TensorParser;
|
|
49
|
-
} // namespace deserialization
|
|
50
|
-
|
|
51
|
-
/**
|
|
52
|
-
* A deserialized ExecuTorch program binary.
|
|
53
|
-
*/
|
|
54
|
-
class Program final {
|
|
55
|
-
public:
|
|
56
|
-
/**
|
|
57
|
-
* Types of validation that the Program can do before parsing the data.
|
|
58
|
-
*/
|
|
59
|
-
enum class Verification : uint8_t {
|
|
60
|
-
/**
|
|
61
|
-
* Do minimal verification of the data, ensuring that the header appears
|
|
62
|
-
* correct.
|
|
63
|
-
*
|
|
64
|
-
* Has minimal runtime overhead.
|
|
65
|
-
*/
|
|
66
|
-
Minimal,
|
|
67
|
-
/**
|
|
68
|
-
* Do full verification of the data, ensuring that internal pointers are
|
|
69
|
-
* self-consistent and that the data has not been truncated or obviously
|
|
70
|
-
* corrupted. May not catch all types of corruption, but should guard
|
|
71
|
-
* against illegal memory operations during parsing.
|
|
72
|
-
*
|
|
73
|
-
* Will have higher runtime overhead, scaling with the complexity of the
|
|
74
|
-
* proram data.
|
|
75
|
-
*/
|
|
76
|
-
InternalConsistency,
|
|
77
|
-
};
|
|
78
|
-
|
|
79
|
-
/**
|
|
80
|
-
* Loads a Program from the provided loader. The Program will hold a pointer
|
|
81
|
-
* to the loader, which must outlive the returned Program instance.
|
|
82
|
-
*
|
|
83
|
-
* @param[in] loader The source to load program data from. The Program will
|
|
84
|
-
* hold a pointer to this loader, which must outlive the returned Program
|
|
85
|
-
* instance.
|
|
86
|
-
* @param[in] verification The type of verification to do before returning
|
|
87
|
-
* success.
|
|
88
|
-
*/
|
|
89
|
-
ET_NODISCARD static Result<Program>
|
|
90
|
-
load(DataLoader *loader, Verification verification = Verification::Minimal);
|
|
91
|
-
|
|
92
|
-
/// DEPRECATED: Use the lowercase `load()` instead.
|
|
93
|
-
ET_DEPRECATED ET_NODISCARD static Result<Program>
|
|
94
|
-
Load(DataLoader *loader, Verification verification = Verification::Minimal) {
|
|
95
|
-
return load(loader, verification);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
// Movable, to be compatible with Result.
|
|
99
|
-
Program(Program &&) noexcept = default;
|
|
100
|
-
~Program() = default;
|
|
101
|
-
|
|
102
|
-
/**
|
|
103
|
-
* Get the constant buffer inside Program with index buffer_idx.
|
|
104
|
-
* @param[in] buffer_idx the index of the buffer in the constant_buffer.
|
|
105
|
-
* @param[in] nbytes the number of bytes to read from the buffer.
|
|
106
|
-
* @return The buffer with corresponding index.
|
|
107
|
-
*/
|
|
108
|
-
Result<const void *> get_constant_buffer_data(size_t buffer_idx,
|
|
109
|
-
size_t nbytes) const;
|
|
110
|
-
|
|
111
|
-
/**
|
|
112
|
-
* Get the named data map from the program.
|
|
113
|
-
* @return The named data map.
|
|
114
|
-
*/
|
|
115
|
-
Result<const NamedDataMap *> get_named_data_map() const;
|
|
116
|
-
|
|
117
|
-
/**
|
|
118
|
-
* Returns the number of methods in the program.
|
|
119
|
-
*/
|
|
120
|
-
size_t num_methods() const;
|
|
121
|
-
|
|
122
|
-
/**
|
|
123
|
-
* Returns the name of the method at particular index.
|
|
124
|
-
*
|
|
125
|
-
* @param[in] method_index The index of the method name to retrieve. Must be
|
|
126
|
-
* less than the value returned by `num_methods()`.
|
|
127
|
-
*
|
|
128
|
-
* @returns The name of the requested method. The pointer is owned by the
|
|
129
|
-
* Program, and has the same lifetime as the Program.
|
|
130
|
-
*/
|
|
131
|
-
Result<const char *> get_method_name(size_t method_index) const;
|
|
132
|
-
|
|
133
|
-
/**
|
|
134
|
-
* Loads the named method and prepares it for execution.
|
|
135
|
-
*
|
|
136
|
-
* @param[in] method_name The name of the method to load.
|
|
137
|
-
* @param[in] memory_manager The allocators to use during initialization and
|
|
138
|
-
* execution of the loaded method. If `memory_manager.temp_allocator()` is
|
|
139
|
-
* null, the runtime will allocate temp memory using `et_pal_allocate()`.
|
|
140
|
-
* @param[in] event_tracer The event tracer to use for this method run.
|
|
141
|
-
* @param[in] named_data_map An optional map of {name, blob} used to resolve
|
|
142
|
-
* data that is external to the PTE, if any.
|
|
143
|
-
*
|
|
144
|
-
* @returns The loaded method on success, or an error on failure.
|
|
145
|
-
*/
|
|
146
|
-
Result<Method>
|
|
147
|
-
load_method(const char *method_name, MemoryManager *memory_manager,
|
|
148
|
-
EventTracer *event_tracer = nullptr,
|
|
149
|
-
const NamedDataMap *named_data_map = nullptr) const;
|
|
150
|
-
|
|
151
|
-
/**
|
|
152
|
-
* Gathers metadata for the named method.
|
|
153
|
-
*
|
|
154
|
-
* @param[in] method_name The name of the method to get metadata for.
|
|
155
|
-
*/
|
|
156
|
-
Result<MethodMeta> method_meta(const char *method_name) const;
|
|
157
|
-
|
|
158
|
-
/**
|
|
159
|
-
* DEPRECATED: Get the pytree encoding string for the output. Deprecated as
|
|
160
|
-
* this functionality will eventually move out of the core program into a
|
|
161
|
-
* higher level structure, but that does not exist at this time.
|
|
162
|
-
* @param[in] method_name The name of the method to get the encoding for.
|
|
163
|
-
*
|
|
164
|
-
* @return The pytree encoding string for the output
|
|
165
|
-
*/
|
|
166
|
-
ET_DEPRECATED Result<const char *>
|
|
167
|
-
get_output_flattening_encoding(const char *method_name = "forward") const;
|
|
168
|
-
|
|
169
|
-
/**
|
|
170
|
-
* Describes the presence of an ExecuTorch program header.
|
|
171
|
-
*/
|
|
172
|
-
enum HeaderStatus {
|
|
173
|
-
/**
|
|
174
|
-
* An ExecuTorch program header is present, and its version is compatible
|
|
175
|
-
* with this version of the runtime.
|
|
176
|
-
*/
|
|
177
|
-
CompatibleVersion,
|
|
178
|
-
|
|
179
|
-
/**
|
|
180
|
-
* An ExecuTorch program header is present, but its version is not
|
|
181
|
-
* compatible with this version of the runtime.
|
|
182
|
-
*/
|
|
183
|
-
IncompatibleVersion,
|
|
184
|
-
|
|
185
|
-
/**
|
|
186
|
-
* An ExecuTorch program header is not present.
|
|
187
|
-
*/
|
|
188
|
-
NotPresent,
|
|
189
|
-
|
|
190
|
-
/**
|
|
191
|
-
* The data provided was too short to find the program header.
|
|
192
|
-
*/
|
|
193
|
-
ShortData,
|
|
194
|
-
};
|
|
195
|
-
|
|
196
|
-
/**
|
|
197
|
-
* The minimum number of bytes necessary for calls to `check_header`.
|
|
198
|
-
*/
|
|
199
|
-
static constexpr size_t kMinHeadBytes = 64;
|
|
200
|
-
|
|
201
|
-
/**
|
|
202
|
-
* Looks for an ExecuTorch program header in the provided data.
|
|
203
|
-
*
|
|
204
|
-
* @param[in] data The data from the beginning of a file that might contain
|
|
205
|
-
* an ExecuTorch program.
|
|
206
|
-
* @param[in] size The size of `data` in bytes. Must be >= `kMinHeadBytes`.
|
|
207
|
-
*
|
|
208
|
-
* @returns A value describing the presence of a header in the data.
|
|
209
|
-
*/
|
|
210
|
-
static HeaderStatus check_header(const void *data, size_t size);
|
|
211
|
-
|
|
212
|
-
private:
|
|
213
|
-
// Let some classes call these private methods.
|
|
214
|
-
friend class BackendDelegate;
|
|
215
|
-
friend class Executor;
|
|
216
|
-
friend class Method;
|
|
217
|
-
friend class deserialization::TensorParser;
|
|
218
|
-
friend class testing::ProgramTestFriend;
|
|
219
|
-
|
|
220
|
-
const executorch_flatbuffer::Program *get_internal_program() const {
|
|
221
|
-
return internal_program_;
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
// Used by Method to look up entries in the delegate data table.
|
|
225
|
-
Error get_backend_delegate_data(size_t index, const void **out_data,
|
|
226
|
-
size_t *out_size) const;
|
|
227
|
-
|
|
228
|
-
/**
|
|
229
|
-
* Loads a segment by index.
|
|
230
|
-
*
|
|
231
|
-
* @param[in] segment_info Struct containing an index to load from the
|
|
232
|
-
* Program.segments list. The other fields of the struct, such as
|
|
233
|
-
* `segment_type` and `descriptor`, need to also be correct.
|
|
234
|
-
*
|
|
235
|
-
* @returns The data as a FreeableBuffer, if the index is valid.
|
|
236
|
-
* @retval Error::NotFound The program does not contain any segments or the
|
|
237
|
-
* index is out of range.
|
|
238
|
-
* @returns Other errors depending on the implementation of
|
|
239
|
-
* DataLoader: The Program.segment table is inconsistent, or the
|
|
240
|
-
* data cannot be accessed.
|
|
241
|
-
*/
|
|
242
|
-
ET_NODISCARD Result<FreeableBuffer>
|
|
243
|
-
LoadSegment(const DataLoader::SegmentInfo &segment_info) const;
|
|
244
|
-
|
|
245
|
-
/**
|
|
246
|
-
* Loads a portion of a mutable segment into the provided buffer.
|
|
247
|
-
*
|
|
248
|
-
* @param[in] mutable_data_segments_index The index into the
|
|
249
|
-
* mutable_data_segments_array.
|
|
250
|
-
* @param[in] offset_index The index into the segment's offsets array.
|
|
251
|
-
* @param[in] size The number of bytes to load.
|
|
252
|
-
* @param[in] buffer The buffer to load data into. Must point to at least
|
|
253
|
-
* `size` bytes of memory.
|
|
254
|
-
*
|
|
255
|
-
* @returns An error code on if the load was successful.
|
|
256
|
-
* @retval Error::Ok The load was successful.
|
|
257
|
-
* @retval Error::NotFound The program does not contain any segments or the
|
|
258
|
-
* indices are out of range.
|
|
259
|
-
* @returns Other errors depending on the implementation of
|
|
260
|
-
* DataLoader: The Program.segment table is inconsistent, or the
|
|
261
|
-
* data cannot be accessed.
|
|
262
|
-
*/
|
|
263
|
-
ET_NODISCARD Error load_mutable_subsegment_into(
|
|
264
|
-
size_t mutable_data_segments_index, size_t offset_index, size_t size,
|
|
265
|
-
void *buffer) const;
|
|
266
|
-
|
|
267
|
-
private:
|
|
268
|
-
Program(DataLoader *loader, size_t segment_base_offset,
|
|
269
|
-
FreeableBuffer &&program_data,
|
|
270
|
-
const executorch_flatbuffer::Program *internal_program,
|
|
271
|
-
FreeableBuffer &&constant_segment_data,
|
|
272
|
-
std::optional<internal::PteDataMap> &&pte_data_map)
|
|
273
|
-
: program_data_(std::move(program_data)),
|
|
274
|
-
// Don't need the loader if there are no segments.
|
|
275
|
-
loader_(segment_base_offset > 0 ? loader : nullptr),
|
|
276
|
-
internal_program_(internal_program),
|
|
277
|
-
segment_base_offset_(segment_base_offset),
|
|
278
|
-
constant_segment_data_(std::move(constant_segment_data)),
|
|
279
|
-
pte_data_map_(std::move(pte_data_map)) {}
|
|
280
|
-
|
|
281
|
-
// Not copyable or assignable.
|
|
282
|
-
Program(const Program &rhs) = delete;
|
|
283
|
-
Program &operator=(Program &&rhs) noexcept = delete;
|
|
284
|
-
Program &operator=(const Program &rhs) = delete;
|
|
285
|
-
|
|
286
|
-
/// The serialized program data. Tensors will point directly into this buffer.
|
|
287
|
-
FreeableBuffer program_data_;
|
|
288
|
-
|
|
289
|
-
/// Used to load segment data. Null if there are no segments.
|
|
290
|
-
DataLoader *loader_;
|
|
291
|
-
|
|
292
|
-
/// The flatbuffer representation of the program. Must not be exposed to
|
|
293
|
-
/// users.
|
|
294
|
-
const executorch_flatbuffer::Program *internal_program_;
|
|
295
|
-
|
|
296
|
-
/// The offset to the first segment, in bytes. If zero, no segments should
|
|
297
|
-
/// be present in internal_program_.
|
|
298
|
-
size_t segment_base_offset_;
|
|
299
|
-
|
|
300
|
-
/// Constant segment data.
|
|
301
|
-
FreeableBuffer constant_segment_data_;
|
|
302
|
-
|
|
303
|
-
/// NamedDataMap holding named data from the program.
|
|
304
|
-
std::optional<internal::PteDataMap> pte_data_map_;
|
|
305
|
-
};
|
|
306
|
-
|
|
307
|
-
} // namespace runtime
|
|
308
|
-
} // namespace executorch
|
|
309
|
-
|
|
310
|
-
namespace torch {
|
|
311
|
-
namespace executor {
|
|
312
|
-
// TODO(T197294990): Remove these deprecated aliases once all users have moved
|
|
313
|
-
// to the new `::executorch` namespaces.
|
|
314
|
-
using ::executorch::runtime::Program;
|
|
315
|
-
} // namespace executor
|
|
316
|
-
} // namespace torch
|
|
317
|
-
|
|
318
|
-
#ifdef __GNUC__
|
|
319
|
-
#pragma GCC diagnostic pop
|
|
320
|
-
#endif
|
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
* All rights reserved.
|
|
4
|
-
*
|
|
5
|
-
* This source code is licensed under the BSD-style license found in the
|
|
6
|
-
* LICENSE file in the root directory of this source tree.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
#pragma once
|
|
10
|
-
|
|
11
|
-
#include <executorch/runtime/core/data_loader.h>
|
|
12
|
-
#include <executorch/runtime/core/named_data_map.h>
|
|
13
|
-
|
|
14
|
-
// Forward declare flatbuffer types. This is a public header and must not
|
|
15
|
-
// include the generated flatbuffer header.
|
|
16
|
-
namespace executorch_flatbuffer {
|
|
17
|
-
struct NamedData;
|
|
18
|
-
struct DataSegment;
|
|
19
|
-
} // namespace executorch_flatbuffer
|
|
20
|
-
|
|
21
|
-
namespace flatbuffers {
|
|
22
|
-
template <typename T> struct Offset;
|
|
23
|
-
} // namespace flatbuffers
|
|
24
|
-
|
|
25
|
-
// @lint-ignore CLANGTIDY facebook-modularize-issue-check
|
|
26
|
-
#if EXECUTORCH_INTERNAL_FLATBUFFERS == 1
|
|
27
|
-
// TODO(T216992074): update internal flatbuffers (v1.12) to match OSS (v24.3.5).
|
|
28
|
-
namespace flatbuffers {
|
|
29
|
-
template <typename T> class Vector;
|
|
30
|
-
using FlatbufferNamedData =
|
|
31
|
-
flatbuffers::Vector<flatbuffers::Offset<executorch_flatbuffer::NamedData>>;
|
|
32
|
-
using FlatbufferDataSegment = flatbuffers::Vector<
|
|
33
|
-
flatbuffers::Offset<executorch_flatbuffer::DataSegment>>;
|
|
34
|
-
} // namespace flatbuffers
|
|
35
|
-
#else
|
|
36
|
-
namespace flatbuffers {
|
|
37
|
-
template <typename T, typename SizeT> class Vector;
|
|
38
|
-
using FlatbufferNamedData =
|
|
39
|
-
flatbuffers::Vector<flatbuffers::Offset<executorch_flatbuffer::NamedData>,
|
|
40
|
-
uint32_t>;
|
|
41
|
-
using FlatbufferDataSegment =
|
|
42
|
-
flatbuffers::Vector<flatbuffers::Offset<executorch_flatbuffer::DataSegment>,
|
|
43
|
-
uint32_t>;
|
|
44
|
-
} // namespace flatbuffers
|
|
45
|
-
#endif
|
|
46
|
-
|
|
47
|
-
namespace executorch {
|
|
48
|
-
namespace runtime {
|
|
49
|
-
namespace internal {
|
|
50
|
-
|
|
51
|
-
/**
|
|
52
|
-
* A NamedDataMap implementation for Flatbuffer-serialized named data
|
|
53
|
-
* originating from a PTE file.
|
|
54
|
-
*/
|
|
55
|
-
class PteDataMap final : public NamedDataMap {
|
|
56
|
-
public:
|
|
57
|
-
/**
|
|
58
|
-
* Creates a new DataMap that wraps named_data from the PTE file.
|
|
59
|
-
*
|
|
60
|
-
* @param[in] loader The DataLoader that accesses the PTE file.
|
|
61
|
-
* Note: the loader must outlive the PteDataMap instance.
|
|
62
|
-
* @param[in] segment_base_offset The offset to the first segment in the PTE
|
|
63
|
-
* file, in bytes.
|
|
64
|
-
* @param[in] named_data The named_data from the PTE file. Note: the pointer
|
|
65
|
-
* passed here must outlive the PteDataMap instance.
|
|
66
|
-
* @param[in] segments The segments from the PTE file. Note: the pointer
|
|
67
|
-
* passed here must outlive the PteDataMap instance.
|
|
68
|
-
*/
|
|
69
|
-
static Result<PteDataMap>
|
|
70
|
-
create(DataLoader *loader, size_t segment_base_offset,
|
|
71
|
-
const flatbuffers::FlatbufferNamedData *named_data,
|
|
72
|
-
const flatbuffers::FlatbufferDataSegment *segments);
|
|
73
|
-
|
|
74
|
-
/**
|
|
75
|
-
* The PteDataMap currently only handles opaque data that does not contain
|
|
76
|
-
* tensor-specific metadata.
|
|
77
|
-
*/
|
|
78
|
-
ET_NODISCARD
|
|
79
|
-
Result<const TensorLayout>
|
|
80
|
-
get_metadata(ET_UNUSED const char *key) const override {
|
|
81
|
-
return Error::NotImplemented;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* Retrieve read-only data for the specified key.
|
|
86
|
-
*
|
|
87
|
-
* @param[in] key The name of the blob to get data on.
|
|
88
|
-
*
|
|
89
|
-
* @return error if the key is not present or data cannot be loaded.
|
|
90
|
-
*/
|
|
91
|
-
ET_NODISCARD
|
|
92
|
-
Result<FreeableBuffer> get_data(const char *key) const override;
|
|
93
|
-
|
|
94
|
-
/**
|
|
95
|
-
* The PteDataMap currently does not implement load_into.
|
|
96
|
-
*/
|
|
97
|
-
ET_NODISCARD Error load_data_into(ET_UNUSED const char *key,
|
|
98
|
-
ET_UNUSED void *buffer,
|
|
99
|
-
ET_UNUSED size_t size) const override {
|
|
100
|
-
return Error::NotImplemented;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
/**
|
|
104
|
-
* @returns The number of keys in the map.
|
|
105
|
-
*/
|
|
106
|
-
ET_NODISCARD Result<size_t> get_num_keys() const override;
|
|
107
|
-
|
|
108
|
-
/**
|
|
109
|
-
* @returns The key at the specified index, error if index out of bounds.
|
|
110
|
-
*/
|
|
111
|
-
ET_NODISCARD Result<const char *> get_key(size_t index) const override;
|
|
112
|
-
|
|
113
|
-
// Moveable, to be compatible with Result.
|
|
114
|
-
PteDataMap(PteDataMap &&) noexcept = default;
|
|
115
|
-
~PteDataMap() override = default;
|
|
116
|
-
|
|
117
|
-
private:
|
|
118
|
-
PteDataMap(DataLoader *loader, size_t segment_base_offset,
|
|
119
|
-
const flatbuffers::FlatbufferNamedData *named_data,
|
|
120
|
-
const flatbuffers::FlatbufferDataSegment *segments)
|
|
121
|
-
: loader_(loader), segment_base_offset_(segment_base_offset),
|
|
122
|
-
named_data_(named_data), segments_(segments) {}
|
|
123
|
-
|
|
124
|
-
// Not copyable or assignable.
|
|
125
|
-
PteDataMap(const PteDataMap &rhs) = delete;
|
|
126
|
-
PteDataMap &operator=(PteDataMap &&rhs) noexcept = delete;
|
|
127
|
-
PteDataMap &operator=(const PteDataMap &rhs) = delete;
|
|
128
|
-
|
|
129
|
-
// Data loader, used to load segment data.
|
|
130
|
-
DataLoader *loader_;
|
|
131
|
-
|
|
132
|
-
// The offset to the first segment in the PTE file, in bytes.
|
|
133
|
-
size_t segment_base_offset_;
|
|
134
|
-
|
|
135
|
-
// Named data, containing name and segment index.
|
|
136
|
-
const flatbuffers::FlatbufferNamedData *named_data_;
|
|
137
|
-
|
|
138
|
-
// Segments, to retrieve offset and size for the loader.
|
|
139
|
-
const flatbuffers::FlatbufferDataSegment *segments_;
|
|
140
|
-
};
|
|
141
|
-
|
|
142
|
-
} // namespace internal
|
|
143
|
-
} // namespace runtime
|
|
144
|
-
} // namespace executorch
|
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
-
* All rights reserved.
|
|
4
|
-
*
|
|
5
|
-
* This source code is licensed under the BSD-style license found in the
|
|
6
|
-
* LICENSE file in the root directory of this source tree.
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
#pragma once
|
|
10
|
-
|
|
11
|
-
#ifdef __GNUC__
|
|
12
|
-
// Disable -Wdeprecated-declarations, as some builds use 'Werror'.
|
|
13
|
-
#pragma GCC diagnostic push
|
|
14
|
-
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
15
|
-
#endif
|
|
16
|
-
|
|
17
|
-
#include <executorch/runtime/core/evalue.h>
|
|
18
|
-
#include <executorch/runtime/core/exec_aten/exec_aten.h>
|
|
19
|
-
#include <executorch/runtime/executor/memory_manager.h>
|
|
20
|
-
#include <executorch/runtime/executor/program.h>
|
|
21
|
-
#include <executorch/schema/program_generated.h>
|
|
22
|
-
|
|
23
|
-
namespace executorch {
|
|
24
|
-
namespace runtime {
|
|
25
|
-
namespace deserialization {
|
|
26
|
-
|
|
27
|
-
/// Data structure to hold key and data buffer for external data used
|
|
28
|
-
/// in a method.
|
|
29
|
-
struct NamedData {
|
|
30
|
-
const char *key;
|
|
31
|
-
FreeableBuffer buffer;
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
NamedData *get_data_by_key(const char *key, Span<NamedData> entries);
|
|
35
|
-
|
|
36
|
-
ET_NODISCARD Result<executorch::aten::Tensor>
|
|
37
|
-
parseTensor(const Program *program, MemoryManager *memory_manager,
|
|
38
|
-
const executorch_flatbuffer::Tensor *s_tensor,
|
|
39
|
-
const NamedDataMap *named_data_map = nullptr,
|
|
40
|
-
Span<NamedData> external_constants = {});
|
|
41
|
-
|
|
42
|
-
ET_NODISCARD Result<BoxedEvalueList<executorch::aten::Tensor>>
|
|
43
|
-
parseTensorList(const flatbuffers::Vector<int32_t> *tensor_indices,
|
|
44
|
-
EValue *values, size_t values_len,
|
|
45
|
-
MemoryManager *memory_manager);
|
|
46
|
-
|
|
47
|
-
// Checks that the sizes, dim_order and scalar_type match between tensors
|
|
48
|
-
// stored in the PTE and externally.
|
|
49
|
-
ET_NODISCARD Error
|
|
50
|
-
validateTensorLayout(const executorch_flatbuffer::Tensor *s_tensor,
|
|
51
|
-
const TensorLayout &expected_layout);
|
|
52
|
-
|
|
53
|
-
// Deserializes a List of optional type. The code here is the same between all
|
|
54
|
-
// list of optionals: list of optional Tensor, list of optional float etc, so we
|
|
55
|
-
// just use a template to avoid boilerplate.
|
|
56
|
-
template <typename T>
|
|
57
|
-
ET_NODISCARD Result<BoxedEvalueList<executorch::aten::optional<T>>>
|
|
58
|
-
parseListOptionalType(const flatbuffers::Vector<int32_t> *value_indices,
|
|
59
|
-
EValue *values, size_t values_len,
|
|
60
|
-
MemoryManager *memory_manager) {
|
|
61
|
-
auto *evalp_list = memory_manager->method_allocator()->allocateList<EValue *>(
|
|
62
|
-
value_indices->size());
|
|
63
|
-
if (evalp_list == nullptr) {
|
|
64
|
-
return Error::MemoryAllocationFailed;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
auto *optional_tensor_list =
|
|
68
|
-
memory_manager->method_allocator()
|
|
69
|
-
->allocateList<executorch::aten::optional<T>>(value_indices->size());
|
|
70
|
-
if (optional_tensor_list == nullptr) {
|
|
71
|
-
return Error::MemoryAllocationFailed;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
size_t output_idx = 0;
|
|
75
|
-
// For each index look up the corresponding EValue (which has been
|
|
76
|
-
// already allocated) and stick it in the list.
|
|
77
|
-
for (int32_t index : *value_indices) {
|
|
78
|
-
// Lists of objects are stored in fbb as list[int] where the ints are
|
|
79
|
-
// indices into values. Currently serialization is deciding if they want to
|
|
80
|
-
// put -1 for serialized None type indices, or give us a valid index to a
|
|
81
|
-
// serialized None. We support either for now.
|
|
82
|
-
// Placement new as the list elements are not initialized, so calling
|
|
83
|
-
// copy assignment is not defined if its non trivial.
|
|
84
|
-
if (index == -1) {
|
|
85
|
-
new (&optional_tensor_list[output_idx])
|
|
86
|
-
executorch::aten::optional<T>(executorch::aten::nullopt);
|
|
87
|
-
// no value to point to. BoxedEvalueList for optional tensor will convert
|
|
88
|
-
// this to nullopt.
|
|
89
|
-
// TODO(T161156879): do something less hacky here.
|
|
90
|
-
evalp_list[output_idx] = nullptr;
|
|
91
|
-
} else {
|
|
92
|
-
ET_CHECK_OR_RETURN_ERROR(
|
|
93
|
-
index >= 0 && static_cast<size_t>(index) < values_len, InvalidProgram,
|
|
94
|
-
"Invalid value index %" PRId32 " for ListOptional", index);
|
|
95
|
-
new (&optional_tensor_list[output_idx])
|
|
96
|
-
executorch::aten::optional<T>(values[index].toOptional<T>());
|
|
97
|
-
evalp_list[output_idx] = &values[static_cast<size_t>(index)];
|
|
98
|
-
}
|
|
99
|
-
output_idx++;
|
|
100
|
-
}
|
|
101
|
-
return BoxedEvalueList<executorch::aten::optional<T>>(
|
|
102
|
-
evalp_list, optional_tensor_list, value_indices->size());
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
/**
|
|
106
|
-
* Returns the appropriate data pointer for `s_tensor`.
|
|
107
|
-
*
|
|
108
|
-
* Overall, a Tensor is either constant or non-constant, except we differentiate
|
|
109
|
-
* 2 special variants of non-constant Tensor ("input" and control-flow
|
|
110
|
-
* "placeholder") as a special optimization to avoid holding unnecessary
|
|
111
|
-
* AllocationDetails. Thus, s_tensor can be configured as 1 of 3 options:
|
|
112
|
-
* - constant_buffer > 0, allocation_info = Null: Constant Tensor.
|
|
113
|
-
* - constant_buffer = 0, allocation_info = Non Null: Non-constant Tensor.
|
|
114
|
-
* - constant_buffer = 0, allocation_info = Null: Input/placeholder Tensor.
|
|
115
|
-
*
|
|
116
|
-
* @param[in] s_tensor The tensor to find the data pointer for.
|
|
117
|
-
* @param[in] program The Program to use for constant buffer data.
|
|
118
|
-
* @param[in] nbytes The amount of memory to get from the allocator.
|
|
119
|
-
* @param[in] allocator The source of memory for non-constant tensors.
|
|
120
|
-
* @param[in] named_data_map An optional map of {name, blob} used to resolve
|
|
121
|
-
* data that is mutable and external to the PTE, if any.
|
|
122
|
-
* @param[in] external_constants An optional span containing tensor fqn to
|
|
123
|
-
* corresponding tensor data. Used to resolve data that is constant and
|
|
124
|
-
* external to the PTE, if any. Referencing data from external_constants is
|
|
125
|
-
* safe, as it has the same lifetime as the method.
|
|
126
|
-
*
|
|
127
|
-
* @returns On success, the data pointer to use for the tensor. On failure, a
|
|
128
|
-
* non-Ok Error.
|
|
129
|
-
*/
|
|
130
|
-
ET_NODISCARD Result<void *>
|
|
131
|
-
getTensorDataPtr(const executorch_flatbuffer::Tensor *s_tensor,
|
|
132
|
-
const Program *program, size_t nbytes,
|
|
133
|
-
HierarchicalAllocator *allocator,
|
|
134
|
-
const NamedDataMap *named_data_map = nullptr,
|
|
135
|
-
Span<NamedData> external_constants = {});
|
|
136
|
-
|
|
137
|
-
} // namespace deserialization
|
|
138
|
-
} // namespace runtime
|
|
139
|
-
} // namespace executorch
|
|
140
|
-
|
|
141
|
-
namespace torch {
|
|
142
|
-
namespace executor {
|
|
143
|
-
namespace deserialization {
|
|
144
|
-
// TODO(T197294990): Remove these deprecated aliases once all users have moved
|
|
145
|
-
// to the new `::executorch` namespaces.
|
|
146
|
-
using ::executorch::runtime::deserialization::getTensorDataPtr;
|
|
147
|
-
using ::executorch::runtime::deserialization::parseListOptionalType;
|
|
148
|
-
using ::executorch::runtime::deserialization::parseTensor;
|
|
149
|
-
using ::executorch::runtime::deserialization::parseTensorList;
|
|
150
|
-
} // namespace deserialization
|
|
151
|
-
} // namespace executor
|
|
152
|
-
} // namespace torch
|
|
153
|
-
|
|
154
|
-
#ifdef __GNUC__
|
|
155
|
-
#pragma GCC diagnostic pop
|
|
156
|
-
#endif
|