onnxruntime-directml 1.20.0__cp313-cp313-win_amd64.whl
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.
- onnxruntime/LICENSE +21 -0
- onnxruntime/Privacy.md +21 -0
- onnxruntime/ThirdPartyNotices.txt +6508 -0
- onnxruntime/__init__.py +78 -0
- onnxruntime/backend/__init__.py +6 -0
- onnxruntime/backend/backend.py +174 -0
- onnxruntime/backend/backend_rep.py +53 -0
- onnxruntime/capi/DirectML.dll +0 -0
- onnxruntime/capi/__init__.py +4 -0
- onnxruntime/capi/_ld_preload.py +7 -0
- onnxruntime/capi/_pybind_state.py +33 -0
- onnxruntime/capi/convert_npz_to_onnx_adapter.py +48 -0
- onnxruntime/capi/onnxruntime.dll +0 -0
- onnxruntime/capi/onnxruntime_collect_build_info.py +47 -0
- onnxruntime/capi/onnxruntime_inference_collection.py +1108 -0
- onnxruntime/capi/onnxruntime_providers_shared.dll +0 -0
- onnxruntime/capi/onnxruntime_pybind11_state.pyd +0 -0
- onnxruntime/capi/onnxruntime_validation.py +150 -0
- onnxruntime/capi/version_info.py +2 -0
- onnxruntime/datasets/__init__.py +17 -0
- onnxruntime/datasets/logreg_iris.onnx +0 -0
- onnxruntime/datasets/mul_1.onnx +0 -0
- onnxruntime/datasets/sigmoid.onnx +13 -0
- onnxruntime/quantization/CalTableFlatBuffers/KeyValue.py +78 -0
- onnxruntime/quantization/CalTableFlatBuffers/TrtTable.py +90 -0
- onnxruntime/quantization/CalTableFlatBuffers/__init__.py +0 -0
- onnxruntime/quantization/__init__.py +16 -0
- onnxruntime/quantization/base_quantizer.py +532 -0
- onnxruntime/quantization/calibrate.py +1245 -0
- onnxruntime/quantization/execution_providers/qnn/__init__.py +2 -0
- onnxruntime/quantization/execution_providers/qnn/fusion_lpnorm.py +132 -0
- onnxruntime/quantization/execution_providers/qnn/mixed_precision_overrides_utils.py +413 -0
- onnxruntime/quantization/execution_providers/qnn/preprocess.py +307 -0
- onnxruntime/quantization/execution_providers/qnn/quant_config.py +387 -0
- onnxruntime/quantization/fusions/__init__.py +3 -0
- onnxruntime/quantization/fusions/fusion.py +311 -0
- onnxruntime/quantization/fusions/fusion_gelu.py +272 -0
- onnxruntime/quantization/fusions/fusion_layernorm.py +135 -0
- onnxruntime/quantization/matmul_4bits_quantizer.py +1480 -0
- onnxruntime/quantization/matmul_bnb4_quantizer.py +240 -0
- onnxruntime/quantization/onnx_model.py +580 -0
- onnxruntime/quantization/onnx_quantizer.py +1008 -0
- onnxruntime/quantization/operators/__init__.py +2 -0
- onnxruntime/quantization/operators/activation.py +119 -0
- onnxruntime/quantization/operators/argmax.py +18 -0
- onnxruntime/quantization/operators/attention.py +73 -0
- onnxruntime/quantization/operators/base_operator.py +26 -0
- onnxruntime/quantization/operators/binary_op.py +72 -0
- onnxruntime/quantization/operators/concat.py +62 -0
- onnxruntime/quantization/operators/conv.py +258 -0
- onnxruntime/quantization/operators/direct_q8.py +78 -0
- onnxruntime/quantization/operators/embed_layernorm.py +121 -0
- onnxruntime/quantization/operators/gather.py +64 -0
- onnxruntime/quantization/operators/gavgpool.py +62 -0
- onnxruntime/quantization/operators/gemm.py +166 -0
- onnxruntime/quantization/operators/lstm.py +117 -0
- onnxruntime/quantization/operators/matmul.py +231 -0
- onnxruntime/quantization/operators/maxpool.py +34 -0
- onnxruntime/quantization/operators/norm.py +40 -0
- onnxruntime/quantization/operators/pad.py +100 -0
- onnxruntime/quantization/operators/pooling.py +67 -0
- onnxruntime/quantization/operators/qdq_base_operator.py +22 -0
- onnxruntime/quantization/operators/resize.py +34 -0
- onnxruntime/quantization/operators/softmax.py +74 -0
- onnxruntime/quantization/operators/split.py +63 -0
- onnxruntime/quantization/operators/where.py +87 -0
- onnxruntime/quantization/preprocess.py +141 -0
- onnxruntime/quantization/qdq_loss_debug.py +389 -0
- onnxruntime/quantization/qdq_quantizer.py +1187 -0
- onnxruntime/quantization/quant_utils.py +891 -0
- onnxruntime/quantization/quantize.py +748 -0
- onnxruntime/quantization/registry.py +106 -0
- onnxruntime/quantization/shape_inference.py +187 -0
- onnxruntime/quantization/tensor_quant_overrides.py +516 -0
- onnxruntime/tools/__init__.py +10 -0
- onnxruntime/tools/check_onnx_model_mobile_usability.py +47 -0
- onnxruntime/tools/convert_onnx_models_to_ort.py +377 -0
- onnxruntime/tools/file_utils.py +46 -0
- onnxruntime/tools/logger.py +11 -0
- onnxruntime/tools/make_dynamic_shape_fixed.py +72 -0
- onnxruntime/tools/mobile_helpers/__init__.py +0 -0
- onnxruntime/tools/mobile_helpers/coreml_supported_mlprogram_ops.md +33 -0
- onnxruntime/tools/mobile_helpers/coreml_supported_neuralnetwork_ops.md +43 -0
- onnxruntime/tools/mobile_helpers/nnapi_supported_ops.md +58 -0
- onnxruntime/tools/mobile_helpers/usability_checker.py +739 -0
- onnxruntime/tools/offline_tuning.py +169 -0
- onnxruntime/tools/onnx_model_utils.py +413 -0
- onnxruntime/tools/onnx_randomizer.py +85 -0
- onnxruntime/tools/onnxruntime_test.py +164 -0
- onnxruntime/tools/optimize_onnx_model.py +55 -0
- onnxruntime/tools/ort_format_model/__init__.py +25 -0
- onnxruntime/tools/ort_format_model/operator_type_usage_processors.py +663 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/__init__.py +0 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ArgType.py +7 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ArgTypeAndIndex.py +67 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Attribute.py +337 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/AttributeType.py +18 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Checkpoint.py +125 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DeprecatedKernelCreateInfos.py +120 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DeprecatedNodeIndexAndKernelDefHash.py +68 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DeprecatedSessionState.py +96 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DeprecatedSubGraphSessionState.py +72 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Dimension.py +71 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DimensionValue.py +80 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DimensionValueType.py +8 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/EdgeEnd.py +32 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/FloatProperty.py +67 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Graph.py +320 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/InferenceSession.py +88 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/IntProperty.py +67 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/KernelTypeStrArgsEntry.py +91 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/KernelTypeStrResolver.py +78 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/MapType.py +71 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Model.py +223 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ModuleState.py +141 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Node.py +317 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/NodeEdge.py +126 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/NodeType.py +7 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/NodesToOptimizeIndices.py +160 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/OpIdKernelTypeStrArgsEntry.py +91 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/OperatorSetId.py +67 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/OptimizerGroup.py +117 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ParameterOptimizerState.py +91 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/PropertyBag.py +152 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/RuntimeOptimizationRecord.py +105 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/RuntimeOptimizationRecordContainerEntry.py +91 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/RuntimeOptimizations.py +79 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/SequenceType.py +58 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Shape.py +78 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/SparseTensor.py +114 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/StringProperty.py +67 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/StringStringEntry.py +67 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Tensor.py +203 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/TensorDataType.py +26 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/TensorTypeAndShape.py +71 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/TypeInfo.py +83 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/TypeInfoValue.py +9 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ValueInfo.py +84 -0
- onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/__init__.py +6 -0
- onnxruntime/tools/ort_format_model/ort_model_processor.py +86 -0
- onnxruntime/tools/ort_format_model/types.py +84 -0
- onnxruntime/tools/ort_format_model/utils.py +62 -0
- onnxruntime/tools/pytorch_export_contrib_ops.py +108 -0
- onnxruntime/tools/pytorch_export_helpers.py +131 -0
- onnxruntime/tools/qdq_helpers/__init__.py +0 -0
- onnxruntime/tools/qdq_helpers/optimize_qdq_model.py +37 -0
- onnxruntime/tools/reduced_build_config_parser.py +202 -0
- onnxruntime/tools/symbolic_shape_infer.py +3016 -0
- onnxruntime/tools/update_onnx_opset.py +31 -0
- onnxruntime/transformers/__init__.py +8 -0
- onnxruntime/transformers/affinity_helper.py +40 -0
- onnxruntime/transformers/benchmark.py +944 -0
- onnxruntime/transformers/benchmark_helper.py +646 -0
- onnxruntime/transformers/bert_perf_test.py +634 -0
- onnxruntime/transformers/bert_test_data.py +642 -0
- onnxruntime/transformers/compare_bert_results.py +246 -0
- onnxruntime/transformers/constants.py +47 -0
- onnxruntime/transformers/convert_generation.py +3124 -0
- onnxruntime/transformers/convert_tf_models_to_pytorch.py +205 -0
- onnxruntime/transformers/convert_to_packing_mode.py +387 -0
- onnxruntime/transformers/dynamo_onnx_helper.py +104 -0
- onnxruntime/transformers/float16.py +501 -0
- onnxruntime/transformers/fusion_attention.py +1235 -0
- onnxruntime/transformers/fusion_attention_clip.py +257 -0
- onnxruntime/transformers/fusion_attention_sam2.py +534 -0
- onnxruntime/transformers/fusion_attention_unet.py +1304 -0
- onnxruntime/transformers/fusion_attention_vae.py +301 -0
- onnxruntime/transformers/fusion_bart_attention.py +640 -0
- onnxruntime/transformers/fusion_base.py +137 -0
- onnxruntime/transformers/fusion_bias_add.py +58 -0
- onnxruntime/transformers/fusion_biasgelu.py +66 -0
- onnxruntime/transformers/fusion_biassplitgelu.py +111 -0
- onnxruntime/transformers/fusion_conformer_attention.py +143 -0
- onnxruntime/transformers/fusion_embedlayer.py +811 -0
- onnxruntime/transformers/fusion_fastgelu.py +360 -0
- onnxruntime/transformers/fusion_gelu.py +259 -0
- onnxruntime/transformers/fusion_gelu_approximation.py +25 -0
- onnxruntime/transformers/fusion_gemmfastgelu.py +122 -0
- onnxruntime/transformers/fusion_gpt_attention.py +546 -0
- onnxruntime/transformers/fusion_gpt_attention_megatron.py +355 -0
- onnxruntime/transformers/fusion_gpt_attention_no_past.py +260 -0
- onnxruntime/transformers/fusion_group_norm.py +179 -0
- onnxruntime/transformers/fusion_layernorm.py +465 -0
- onnxruntime/transformers/fusion_nhwc_conv.py +100 -0
- onnxruntime/transformers/fusion_options.py +340 -0
- onnxruntime/transformers/fusion_qordered_attention.py +421 -0
- onnxruntime/transformers/fusion_qordered_gelu.py +119 -0
- onnxruntime/transformers/fusion_qordered_layernorm.py +123 -0
- onnxruntime/transformers/fusion_qordered_matmul.py +217 -0
- onnxruntime/transformers/fusion_quickgelu.py +74 -0
- onnxruntime/transformers/fusion_reshape.py +173 -0
- onnxruntime/transformers/fusion_rotary_attention.py +1592 -0
- onnxruntime/transformers/fusion_shape.py +110 -0
- onnxruntime/transformers/fusion_simplified_layernorm.py +159 -0
- onnxruntime/transformers/fusion_skip_group_norm.py +255 -0
- onnxruntime/transformers/fusion_skiplayernorm.py +209 -0
- onnxruntime/transformers/fusion_transpose.py +168 -0
- onnxruntime/transformers/fusion_utils.py +307 -0
- onnxruntime/transformers/huggingface_models.py +167 -0
- onnxruntime/transformers/import_utils.py +20 -0
- onnxruntime/transformers/io_binding_helper.py +442 -0
- onnxruntime/transformers/large_model_exporter.py +395 -0
- onnxruntime/transformers/machine_info.py +221 -0
- onnxruntime/transformers/metrics.py +164 -0
- onnxruntime/transformers/models/bart/__init__.py +12 -0
- onnxruntime/transformers/models/bart/export.py +98 -0
- onnxruntime/transformers/models/bert/__init__.py +12 -0
- onnxruntime/transformers/models/bert/eval_squad.py +329 -0
- onnxruntime/transformers/models/gpt2/__init__.py +12 -0
- onnxruntime/transformers/models/gpt2/benchmark_gpt2.py +413 -0
- onnxruntime/transformers/models/gpt2/convert_to_onnx.py +561 -0
- onnxruntime/transformers/models/gpt2/gpt2_helper.py +1032 -0
- onnxruntime/transformers/models/gpt2/gpt2_parity.py +513 -0
- onnxruntime/transformers/models/gpt2/gpt2_tester.py +501 -0
- onnxruntime/transformers/models/gpt2/parity_check_helper.py +146 -0
- onnxruntime/transformers/models/llama/__init__.py +12 -0
- onnxruntime/transformers/models/llama/benchmark.py +703 -0
- onnxruntime/transformers/models/llama/benchmark_all.py +488 -0
- onnxruntime/transformers/models/llama/benchmark_e2e.py +606 -0
- onnxruntime/transformers/models/llama/convert_to_onnx.py +1027 -0
- onnxruntime/transformers/models/llama/dist_settings.py +57 -0
- onnxruntime/transformers/models/llama/llama_inputs.py +503 -0
- onnxruntime/transformers/models/llama/llama_parity.py +309 -0
- onnxruntime/transformers/models/llama/llama_torch.py +47 -0
- onnxruntime/transformers/models/llama/quant_kv_dataloader.py +108 -0
- onnxruntime/transformers/models/longformer/__init__.py +12 -0
- onnxruntime/transformers/models/longformer/benchmark_longformer.py +821 -0
- onnxruntime/transformers/models/longformer/convert_to_onnx.py +413 -0
- onnxruntime/transformers/models/longformer/generate_test_data.py +347 -0
- onnxruntime/transformers/models/longformer/longformer_helper.py +77 -0
- onnxruntime/transformers/models/phi2/__init__.py +12 -0
- onnxruntime/transformers/models/phi2/convert_to_onnx.py +576 -0
- onnxruntime/transformers/models/phi2/inference_example.py +414 -0
- onnxruntime/transformers/models/sam2/__init__.py +12 -0
- onnxruntime/transformers/models/sam2/benchmark_sam2.py +625 -0
- onnxruntime/transformers/models/sam2/convert_to_onnx.py +260 -0
- onnxruntime/transformers/models/sam2/image_decoder.py +273 -0
- onnxruntime/transformers/models/sam2/image_encoder.py +186 -0
- onnxruntime/transformers/models/sam2/mask_decoder.py +208 -0
- onnxruntime/transformers/models/sam2/nvtx_helper.py +33 -0
- onnxruntime/transformers/models/sam2/prompt_encoder.py +189 -0
- onnxruntime/transformers/models/sam2/sam2_demo.py +322 -0
- onnxruntime/transformers/models/sam2/sam2_image_onnx_predictor.py +280 -0
- onnxruntime/transformers/models/sam2/sam2_utils.py +147 -0
- onnxruntime/transformers/models/stable_diffusion/__init__.py +12 -0
- onnxruntime/transformers/models/stable_diffusion/benchmark.py +1429 -0
- onnxruntime/transformers/models/stable_diffusion/benchmark_controlnet.py +426 -0
- onnxruntime/transformers/models/stable_diffusion/demo_txt2img.py +102 -0
- onnxruntime/transformers/models/stable_diffusion/demo_txt2img_xl.py +268 -0
- onnxruntime/transformers/models/stable_diffusion/demo_utils.py +778 -0
- onnxruntime/transformers/models/stable_diffusion/diffusion_models.py +1319 -0
- onnxruntime/transformers/models/stable_diffusion/diffusion_schedulers.py +1181 -0
- onnxruntime/transformers/models/stable_diffusion/engine_builder.py +296 -0
- onnxruntime/transformers/models/stable_diffusion/engine_builder_ort_cuda.py +388 -0
- onnxruntime/transformers/models/stable_diffusion/engine_builder_ort_trt.py +288 -0
- onnxruntime/transformers/models/stable_diffusion/engine_builder_tensorrt.py +395 -0
- onnxruntime/transformers/models/stable_diffusion/engine_builder_torch.py +108 -0
- onnxruntime/transformers/models/stable_diffusion/optimize_pipeline.py +350 -0
- onnxruntime/transformers/models/stable_diffusion/ort_optimizer.py +136 -0
- onnxruntime/transformers/models/stable_diffusion/pipeline_stable_diffusion.py +831 -0
- onnxruntime/transformers/models/stable_diffusion/trt_utilities.py +12 -0
- onnxruntime/transformers/models/t5/__init__.py +12 -0
- onnxruntime/transformers/models/t5/convert_to_onnx.py +278 -0
- onnxruntime/transformers/models/t5/past_helper.py +150 -0
- onnxruntime/transformers/models/t5/t5_decoder.py +438 -0
- onnxruntime/transformers/models/t5/t5_encoder.py +171 -0
- onnxruntime/transformers/models/t5/t5_encoder_decoder_init.py +299 -0
- onnxruntime/transformers/models/t5/t5_helper.py +272 -0
- onnxruntime/transformers/models/whisper/__init__.py +12 -0
- onnxruntime/transformers/models/whisper/benchmark.py +610 -0
- onnxruntime/transformers/models/whisper/benchmark_all.py +528 -0
- onnxruntime/transformers/models/whisper/convert_to_onnx.py +536 -0
- onnxruntime/transformers/models/whisper/whisper_chain.py +329 -0
- onnxruntime/transformers/models/whisper/whisper_decoder.py +402 -0
- onnxruntime/transformers/models/whisper/whisper_encoder.py +164 -0
- onnxruntime/transformers/models/whisper/whisper_encoder_decoder_init.py +306 -0
- onnxruntime/transformers/models/whisper/whisper_helper.py +524 -0
- onnxruntime/transformers/models/whisper/whisper_openai_helper.py +84 -0
- onnxruntime/transformers/onnx_exporter.py +717 -0
- onnxruntime/transformers/onnx_model.py +1569 -0
- onnxruntime/transformers/onnx_model_bart.py +142 -0
- onnxruntime/transformers/onnx_model_bert.py +481 -0
- onnxruntime/transformers/onnx_model_bert_keras.py +475 -0
- onnxruntime/transformers/onnx_model_bert_tf.py +589 -0
- onnxruntime/transformers/onnx_model_clip.py +40 -0
- onnxruntime/transformers/onnx_model_conformer.py +33 -0
- onnxruntime/transformers/onnx_model_gpt2.py +101 -0
- onnxruntime/transformers/onnx_model_phi.py +930 -0
- onnxruntime/transformers/onnx_model_sam2.py +138 -0
- onnxruntime/transformers/onnx_model_t5.py +791 -0
- onnxruntime/transformers/onnx_model_tnlr.py +227 -0
- onnxruntime/transformers/onnx_model_unet.py +259 -0
- onnxruntime/transformers/onnx_model_vae.py +43 -0
- onnxruntime/transformers/onnx_utils.py +55 -0
- onnxruntime/transformers/optimizer.py +612 -0
- onnxruntime/transformers/profiler.py +725 -0
- onnxruntime/transformers/quantize_helper.py +76 -0
- onnxruntime/transformers/shape_infer_helper.py +122 -0
- onnxruntime/transformers/shape_optimizer.py +401 -0
- onnxruntime/transformers/torch_onnx_export_helper.py +74 -0
- onnxruntime_directml-1.20.0.dist-info/METADATA +187 -0
- onnxruntime_directml-1.20.0.dist-info/RECORD +305 -0
- onnxruntime_directml-1.20.0.dist-info/WHEEL +5 -0
- onnxruntime_directml-1.20.0.dist-info/entry_points.txt +2 -0
- onnxruntime_directml-1.20.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: onnxruntime-directml
|
|
3
|
+
Version: 1.20.0
|
|
4
|
+
Summary: ONNX Runtime is a runtime accelerator for Machine Learning models
|
|
5
|
+
Home-page: https://onnxruntime.ai
|
|
6
|
+
Download-URL: https://github.com/microsoft/onnxruntime/tags
|
|
7
|
+
Author: Microsoft Corporation
|
|
8
|
+
Author-email: onnxruntime@microsoft.com
|
|
9
|
+
License: MIT License
|
|
10
|
+
Keywords: onnx machine learning
|
|
11
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
17
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
18
|
+
Classifier: Topic :: Software Development
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Classifier: Programming Language :: Python
|
|
22
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
29
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
30
|
+
Classifier: Operating System :: MacOS
|
|
31
|
+
Requires-Dist: coloredlogs
|
|
32
|
+
Requires-Dist: flatbuffers
|
|
33
|
+
Requires-Dist: numpy>=1.21.6
|
|
34
|
+
Requires-Dist: packaging
|
|
35
|
+
Requires-Dist: protobuf
|
|
36
|
+
Requires-Dist: sympy
|
|
37
|
+
|
|
38
|
+
ONNX Runtime
|
|
39
|
+
============
|
|
40
|
+
|
|
41
|
+
ONNX Runtime is a performance-focused scoring engine for Open Neural Network Exchange (ONNX) models.
|
|
42
|
+
For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://aka.ms/onnxruntime/>`_ or the `Github project <https://github.com/microsoft/onnxruntime/>`_.
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
Changes
|
|
46
|
+
-------
|
|
47
|
+
|
|
48
|
+
1.20.0
|
|
49
|
+
^^^^^^
|
|
50
|
+
|
|
51
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.20.0
|
|
52
|
+
|
|
53
|
+
1.19.0
|
|
54
|
+
^^^^^^
|
|
55
|
+
|
|
56
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.19.0
|
|
57
|
+
|
|
58
|
+
1.18.0
|
|
59
|
+
^^^^^^
|
|
60
|
+
|
|
61
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.18.0
|
|
62
|
+
|
|
63
|
+
1.17.0
|
|
64
|
+
^^^^^^
|
|
65
|
+
|
|
66
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.17.0
|
|
67
|
+
|
|
68
|
+
1.16.0
|
|
69
|
+
^^^^^^
|
|
70
|
+
|
|
71
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.16.0
|
|
72
|
+
|
|
73
|
+
1.15.0
|
|
74
|
+
^^^^^^
|
|
75
|
+
|
|
76
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.15.0
|
|
77
|
+
|
|
78
|
+
1.14.0
|
|
79
|
+
^^^^^^
|
|
80
|
+
|
|
81
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.14.0
|
|
82
|
+
|
|
83
|
+
1.13.0
|
|
84
|
+
^^^^^^
|
|
85
|
+
|
|
86
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.13.0
|
|
87
|
+
|
|
88
|
+
1.12.0
|
|
89
|
+
^^^^^^
|
|
90
|
+
|
|
91
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.12.0
|
|
92
|
+
|
|
93
|
+
1.11.0
|
|
94
|
+
^^^^^^
|
|
95
|
+
|
|
96
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.11.0
|
|
97
|
+
|
|
98
|
+
1.10.0
|
|
99
|
+
^^^^^^
|
|
100
|
+
|
|
101
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.10.0
|
|
102
|
+
|
|
103
|
+
1.9.0
|
|
104
|
+
^^^^^
|
|
105
|
+
|
|
106
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.9.0
|
|
107
|
+
|
|
108
|
+
1.8.2
|
|
109
|
+
^^^^^
|
|
110
|
+
|
|
111
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.8.2
|
|
112
|
+
|
|
113
|
+
1.8.1
|
|
114
|
+
^^^^^
|
|
115
|
+
|
|
116
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.8.1
|
|
117
|
+
|
|
118
|
+
1.8.0
|
|
119
|
+
^^^^^
|
|
120
|
+
|
|
121
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.8.0
|
|
122
|
+
|
|
123
|
+
1.7.0
|
|
124
|
+
^^^^^
|
|
125
|
+
|
|
126
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.7.0
|
|
127
|
+
|
|
128
|
+
1.6.0
|
|
129
|
+
^^^^^
|
|
130
|
+
|
|
131
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.6.0
|
|
132
|
+
|
|
133
|
+
1.5.3
|
|
134
|
+
^^^^^
|
|
135
|
+
|
|
136
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.5.3
|
|
137
|
+
|
|
138
|
+
1.5.2
|
|
139
|
+
^^^^^
|
|
140
|
+
|
|
141
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.5.2
|
|
142
|
+
|
|
143
|
+
1.5.1
|
|
144
|
+
^^^^^
|
|
145
|
+
|
|
146
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.5.1
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
1.4.0
|
|
150
|
+
^^^^^
|
|
151
|
+
|
|
152
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.4.0
|
|
153
|
+
|
|
154
|
+
1.3.1
|
|
155
|
+
^^^^^
|
|
156
|
+
|
|
157
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.3.1
|
|
158
|
+
|
|
159
|
+
1.3.0
|
|
160
|
+
^^^^^
|
|
161
|
+
|
|
162
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.3.0
|
|
163
|
+
|
|
164
|
+
1.2.0
|
|
165
|
+
^^^^^
|
|
166
|
+
|
|
167
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.2.0
|
|
168
|
+
|
|
169
|
+
1.1.0
|
|
170
|
+
^^^^^
|
|
171
|
+
|
|
172
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.1.0
|
|
173
|
+
|
|
174
|
+
1.0.0
|
|
175
|
+
^^^^^
|
|
176
|
+
|
|
177
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.0.0
|
|
178
|
+
|
|
179
|
+
0.5.0
|
|
180
|
+
^^^^^
|
|
181
|
+
|
|
182
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v0.5.0
|
|
183
|
+
|
|
184
|
+
0.4.0
|
|
185
|
+
^^^^^
|
|
186
|
+
|
|
187
|
+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v0.4.0
|
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
onnxruntime/LICENSE,sha256=wlDWJ48LR6ZDn7dZKwi1ilXrn1NapJodtjIRw_mCtnQ,1094
|
|
2
|
+
onnxruntime/Privacy.md,sha256=v7dxKwdfPwfj6-5dwqKW0d4y2_ca0oZj9z0VOMtsOwg,2490
|
|
3
|
+
onnxruntime/ThirdPartyNotices.txt,sha256=-sW7hfVos4_Y86auoyc3mFhB8joaQ-nOlS95R0-IOqk,345046
|
|
4
|
+
onnxruntime/__init__.py,sha256=Yyt_OVHHHM3mLRMRarDexM3sePXhOLwCMzlUfPwDTeE,4532
|
|
5
|
+
onnxruntime/backend/__init__.py,sha256=5I1Ylsawf9w6MNmK4RiN1wA-EEQqlKKwYTNZB-m_k6M,334
|
|
6
|
+
onnxruntime/backend/backend.py,sha256=SKFwZi8cQsR8HgCDpXeqMERIrqtgTHXxXrdZbIuwps0,8121
|
|
7
|
+
onnxruntime/backend/backend_rep.py,sha256=8Hid8lLPmcBtXsEUfpXsamX0pN5XATIIun-U7A6oNmk,1821
|
|
8
|
+
onnxruntime/capi/DirectML.dll,sha256=lP1P3sP2u5TiLjIp59mYTVlxWO0bzlMo4rP9TTz9uik,18527272
|
|
9
|
+
onnxruntime/capi/__init__.py,sha256=uRp4pMtfoayBhZgEsiFqFCD13Y6LUo82FdZsQX8X8LI,251
|
|
10
|
+
onnxruntime/capi/_ld_preload.py,sha256=li6cbZ64hDfUndat4mprUWzowLa3RQdw0q2E56sXFwE,413
|
|
11
|
+
onnxruntime/capi/_pybind_state.py,sha256=nbUpnUncwBv5pgJA8yugDYJRA4TTfC0gaYOED5jD-SA,1533
|
|
12
|
+
onnxruntime/capi/convert_npz_to_onnx_adapter.py,sha256=N0ShYr30vBQcOr9KyFd4AUdEcqWW89KVd80qSYCgdQ4,1581
|
|
13
|
+
onnxruntime/capi/onnxruntime.dll,sha256=8sQYt6TmG9gi-jljDhoeRlvbOpQ4W8QK--_idJ6ewsg,18276896
|
|
14
|
+
onnxruntime/capi/onnxruntime_collect_build_info.py,sha256=sD8Z2S15QHSvuO1j7tgqJKeORDUatwzUmzvC8Uj9cAM,2109
|
|
15
|
+
onnxruntime/capi/onnxruntime_inference_collection.py,sha256=leMvDupBZnD7-NUUB1qFWSljiMVlbn7Uq40Yw4OsIjQ,45771
|
|
16
|
+
onnxruntime/capi/onnxruntime_providers_shared.dll,sha256=m7mSFN9ZGh5M9j5KdKPMCsizlnZUFWGlBgJPg2TbZmw,21536
|
|
17
|
+
onnxruntime/capi/onnxruntime_pybind11_state.pyd,sha256=OOU-h1xAEwCNGXvcBCoFeW79a7j8P3FWvcqCkBhFsak,22453280
|
|
18
|
+
onnxruntime/capi/onnxruntime_validation.py,sha256=B9jE0L4jkH5UWQLMKNHaEA9ej4-Iv6l0DKhjUCxiTtc,6605
|
|
19
|
+
onnxruntime/capi/version_info.py,sha256=8mm1VTXF8xgx6N8vFNe0Tiik9qdg9Vvi9f32bPE9ktw,34
|
|
20
|
+
onnxruntime/datasets/__init__.py,sha256=0D1rdhXK940JccUq3Sj4BBMqjDpAPOcxlGcwJR4X3wc,471
|
|
21
|
+
onnxruntime/datasets/logreg_iris.onnx,sha256=giR4TJjXNBLZ_ZmrzVejhWi9WQmA0PvlkWRkUxxS6Pw,670
|
|
22
|
+
onnxruntime/datasets/mul_1.onnx,sha256=cfQxxOkyHsb76xWNAu0kBFmn3MmGc_p5pPQ5zkLvrxA,130
|
|
23
|
+
onnxruntime/datasets/sigmoid.onnx,sha256=U0Crpnp-NHUWKteUN4r1XxcY9V-aXXS0r2Dsx_emJLY,103
|
|
24
|
+
onnxruntime/quantization/__init__.py,sha256=eeIgS5jf18UjGelvD4Bf57Z6-Qxvg6J54V-PEtlcww0,686
|
|
25
|
+
onnxruntime/quantization/base_quantizer.py,sha256=uwhi4IABcvWS21zCmCnTBcbMSyF6LpU5rKaxas8ajm4,26192
|
|
26
|
+
onnxruntime/quantization/calibrate.py,sha256=M8KJFYJmw_hmRVzXBw9EE8c6Er2tumKlxhghCklOcGU,53901
|
|
27
|
+
onnxruntime/quantization/matmul_4bits_quantizer.py,sha256=xEHnLlaaX8nnLEtamcAfBrX0AwQbnSZZ4GPn-Aj_rEM,61596
|
|
28
|
+
onnxruntime/quantization/matmul_bnb4_quantizer.py,sha256=DVEK5seZJgdaN59Zwap_MyJZDQGxH_w8hhib_hz1mHQ,9300
|
|
29
|
+
onnxruntime/quantization/onnx_model.py,sha256=5gqbni3PsYlTZKsQG8n7UDN8BTOy38KfdsOorHP1EK8,23689
|
|
30
|
+
onnxruntime/quantization/onnx_quantizer.py,sha256=t7oFtAjRXE9ftrduVelVqTVXC_odhUPJ8QaUHwmcWjQ,43942
|
|
31
|
+
onnxruntime/quantization/preprocess.py,sha256=VU4iX7g8gOgVH0zehOcOXsVWkZpx6kG_LFlwGM3Bs6c,5045
|
|
32
|
+
onnxruntime/quantization/qdq_loss_debug.py,sha256=bQQvqzs24zQWRM3qmI97j3LKOKdExBDZ1fzb-xMtSdo,15887
|
|
33
|
+
onnxruntime/quantization/qdq_quantizer.py,sha256=FpS2ChNWHvcq2ZufGOkOjDFKb8jiG6LbUvgQz9Sw3AA,55247
|
|
34
|
+
onnxruntime/quantization/quant_utils.py,sha256=vJYiZs8lJqgJ2DKYzvLKEuWR-UM8lGyTnBKmF554t8U,33629
|
|
35
|
+
onnxruntime/quantization/quantize.py,sha256=eqfBIz1mja6yonvt7443nUCvQJiAlE8JhOVGIRO5Vg0,41682
|
|
36
|
+
onnxruntime/quantization/registry.py,sha256=SXB9IgPKVUTgXmFIbrYklsFPWSGEHco9EOLSzOXXP3Q,3735
|
|
37
|
+
onnxruntime/quantization/shape_inference.py,sha256=9fJEciXXRizCyuVsys0GZOiwGr_d6UtqKmaqzD_p9lU,8711
|
|
38
|
+
onnxruntime/quantization/tensor_quant_overrides.py,sha256=LJrgs5RpvRxrvomw9Ll2UZLJFBbDF_5FkNJnx9YngEI,21060
|
|
39
|
+
onnxruntime/quantization/CalTableFlatBuffers/KeyValue.py,sha256=e-jJFhw9fb775fDCLnWdbRSdoJ6vGD0c7qTnkIG-vNs,2250
|
|
40
|
+
onnxruntime/quantization/CalTableFlatBuffers/TrtTable.py,sha256=QQ9_f60Wya8U-KQOMu0gXImfhiPN6jNkfjpoCdAFic4,2665
|
|
41
|
+
onnxruntime/quantization/CalTableFlatBuffers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
42
|
+
onnxruntime/quantization/execution_providers/qnn/__init__.py,sha256=nKKB7VEbO574HDL2xdJPD8VeXoK2a3jd8nLBxULiVvI,120
|
|
43
|
+
onnxruntime/quantization/execution_providers/qnn/fusion_lpnorm.py,sha256=vUrbMNorHH7_uKjeL1jlkPghnplPIDPz0kmN0Tt03mc,5327
|
|
44
|
+
onnxruntime/quantization/execution_providers/qnn/mixed_precision_overrides_utils.py,sha256=vsZC2rwLA7Z9kYUF1loF_YZP_BO0glv70Dnx8VB4SZw,19000
|
|
45
|
+
onnxruntime/quantization/execution_providers/qnn/preprocess.py,sha256=qLSdYvc18-u0h3CWaC8DKNWRmjdrb9Qup8nYk-DHiCM,14192
|
|
46
|
+
onnxruntime/quantization/execution_providers/qnn/quant_config.py,sha256=Fwym8gK_koERwD88LunSH0CKFAl6mMlmrLqowZa7xS0,18688
|
|
47
|
+
onnxruntime/quantization/fusions/__init__.py,sha256=UMhvt6fL-eI4iadRoWpuFSktJRvNJjmGd5Rqw4nsFzY,163
|
|
48
|
+
onnxruntime/quantization/fusions/fusion.py,sha256=A6_77l5uw-hIwyoX7DPOFL6O-y3qXk-S16SMLv1Ncis,12088
|
|
49
|
+
onnxruntime/quantization/fusions/fusion_gelu.py,sha256=3qOO4U95ATD6S14dyC-5-vGeaQBr5U-GCsjfvHqoL98,10647
|
|
50
|
+
onnxruntime/quantization/fusions/fusion_layernorm.py,sha256=CKU--IH-xDUnm5qZtTK1ENYuBMnPsADUkzrOBjyW7kQ,5306
|
|
51
|
+
onnxruntime/quantization/operators/__init__.py,sha256=IfKXrFWtRSye1mkgD9lpwxio0fw9cVr_1CdV1cvefig,85
|
|
52
|
+
onnxruntime/quantization/operators/activation.py,sha256=G6XAKZaRIV3vrtjpK4kEvbzUSlLOwwEauXX9exgIHZg,4545
|
|
53
|
+
onnxruntime/quantization/operators/argmax.py,sha256=pfE9_eSTZ2otTkUcWwlLi7HJKtN10kE5c2Lz0SeVADQ,589
|
|
54
|
+
onnxruntime/quantization/operators/attention.py,sha256=eH7-Z3MfP6xRZCdhDAyNxWG2s2nZILxIEFVAHtqj7EQ,2637
|
|
55
|
+
onnxruntime/quantization/operators/base_operator.py,sha256=vrAVfKJXZvF7ZherKw4JUGonNyNuoU2TWnwBy-EQ3QE,1118
|
|
56
|
+
onnxruntime/quantization/operators/binary_op.py,sha256=pEQHRAS75EMp7LG6jzWV7gDQt_vzEPLJEI00eIOuoiA,2544
|
|
57
|
+
onnxruntime/quantization/operators/concat.py,sha256=fZFwnaqoOZ9b0ZvGpBK_MrJzVteeJguWRQ396kUh8QQ,2143
|
|
58
|
+
onnxruntime/quantization/operators/conv.py,sha256=KhetFXKMcFjs6W6ZnOonyy_XrSFYNr54WeFoBMmIRK8,10168
|
|
59
|
+
onnxruntime/quantization/operators/direct_q8.py,sha256=xWWLXoO1fJ0FXOFs0OdX5pvLVw3m7b6TBpU1YRYycO0,3389
|
|
60
|
+
onnxruntime/quantization/operators/embed_layernorm.py,sha256=2LsZk5Um0ELaRESWjScgYyQioJelRZK6oQbzAclSgXI,4058
|
|
61
|
+
onnxruntime/quantization/operators/gather.py,sha256=HL79Csv--zTAs5XmG1xP7Fjw72RTlqpadxB6w-OmqN8,2230
|
|
62
|
+
onnxruntime/quantization/operators/gavgpool.py,sha256=wYyjEf3h-_QChWKnsZ2N-haBG1RSvqRitZ-Yvfwo9Dk,2445
|
|
63
|
+
onnxruntime/quantization/operators/gemm.py,sha256=vSMhyC_znzVl7uPzOnvHr87ReAWoGBNkZQwwse2TbN4,6252
|
|
64
|
+
onnxruntime/quantization/operators/lstm.py,sha256=4diaxKg7OlCA3yq1_LDLCc2oFDqr_W0zA2XdOkznPp4,5184
|
|
65
|
+
onnxruntime/quantization/operators/matmul.py,sha256=Z98R4saKkbQhps_jRCCJ91cmptxc8y7b5TmG3gvHIcw,8499
|
|
66
|
+
onnxruntime/quantization/operators/maxpool.py,sha256=QyDmHyBo0QKf6kNFbp2a9v6ThrBO-OL3tW0PFdN6bkI,961
|
|
67
|
+
onnxruntime/quantization/operators/norm.py,sha256=f3fUiSN4WdM8iuXCSjETorRyDFUSJJWxO10vegj_dEs,1649
|
|
68
|
+
onnxruntime/quantization/operators/pad.py,sha256=voQm5gRA6Y_MP6Dntp6D0SAdIDsuqD5fqGHI6-y22rY,4914
|
|
69
|
+
onnxruntime/quantization/operators/pooling.py,sha256=L0IT7G6-2XSx9-wUz5BX59Mc43FfJEg79NwW3yqEDhI,2285
|
|
70
|
+
onnxruntime/quantization/operators/qdq_base_operator.py,sha256=Fco9JZxrXQoVgjKvmHFuzT0mogWo9-wHiDa51CjTioo,823
|
|
71
|
+
onnxruntime/quantization/operators/resize.py,sha256=BMeym-7GHOSnGpZisa9BkdQkVmCXwKANA5NpnKRnaLI,962
|
|
72
|
+
onnxruntime/quantization/operators/softmax.py,sha256=e3ThVOh2TG1B8luG6xWkoT_hCdvsMRjvTlTje8CW-YQ,2714
|
|
73
|
+
onnxruntime/quantization/operators/split.py,sha256=82R65-_Rw5g23f0uekUWpA3nhOzeUWdOQgr2JZXwrOc,2258
|
|
74
|
+
onnxruntime/quantization/operators/where.py,sha256=wd6PQ7LlbrJTqamFMch_Fipnbt4IewMJSAPozMTrwKI,3127
|
|
75
|
+
onnxruntime/tools/__init__.py,sha256=7up7iKcklVy6UcpIIIIlBaK690O32vaOxyaaTWvwyxU,528
|
|
76
|
+
onnxruntime/tools/check_onnx_model_mobile_usability.py,sha256=hzqjrI9Xz7LP1idPdviRU7EEeLMvUB0qlyTqHofxlFs,1717
|
|
77
|
+
onnxruntime/tools/convert_onnx_models_to_ort.py,sha256=I_9nhCipOpgsX5dNovCOaY3bc6NyfQLE7KuPKMzucM8,16810
|
|
78
|
+
onnxruntime/tools/file_utils.py,sha256=ONHY-VlxAJ7mlrTNZYkRD4I00RqsSHMZb1rUUxceQss,1569
|
|
79
|
+
onnxruntime/tools/logger.py,sha256=s3M5-Akb69zubXNhCpsjIoJ052gYieHV5FsOfBZ6lrI,333
|
|
80
|
+
onnxruntime/tools/make_dynamic_shape_fixed.py,sha256=GkbUE5kH1pOua5EJVH4trXs7mJIPIQ8T2YTeKQxr6ak,2608
|
|
81
|
+
onnxruntime/tools/offline_tuning.py,sha256=Gd120-LGX04OJZ8nvErr_8h-5XGdDOEmuJPCWVQC76E,6380
|
|
82
|
+
onnxruntime/tools/onnx_model_utils.py,sha256=RLeLn_0OsLRFq0rQmY4OwjXa9a5wHAxKOxA7NYxd67c,16692
|
|
83
|
+
onnxruntime/tools/onnx_randomizer.py,sha256=9L96dzIf59cQ2oQsmR2EEsdrR4hHwEGrpZkajEgUPAY,3361
|
|
84
|
+
onnxruntime/tools/onnxruntime_test.py,sha256=SvqgwrjiIpf_vsZfHmkE_FPXJkDA18mZpwYoyjMv5g0,5770
|
|
85
|
+
onnxruntime/tools/optimize_onnx_model.py,sha256=J6rk1Ani3VWwe0JEy5fTJ2V_zVGrA1cjIKOX6zdHd5c,1969
|
|
86
|
+
onnxruntime/tools/pytorch_export_contrib_ops.py,sha256=itFUamVcxffrDQ4ROJJjCFotuhwaFKAP1wZnJTucvHU,4089
|
|
87
|
+
onnxruntime/tools/pytorch_export_helpers.py,sha256=MRegHn3z3VhVbZQ4O-kTGedIE-pufyxhq1A1GVIdCjY,5971
|
|
88
|
+
onnxruntime/tools/reduced_build_config_parser.py,sha256=Te0_T7LcULqA2WJctyfczzYXIPHcYbQyao_0pJD_OgQ,10125
|
|
89
|
+
onnxruntime/tools/symbolic_shape_infer.py,sha256=qKhUqlUEL6oYxBrUHQG91VOD0cMLiZ1aXVrexrxG8v8,141996
|
|
90
|
+
onnxruntime/tools/update_onnx_opset.py,sha256=fplb1ypV-pFhu8Xsi5u_bDfI7EsC4zamJkTziccgQ2c,1182
|
|
91
|
+
onnxruntime/tools/mobile_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
+
onnxruntime/tools/mobile_helpers/coreml_supported_mlprogram_ops.md,sha256=Bi-zgUm3eMQOulbjAA8bQA_9kpPZM4sL5Zl6il0xk1w,2039
|
|
93
|
+
onnxruntime/tools/mobile_helpers/coreml_supported_neuralnetwork_ops.md,sha256=JJBwv04C_o2K1UWOttDtarnC7xFFZQ2uvvIZg4EFmWA,1958
|
|
94
|
+
onnxruntime/tools/mobile_helpers/nnapi_supported_ops.md,sha256=uJznEyy7ZAdlrkKQeoWFFs55rPE-kOePIJiv741r98Q,2385
|
|
95
|
+
onnxruntime/tools/mobile_helpers/usability_checker.py,sha256=pGa8OWoalE2egWtrT-DGzMTtfdgDIRmIWxhAzc7asuE,32377
|
|
96
|
+
onnxruntime/tools/ort_format_model/__init__.py,sha256=gQqh9tWzGxeUllyIEF2FmIfee9ulji3mlJQNW7QrpJ0,1378
|
|
97
|
+
onnxruntime/tools/ort_format_model/operator_type_usage_processors.py,sha256=B5sRgMebZw3bsY2EkPQyJ57DCQA5UVwx4ncR98a_YPU,27211
|
|
98
|
+
onnxruntime/tools/ort_format_model/ort_model_processor.py,sha256=Zh07RmcGYf0-qbXRiim2DWUGHbsrEeG6_rOcx3VLexw,4472
|
|
99
|
+
onnxruntime/tools/ort_format_model/types.py,sha256=s32mQkFeWRdu3EzC1qd-lxhIvLQ1GOohyHgbslGcMes,4466
|
|
100
|
+
onnxruntime/tools/ort_format_model/utils.py,sha256=Ix5mFXZCnMEHf8Tg7Mwg2GFdy0d1l-zocT2fsE8_8sU,2604
|
|
101
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ArgType.py,sha256=ErRXrmwza1xgVW4OAENw_B8yVc7WfWbAYYhiAO3Cc2g,147
|
|
103
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ArgTypeAndIndex.py,sha256=8Sx0mmUqjN4uN7MeTY6scIgeZO6gruARh8MvlEQdUdQ,2093
|
|
104
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Attribute.py,sha256=S5SA5y9FB2HWcPIPx99jz_ebTV85O8cTETJgGe_FKLo,11187
|
|
105
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/AttributeType.py,sha256=piF8u_U7zNE5eSrwcQhRLgvr2axK21-455McxIje2HQ,346
|
|
106
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Checkpoint.py,sha256=0cZ14luQy_w8GlbDF_xoGPWtee2UueQM4jt59YX5B9o,4342
|
|
107
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DeprecatedKernelCreateInfos.py,sha256=K6Sl9lPxPE8huGE0tunG9MXDFYbzJs5Hc4nzKj8ft88,4648
|
|
108
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DeprecatedNodeIndexAndKernelDefHash.py,sha256=Lr3cs1e80M1zLbZ1hBKwDsSl6d8zxjkbIfAguiTkJko,2526
|
|
109
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DeprecatedSessionState.py,sha256=N5CN72wJObCmYGcbA5z9o3u1khYxJ9bVSIaFIJCDR3E,3678
|
|
110
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DeprecatedSubGraphSessionState.py,sha256=ARjFKPJX_pB2KTrSUCHz_iN_UmrB3xRDKtUbIepTX-Q,2682
|
|
111
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Dimension.py,sha256=VHQcCV5ip0BIhm1EFtsAXA-uMp8tqlu1BfiJP2LZuQc,2262
|
|
112
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DimensionValue.py,sha256=14W1geQj5_V_5UiqgrG2oFGDgCkAIS5d71xemZwmO_Y,2574
|
|
113
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/DimensionValueType.py,sha256=2kmuPePZe_rWSMkI7ceIhewHL3wvvsDEhzH-LBusm0M,174
|
|
114
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/EdgeEnd.py,sha256=aNdY1SA8fDyvH1Vsqo5xklVuhGtw2sUmyy86HmtWEbk,1137
|
|
115
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/FloatProperty.py,sha256=qqpRpfy9QXs7WHhHUARUjv5q_zs8wiT2-iOjKD9v4NQ,2075
|
|
116
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Graph.py,sha256=Y_AnjssgrJ7o4oU1w-KG-rOl8EE8YuEnvDWu7rGN57E,11039
|
|
117
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/InferenceSession.py,sha256=0FgbOyXfWicKshG131GzHqPTFJvoVorBxTVP1xM6ZNU,3125
|
|
118
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/IntProperty.py,sha256=EjWio-yFwfkE_N764bYTaDRz0EHSZ1n0JePkLSNGitk,2037
|
|
119
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/KernelTypeStrArgsEntry.py,sha256=lKy6VMEjvkiv5BGOjugWEZtlobNMwvlfcSRSYzjCiAk,3193
|
|
120
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/KernelTypeStrResolver.py,sha256=cufEs5uTENEF6bvZQemzDztbErNtvDuzMpDoCnSBpik,2867
|
|
121
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/MapType.py,sha256=wlC76nL8dC0vdZVlEoUC9qwgbVDwnSt5RCRO5r_Wfmg,2194
|
|
122
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Model.py,sha256=CPbe2q2OcKU8LbShHGtnIG_jrW83f3nvMR5Trg1Nx90,7663
|
|
123
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ModuleState.py,sha256=rGMagBBqyCNbewI-xUygxN07m7fLDQmH2EWISmFd7ss,4994
|
|
124
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Node.py,sha256=IjM4YjGq_swHTiLw01xsSWmAYaZmkVZUR3cei3byY68,10718
|
|
125
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/NodeEdge.py,sha256=LiB9vyQTsFkfRRTuiDcwrRfVaWrRzAALP5Rop0rtGKg,4183
|
|
126
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/NodeType.py,sha256=bBLbvDWziLLRxhjCAqlS44k_hdIWbWk3vsRxCDOLz7k,151
|
|
127
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/NodesToOptimizeIndices.py,sha256=KoWmACgRnK8qGNyXiKo6NywUvzpvYYxGQ0AyayjyaFQ,6144
|
|
128
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/OpIdKernelTypeStrArgsEntry.py,sha256=6WV2Pj3vkqJ2NZ19VWrPAxKtoGCeiJ6NTVOvs89BIQ4,3387
|
|
129
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/OperatorSetId.py,sha256=UOiU-CCvexY3OOWk2hiZyBI0OItcA6jiZTsERDZxu2U,2099
|
|
130
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/OptimizerGroup.py,sha256=Xri5OFTQ881fzaVdQZjVviLyE5vH2aFGGArQE5H1ZbU,4135
|
|
131
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ParameterOptimizerState.py,sha256=AIEaCRcEln5wC7X3C8vp7TmmpxuaH7t93UCphxbxRJA,3218
|
|
132
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/PropertyBag.py,sha256=QXs064QNug8pG9zjX9aWEPmO63CIWJcL-kMLgMPk7vI,5099
|
|
133
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/RuntimeOptimizationRecord.py,sha256=Lrl5lCzbUL323Y1nnij-7vn95d3qNHkiVPwkbg6SSds,4067
|
|
134
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/RuntimeOptimizationRecordContainerEntry.py,sha256=PM7_R0kbnF3K32qoLOIPXmeudQfj0pvabMQLB-FjREw,3832
|
|
135
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/RuntimeOptimizations.py,sha256=qYkC65wMqu7FinW2X9pPTeRD4bY7xdIsOfXnIJoFDFU,2800
|
|
136
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/SequenceType.py,sha256=iiMOzyjzXzjO3zoad_oG2-ct786Wv8u4LWoFOZdmc0A,1829
|
|
137
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Shape.py,sha256=4Y6yU35JHSXKzb2BDzObkss4yiopwS3IXkSBpFf88FI,2352
|
|
138
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/SparseTensor.py,sha256=3EZahzlyO_73WOzK9jZHwoVqsQkq3407ATBOG56KLEE,3806
|
|
139
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/StringProperty.py,sha256=Zd5QCcSgvf5ojuOBRV19gGyQPhqjJkoBaMdZ06kOc7c,2110
|
|
140
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/StringStringEntry.py,sha256=Iih7xRq4zvu4cVV4_TAC4sbjaH-dLqZGU68X0oLaWoI,2147
|
|
141
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/Tensor.py,sha256=CZItxbQ-B9cJnaS5HwBNWT1buat_JgX-W-zOn9m11a4,6802
|
|
142
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/TensorDataType.py,sha256=WmblM8GoLES62L12Ea3dC655_ruO2T3R2Q085OLCFc8,500
|
|
143
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/TensorTypeAndShape.py,sha256=noUmY1JdkO-Bjhghyuevf7cy0Gokhnh0r_AcmIt1fl4,2326
|
|
144
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/TypeInfo.py,sha256=ToFYZzH0Vit5VVIztodfzP-fCOc97vgBHXz6Y_tHyWk,2599
|
|
145
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/TypeInfoValue.py,sha256=a2VKzgcR6v4qiffa5a5HYNUaHKDLdmsFbAdsNwrmT5Q,198
|
|
146
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/ValueInfo.py,sha256=ZC6peiqYRYKYw_si4BmtZUbRRLf9BkkD4za4xky3QHY,2655
|
|
147
|
+
onnxruntime/tools/ort_format_model/ort_flatbuffers_py/fbs/__init__.py,sha256=EfkIrreUF6TrcYpBo1NJ8GOV_p_o_YXg3fSptBN5XUo,251
|
|
148
|
+
onnxruntime/tools/qdq_helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
149
|
+
onnxruntime/tools/qdq_helpers/optimize_qdq_model.py,sha256=9kpU0Dukc0ZEHnjwO7NqNFUFVRtOx8xgFPVWZpXkEcQ,1279
|
|
150
|
+
onnxruntime/transformers/__init__.py,sha256=2c213CqzXrc0N6Cqf__Te5d_SH_stfLdNdeNrugB7SQ,321
|
|
151
|
+
onnxruntime/transformers/affinity_helper.py,sha256=KOKBvzoBr-wOk0QHMGKzY1uy1iI7E6eHpYwBdTHM-Y4,1442
|
|
152
|
+
onnxruntime/transformers/benchmark.py,sha256=EzrLGMEXsU20XQ8iEM8RGGM22ZSRk41QAf8bHGMkGKg,33741
|
|
153
|
+
onnxruntime/transformers/benchmark_helper.py,sha256=umWUsxNc2IkQbTn9bXtaObOvitY8fgW78KBsbzyqkE4,23245
|
|
154
|
+
onnxruntime/transformers/bert_perf_test.py,sha256=P4N62-17JrwyIubnZS4vcne6AJ9k0FOCTIacAEqjfyU,20995
|
|
155
|
+
onnxruntime/transformers/bert_test_data.py,sha256=DhJJvauoQ9BUjVgMmRpNecFVFuhDhsrjIUwxrwa7FLc,23510
|
|
156
|
+
onnxruntime/transformers/compare_bert_results.py,sha256=ZtnITLB0Wy10npJE4mAMGWvFSYdQb8BumJg3J8CPEwc,7908
|
|
157
|
+
onnxruntime/transformers/constants.py,sha256=HBmbfaRLrLCen1q0C9tZYJApn2NBPX2p2h05hc5DTsE,1127
|
|
158
|
+
onnxruntime/transformers/convert_generation.py,sha256=a3qbhpLhY7KXgcvvLxtpY5U9lHzLmatAiqYSDQd11x8,127558
|
|
159
|
+
onnxruntime/transformers/convert_tf_models_to_pytorch.py,sha256=JrMGzUi_4cMfYoIYrxa1n0jnMDG-WYj-xmUXZmH8aJ0,6705
|
|
160
|
+
onnxruntime/transformers/convert_to_packing_mode.py,sha256=C0c8BP-CtMm4psvI-C9CDerXLMlQaqji68kxgLQSd34,16854
|
|
161
|
+
onnxruntime/transformers/dynamo_onnx_helper.py,sha256=wrSGLiZfQBMQhborPj3kFzMwSwWIdtI0Z0AKiwyoMjM,3797
|
|
162
|
+
onnxruntime/transformers/float16.py,sha256=GumnXmhSqmQsk1avBLok0fNHy1Q7mnO5XrNN31CbRJE,24691
|
|
163
|
+
onnxruntime/transformers/fusion_attention.py,sha256=s0xB9TetWxCtq6S_w-Cznpko2kKIf1s_XS2r1Cl3TSA,52843
|
|
164
|
+
onnxruntime/transformers/fusion_attention_clip.py,sha256=E0sfs6SX5RT1x_FYwz8jDYUKTNEkN4DTz7l-QBDUozw,10524
|
|
165
|
+
onnxruntime/transformers/fusion_attention_sam2.py,sha256=fZliC9PUbg-KRNrL-dyyZGDhRMEVAFHcg-FpXssqOLg,21346
|
|
166
|
+
onnxruntime/transformers/fusion_attention_unet.py,sha256=b4FGGJGDDzIPtCO_WySiUNeiFHKODAwHScxIDDBh6Kc,56932
|
|
167
|
+
onnxruntime/transformers/fusion_attention_vae.py,sha256=Ju-PG2LCnNM0KNmzbw4zXKwNkGxP4UOsawoJQ8WTbRw,12418
|
|
168
|
+
onnxruntime/transformers/fusion_bart_attention.py,sha256=3AcCTwHuVdl6gE9QTV_55HgTSCjPk41KaKxap5hfU9s,29437
|
|
169
|
+
onnxruntime/transformers/fusion_base.py,sha256=B8XFObxBIe6fv6lPKFHw8H-zIxOlNvNNRe67YJtFdmc,5870
|
|
170
|
+
onnxruntime/transformers/fusion_bias_add.py,sha256=7JRHl-p1M8GxNfa9cgHsES7dwburpaTWqYh921_8QjQ,2066
|
|
171
|
+
onnxruntime/transformers/fusion_biasgelu.py,sha256=vGamxthOu6jXsxCRVdTFaP25-_tnjz9TVq91pIRV_Is,2300
|
|
172
|
+
onnxruntime/transformers/fusion_biassplitgelu.py,sha256=6G73bmAGM5y02Rm_Lupbn341O0Y5Sr-2Re_628Ez2Qo,4516
|
|
173
|
+
onnxruntime/transformers/fusion_conformer_attention.py,sha256=-HRarRSTQEwq-XeDoRdzH9RY3konlVfhj-jtR9twOjU,5021
|
|
174
|
+
onnxruntime/transformers/fusion_embedlayer.py,sha256=Z7zXb7UYkgQO_Zikpnoj97KOoFYIHEm74yVvh-zf8kM,36750
|
|
175
|
+
onnxruntime/transformers/fusion_fastgelu.py,sha256=pi2U93F4xWMThs6Yz9K1d6AZQ1kyWSZhjeGqs7WWAVI,13324
|
|
176
|
+
onnxruntime/transformers/fusion_gelu.py,sha256=Y6rFXnh0forxzzoJjIw7ND4zEtDrWtNu4ZXBVdr25ac,10495
|
|
177
|
+
onnxruntime/transformers/fusion_gelu_approximation.py,sha256=Xsa2v5mHjEuZrwnf1bm3UCCJ8I1is0dmuzzXgf5zDl4,1029
|
|
178
|
+
onnxruntime/transformers/fusion_gemmfastgelu.py,sha256=jBQ1qx6rOJY-qY_35_HFlEjsp3aDuT7GSyXQqyXSQ4s,4258
|
|
179
|
+
onnxruntime/transformers/fusion_gpt_attention.py,sha256=20ZhplkAVJ3rq1VWwcNRmRs6OZu7lTHKIop3SAyDSUw,22508
|
|
180
|
+
onnxruntime/transformers/fusion_gpt_attention_megatron.py,sha256=HhoweTBxleb1niPOU_cfQzvUwM4LjxCVuZZWVEy3Imw,13639
|
|
181
|
+
onnxruntime/transformers/fusion_gpt_attention_no_past.py,sha256=qQb8WekiDJeQUV8egoCTrLoZki018veZTVVE-w3p3ds,10794
|
|
182
|
+
onnxruntime/transformers/fusion_group_norm.py,sha256=AUCHVK9FWmzSjIPFVIv194Qlure8xmFCyTKqcrQkkFA,7604
|
|
183
|
+
onnxruntime/transformers/fusion_layernorm.py,sha256=ZMmKu2AfN58LJnT-bIko_pOZuj3lbdMUAkmMvJmwLsQ,19513
|
|
184
|
+
onnxruntime/transformers/fusion_nhwc_conv.py,sha256=xHP6QT4F-K7z3Cm_5zh1aPqE0UkDwB0votQbqsxJeZg,3973
|
|
185
|
+
onnxruntime/transformers/fusion_options.py,sha256=NSeQVc9Hz9S-4uGpxuYfsigzdLDOdsRqXyujbfRPGhw,12704
|
|
186
|
+
onnxruntime/transformers/fusion_qordered_attention.py,sha256=VutuLlHX0oDnDhcbzWhVSq-VXlyKNaOXu2hW8gdn21c,17163
|
|
187
|
+
onnxruntime/transformers/fusion_qordered_gelu.py,sha256=V6BhjvA5rMpLOGw2bPQrierztLI_P_O99I9gLmy0nxM,4435
|
|
188
|
+
onnxruntime/transformers/fusion_qordered_layernorm.py,sha256=dq5odT_lrs8zWZZuADDCPDOGBfE8JLo5n5jI2obtT3U,4957
|
|
189
|
+
onnxruntime/transformers/fusion_qordered_matmul.py,sha256=j85chtrY9YrGD1ERNIHqCBAxZW51I2Sk_EFU4jg8qdM,8566
|
|
190
|
+
onnxruntime/transformers/fusion_quickgelu.py,sha256=e7MMq9G2aiIotoxnkd0a7-XmvyY-wYyefdTmXtBO_f8,2869
|
|
191
|
+
onnxruntime/transformers/fusion_reshape.py,sha256=AfT88v22G6PgZPzVKM39_QduUnlIbe8dbxvPCh-5dkg,6403
|
|
192
|
+
onnxruntime/transformers/fusion_rotary_attention.py,sha256=F-k5yClFyRmmricsOMxieHdWokr6UBqmtuanNeoPPV8,68253
|
|
193
|
+
onnxruntime/transformers/fusion_shape.py,sha256=EpmvtrdKOCD914c-tOqXzlZBHoN2mvc06R3MErCkfiw,3813
|
|
194
|
+
onnxruntime/transformers/fusion_simplified_layernorm.py,sha256=dha7pr-LVBXLcgDzs_pUqsPOd4CpUYtElOVQVLGrLFk,7470
|
|
195
|
+
onnxruntime/transformers/fusion_skip_group_norm.py,sha256=57T3O7C5pbama_5nQhiuOPbGnj2cAi9xHeoF8Fwqd_E,10880
|
|
196
|
+
onnxruntime/transformers/fusion_skiplayernorm.py,sha256=P4r7cXVTjRLZIyOqkOXl5gUjiOBiXRQaaV7u4Xm__I0,9168
|
|
197
|
+
onnxruntime/transformers/fusion_transpose.py,sha256=TxoWRd7ItEt1CbgUeKVqgqQyAt8_S8thA6Et73_kDCs,7035
|
|
198
|
+
onnxruntime/transformers/fusion_utils.py,sha256=wB8wfH05NzPV_Ubb36gm6bt3L2Ytea0-3iGNtsucou0,12773
|
|
199
|
+
onnxruntime/transformers/huggingface_models.py,sha256=C0B3Lh52edigeZd_JZEBBl2x_hruGF0u5VmsNOke_J4,9130
|
|
200
|
+
onnxruntime/transformers/import_utils.py,sha256=_ILscQRcSyaJHt1l6jqcny5FWy7Qr6N_7hKs5aav8oM,651
|
|
201
|
+
onnxruntime/transformers/io_binding_helper.py,sha256=IhQGhGY8fdFXE32ssIKuehO5l_oMAION5n1aH8tjdS8,17408
|
|
202
|
+
onnxruntime/transformers/large_model_exporter.py,sha256=ccTNu73VV8EVz3FvnyekjXVsn5uCE8wazBMBzk6xUq4,15311
|
|
203
|
+
onnxruntime/transformers/machine_info.py,sha256=0dEO335ovLhXeiRWlwyTq2Hi2zJDvQGTXZSejxBZcAU,7222
|
|
204
|
+
onnxruntime/transformers/metrics.py,sha256=I03M327XxrOgj4sLl-AzD5k9n2BlqGpF-cJfamEmHhA,5327
|
|
205
|
+
onnxruntime/transformers/onnx_exporter.py,sha256=DvUj1-ozpVwNaY6bCF1u1byZTHWDtRJbd3ClA2opRI8,25176
|
|
206
|
+
onnxruntime/transformers/onnx_model.py,sha256=5WuCoslJOrnJaVesHhTMIGC8evvwyN-pZo-71wHGRZU,67570
|
|
207
|
+
onnxruntime/transformers/onnx_model_bart.py,sha256=M_5C_iYSFhaJgtvtKEViM25Y_haeikC1XL-DekTFh1o,5579
|
|
208
|
+
onnxruntime/transformers/onnx_model_bert.py,sha256=NIRWpcBDGZMJ0pSrQrIELsIMtK2iZmFfu6rrNXePXWE,20157
|
|
209
|
+
onnxruntime/transformers/onnx_model_bert_keras.py,sha256=XuGewoX6nOch2caSomeCBM4NZRpNG-Pkd7ZOZ_WsKdI,18940
|
|
210
|
+
onnxruntime/transformers/onnx_model_bert_tf.py,sha256=5dfNx09iB_9_IX2xf3ZHfFYalMOaYzpwFqOOWYrLYnE,25433
|
|
211
|
+
onnxruntime/transformers/onnx_model_clip.py,sha256=KmoNv0Y8hWYIJDnL2eZCs0NfwW0XLXWBOVyHDpA-Qc0,1344
|
|
212
|
+
onnxruntime/transformers/onnx_model_conformer.py,sha256=yEBXH4eRP7-3VqRN7EAMMTraasfpxXwdpEV99ek3oYw,1444
|
|
213
|
+
onnxruntime/transformers/onnx_model_gpt2.py,sha256=3LmzgHuLvO5tyNHKWGidttyqrcpIE7aLBYbRqzjolUg,3913
|
|
214
|
+
onnxruntime/transformers/onnx_model_phi.py,sha256=361gHCYBWBeu3WAQAP6-X2lo8hdsHVjtRC7A8b4Uzx8,36377
|
|
215
|
+
onnxruntime/transformers/onnx_model_sam2.py,sha256=U8eNweDJabLmwA5qeVDfFguikH-yRVInrwTCKuzzAZg,4985
|
|
216
|
+
onnxruntime/transformers/onnx_model_t5.py,sha256=kKqi1RMxjbJOUdJxNOoHcneryQYgKSvZUf-IKT9o0Uc,28932
|
|
217
|
+
onnxruntime/transformers/onnx_model_tnlr.py,sha256=Dpvn5i5oocOVzr-wd2O3In4cluDeTlMe7hMp3R6x1mY,8437
|
|
218
|
+
onnxruntime/transformers/onnx_model_unet.py,sha256=y5OJmrCEtQq2mvlYOHEPbIkVaZgUtkEOCUxK5wlgll4,9517
|
|
219
|
+
onnxruntime/transformers/onnx_model_vae.py,sha256=W1Adx9YYwLhc5CSu3Ykgng2MtCn-OCMeFRVUmMeeY28,1545
|
|
220
|
+
onnxruntime/transformers/onnx_utils.py,sha256=MFOmBYBWeMNPiQhIaGPEiBvTRMofytW_wdUH6UGb7RI,2161
|
|
221
|
+
onnxruntime/transformers/optimizer.py,sha256=MzzI4RvxOBDLdNdLLP35RbpHE8ZmmoQNMl7PCtKZe94,25316
|
|
222
|
+
onnxruntime/transformers/profiler.py,sha256=Igx_QE-rVBL17UJlia0RP-QXYtM9AYuUt9gpN9GlsNc,24891
|
|
223
|
+
onnxruntime/transformers/quantize_helper.py,sha256=wyVGd_PquMTf0oxA0iLZmfHEhdAEuPk5CTMKMyQcLrE,2885
|
|
224
|
+
onnxruntime/transformers/shape_infer_helper.py,sha256=Y9RGSB75pGEmFlDS4X8LgivfqMupeE3NG503raVL45E,4591
|
|
225
|
+
onnxruntime/transformers/shape_optimizer.py,sha256=85TtGiak0NY7Q9piS75v6BQSe1uV0S7acKyVEHtublQ,15506
|
|
226
|
+
onnxruntime/transformers/torch_onnx_export_helper.py,sha256=DOTqWF9DEbxsxqKWtq3NCqcA7de-JSMgjS-MyczJimg,2575
|
|
227
|
+
onnxruntime/transformers/models/bart/__init__.py,sha256=F8Gml7gD7jmMyMIkKvHiXLfj7kWyz175X1-5_iaFx5k,495
|
|
228
|
+
onnxruntime/transformers/models/bart/export.py,sha256=PNlhkbvrxTxSSLXpzqoa02Lektzf8rdZpcVFBxw-qcI,4285
|
|
229
|
+
onnxruntime/transformers/models/bert/__init__.py,sha256=F8Gml7gD7jmMyMIkKvHiXLfj7kWyz175X1-5_iaFx5k,495
|
|
230
|
+
onnxruntime/transformers/models/bert/eval_squad.py,sha256=hE5_03D6TBJJWcicVvJCSTWvvJTBGzFEqGw_6Y51Z0M,12378
|
|
231
|
+
onnxruntime/transformers/models/gpt2/__init__.py,sha256=F8Gml7gD7jmMyMIkKvHiXLfj7kWyz175X1-5_iaFx5k,495
|
|
232
|
+
onnxruntime/transformers/models/gpt2/benchmark_gpt2.py,sha256=53krYHNeJBk8ZixWoWrZHxCbe9z4bDYiGW02tzxR-88,15930
|
|
233
|
+
onnxruntime/transformers/models/gpt2/convert_to_onnx.py,sha256=_a3Nw0brvyAhQ4bbBn73sQHRJJfuXzAZ1cLRXzKlId0,20705
|
|
234
|
+
onnxruntime/transformers/models/gpt2/gpt2_helper.py,sha256=PuV3Jbk1XPnk_jH8bs37n5GhRRpYqr_kG04rlV3i62M,41381
|
|
235
|
+
onnxruntime/transformers/models/gpt2/gpt2_parity.py,sha256=iRMcaSLzmcCxeWfBaBf_GTWa-DXkcG8mCir2QMXyUzg,18238
|
|
236
|
+
onnxruntime/transformers/models/gpt2/gpt2_tester.py,sha256=y85y46HTQ_rKgEx1sdZF5xD627cSTkEegq_ys8XT3cE,20020
|
|
237
|
+
onnxruntime/transformers/models/gpt2/parity_check_helper.py,sha256=jU3bTPvyKgHqxrGIce12_LbqaXC688XnBnBp5AHz_ZM,5806
|
|
238
|
+
onnxruntime/transformers/models/llama/__init__.py,sha256=yR2FucNw-jt_3CbNt-zuM7DmldPq1rJK3SV8gRISzN0,490
|
|
239
|
+
onnxruntime/transformers/models/llama/benchmark.py,sha256=loR-myJ258dxqIDMA4YEMoFcnvpvaVLWjLMB2kgYiXc,27488
|
|
240
|
+
onnxruntime/transformers/models/llama/benchmark_all.py,sha256=7GeipIci1sIVLxwv9pucwnRp2Mfqv-kqaCQbx1CaA8U,15767
|
|
241
|
+
onnxruntime/transformers/models/llama/benchmark_e2e.py,sha256=5w4KRm7RAoSqSbxYtBAllaZ1l_IbpRH8-os9bPTU3Hg,25439
|
|
242
|
+
onnxruntime/transformers/models/llama/convert_to_onnx.py,sha256=vmrc0jlcnR0guUWb1z_hQsjKQZzKOQ-kqy2FzTS_Jq8,41688
|
|
243
|
+
onnxruntime/transformers/models/llama/dist_settings.py,sha256=4rLhv9WYMsAeSYTlLJfvGn3BlnUoXSGSEh3ORCmgpgc,1636
|
|
244
|
+
onnxruntime/transformers/models/llama/llama_inputs.py,sha256=635EChyb9THN-TpcI4-X4ZcHFqCEygRk0OJAplMTX90,20499
|
|
245
|
+
onnxruntime/transformers/models/llama/llama_parity.py,sha256=8zvjEl5tx201SfVfiGvV6WZD7C_XkMooc0qwZmyArmU,10235
|
|
246
|
+
onnxruntime/transformers/models/llama/llama_torch.py,sha256=OIbSpg7bjfPN9SzyGfaBKmzsa-bGHQTx0X-etiEl0Zk,1732
|
|
247
|
+
onnxruntime/transformers/models/llama/quant_kv_dataloader.py,sha256=piVldpGm9eBmF4wzgmKJprhujqTPddqORxZyLizcJdA,4959
|
|
248
|
+
onnxruntime/transformers/models/longformer/__init__.py,sha256=F8Gml7gD7jmMyMIkKvHiXLfj7kWyz175X1-5_iaFx5k,495
|
|
249
|
+
onnxruntime/transformers/models/longformer/benchmark_longformer.py,sha256=oaYEyUGnTBjXdayIMaKR6UGuCOsfn9FYeyNjin13oEY,30250
|
|
250
|
+
onnxruntime/transformers/models/longformer/convert_to_onnx.py,sha256=cTmSpSZhytBrM40Ys1r4FCUctyovXS3_e40_iozD4Bk,15219
|
|
251
|
+
onnxruntime/transformers/models/longformer/generate_test_data.py,sha256=wQxpgo_vZBhKRlquJwUB9FH3_xxvyDC3aCCZdkvADLM,9964
|
|
252
|
+
onnxruntime/transformers/models/longformer/longformer_helper.py,sha256=FH7Uykc57rLNr1l0pr85OVgr9PZE_4x29xdE-t1riC4,3180
|
|
253
|
+
onnxruntime/transformers/models/phi2/__init__.py,sha256=yR2FucNw-jt_3CbNt-zuM7DmldPq1rJK3SV8gRISzN0,490
|
|
254
|
+
onnxruntime/transformers/models/phi2/convert_to_onnx.py,sha256=OZeFmtIYKrSYGkipD1-xcIYR8ryJfGUWqW2coqMZ2zo,20376
|
|
255
|
+
onnxruntime/transformers/models/phi2/inference_example.py,sha256=xZBHx3iFJ8jQvvNxFZTdYAFLxdOPYcldmk53ktgcjew,17700
|
|
256
|
+
onnxruntime/transformers/models/sam2/__init__.py,sha256=F8Gml7gD7jmMyMIkKvHiXLfj7kWyz175X1-5_iaFx5k,495
|
|
257
|
+
onnxruntime/transformers/models/sam2/benchmark_sam2.py,sha256=iR5JrzoXmxcMQtmvqWr-mKwoQooc9oIdRNj4fCKsuv8,22000
|
|
258
|
+
onnxruntime/transformers/models/sam2/convert_to_onnx.py,sha256=lGr13-3s2LB0rwOmOzzFFjv1-2csLtM1IKwH7lptAGw,10346
|
|
259
|
+
onnxruntime/transformers/models/sam2/image_decoder.py,sha256=KkN8SlNRTUoXiuEPKPsp3JnTuTGpPJ6bnUG4FYcPbos,11074
|
|
260
|
+
onnxruntime/transformers/models/sam2/image_encoder.py,sha256=QTliZbIGpcAsmDg8d7wtxeZomKqoWez9crW-GnqewzM,7583
|
|
261
|
+
onnxruntime/transformers/models/sam2/mask_decoder.py,sha256=g1hizue90Q0WrdUN002r9_rZe2FSek854tt4hZWJx3U,9062
|
|
262
|
+
onnxruntime/transformers/models/sam2/nvtx_helper.py,sha256=XJFujDb-p27zCJs-O-ZjcKEAetc5dc0keFvsIYgFQ6E,1312
|
|
263
|
+
onnxruntime/transformers/models/sam2/prompt_encoder.py,sha256=l75zFFBiRRdJHj16KQEUr-3T0mgxboJ8iZhbBeohqDw,8526
|
|
264
|
+
onnxruntime/transformers/models/sam2/sam2_demo.py,sha256=s0v63h97IDHdOlG-Xgy2gmwhGhhm2kSEaLzUqAcFtfk,10807
|
|
265
|
+
onnxruntime/transformers/models/sam2/sam2_image_onnx_predictor.py,sha256=UoRR0m33YgGz0JIbFPAFVrMKUPLpRu7dorH4RzikW04,12775
|
|
266
|
+
onnxruntime/transformers/models/sam2/sam2_utils.py,sha256=EcAszk561dUsqZ_qyQMV2x5GMoAnrmBsYjX1iUK8Kko,5677
|
|
267
|
+
onnxruntime/transformers/models/stable_diffusion/__init__.py,sha256=F8Gml7gD7jmMyMIkKvHiXLfj7kWyz175X1-5_iaFx5k,495
|
|
268
|
+
onnxruntime/transformers/models/stable_diffusion/benchmark.py,sha256=hTMR3Jade2ce1V0NYM1imvImP3dVThIkU1y_2Zw_TJA,48353
|
|
269
|
+
onnxruntime/transformers/models/stable_diffusion/benchmark_controlnet.py,sha256=0wLUcJMeSzrDOynjT30wC-8ncukGmgEnv5ngv9rFNk0,13253
|
|
270
|
+
onnxruntime/transformers/models/stable_diffusion/demo_txt2img.py,sha256=k_H66rQBSryX5MvHzheAcKq5pXIMPeoktzxP-EKfrPw,3394
|
|
271
|
+
onnxruntime/transformers/models/stable_diffusion/demo_txt2img_xl.py,sha256=F1DGjYE-kDuYdBn9ZMPT5Lc7jJNsCs_ZkTT5JgcGmD8,10179
|
|
272
|
+
onnxruntime/transformers/models/stable_diffusion/demo_utils.py,sha256=yk5Bw1Pu3RAluY_UE5Z1FvmjU8vQt8aQp0Low2X3tI0,29367
|
|
273
|
+
onnxruntime/transformers/models/stable_diffusion/diffusion_models.py,sha256=wbQLaKqh4q4_LVK5cwzbFI-r0m3zuw8AMB_o9CfRpK4,51710
|
|
274
|
+
onnxruntime/transformers/models/stable_diffusion/diffusion_schedulers.py,sha256=liNQ-O8mXkVDd5BWACjV58Fg6kVx_gWf6hp0mmySKzw,49538
|
|
275
|
+
onnxruntime/transformers/models/stable_diffusion/engine_builder.py,sha256=1BisglcBeEumjOvmju6hiBnQ8OMeoMfkmx8v4pGiX58,11980
|
|
276
|
+
onnxruntime/transformers/models/stable_diffusion/engine_builder_ort_cuda.py,sha256=hFXQIYGDYFzg8Vi4OVAcUknkHnwFe7B4gfEcifyZfZw,16294
|
|
277
|
+
onnxruntime/transformers/models/stable_diffusion/engine_builder_ort_trt.py,sha256=0M-JLT3Z1zYPEVkJ0TPCZuhbIFCstbBi5Wh623VLcww,11451
|
|
278
|
+
onnxruntime/transformers/models/stable_diffusion/engine_builder_tensorrt.py,sha256=LSoAcwy4nwFQ4aikwJimlAQl1iXAWX4nIbcWD2H7qPw,15999
|
|
279
|
+
onnxruntime/transformers/models/stable_diffusion/engine_builder_torch.py,sha256=4SeIgxcd7Vv3WuSpKcklESud8-O6tZKDVpFssNCzUTg,4289
|
|
280
|
+
onnxruntime/transformers/models/stable_diffusion/optimize_pipeline.py,sha256=LocY1eyRHdTGaTSjzBSLIA2-AnfSszfk7Lp4kr24vBE,12881
|
|
281
|
+
onnxruntime/transformers/models/stable_diffusion/ort_optimizer.py,sha256=Xi35IWxLtzTcXBhffGeOx2ltV_xCsjAzz7BBwi78mDE,5836
|
|
282
|
+
onnxruntime/transformers/models/stable_diffusion/pipeline_stable_diffusion.py,sha256=b_vTF4xFGFuXGl0FVDFYm7rK7fEyHzzSSbezm6HzTQA,33995
|
|
283
|
+
onnxruntime/transformers/models/stable_diffusion/trt_utilities.py,sha256=XZCfqG_kZ72e-L9p7PlGqc4NLvFZF1h40A6Guyj6z8k,432
|
|
284
|
+
onnxruntime/transformers/models/t5/__init__.py,sha256=F8Gml7gD7jmMyMIkKvHiXLfj7kWyz175X1-5_iaFx5k,495
|
|
285
|
+
onnxruntime/transformers/models/t5/convert_to_onnx.py,sha256=6n8mojdaT-4PtVJyQeUYboIzJcIljjaL3xdVmigUDaM,9010
|
|
286
|
+
onnxruntime/transformers/models/t5/past_helper.py,sha256=ounFkzTPTM0N9gjZ70jhh-grskckMQwCu2KsDupljpM,6987
|
|
287
|
+
onnxruntime/transformers/models/t5/t5_decoder.py,sha256=jboQOt9bzfIYj5RiHr5c9Le8_xM2iCTy9a7ZoqDoQsY,17262
|
|
288
|
+
onnxruntime/transformers/models/t5/t5_encoder.py,sha256=iTbEUNf9zE8wtrRYkvJ7mfSfXmGvwuDlcZTjKKhFRfE,6295
|
|
289
|
+
onnxruntime/transformers/models/t5/t5_encoder_decoder_init.py,sha256=13eGZw0soWdbjzpldIfsBeEYyYCF3jFDSbaaeai25U0,12273
|
|
290
|
+
onnxruntime/transformers/models/t5/t5_helper.py,sha256=GfXBXQ8PhJIvQxXBF3UajyQcKeAksYJwcvBVE1tjje8,11032
|
|
291
|
+
onnxruntime/transformers/models/whisper/__init__.py,sha256=yR2FucNw-jt_3CbNt-zuM7DmldPq1rJK3SV8gRISzN0,490
|
|
292
|
+
onnxruntime/transformers/models/whisper/benchmark.py,sha256=Trl33hh_AudH13Ev3okjS3gEtL2Fd-BrKXj3vAnfZXc,23376
|
|
293
|
+
onnxruntime/transformers/models/whisper/benchmark_all.py,sha256=PgT6BZupXcSBbjqYC6X4en6D9OqZQlGbvR0RY1HChM8,19377
|
|
294
|
+
onnxruntime/transformers/models/whisper/convert_to_onnx.py,sha256=lD3GYfFviG03OJ_QRMNtgLsAjEldoBziUslkkHxhZow,18404
|
|
295
|
+
onnxruntime/transformers/models/whisper/whisper_chain.py,sha256=7cgyyQdMOTE21Sg6LsYVh0QKPfWO5acKw9IEfKfznMw,15061
|
|
296
|
+
onnxruntime/transformers/models/whisper/whisper_decoder.py,sha256=8vqR-FefnQuFpgTOZHV7LUUG5sbZB0w_Cy_LzdjCn0c,16021
|
|
297
|
+
onnxruntime/transformers/models/whisper/whisper_encoder.py,sha256=6LyQmT-JasSzfYRqG4Mr9Cg5vp60TqTt22q3__Ey700,5740
|
|
298
|
+
onnxruntime/transformers/models/whisper/whisper_encoder_decoder_init.py,sha256=TA27lOA_Fd-j3yulAf3773Fv9UnyZYHWveqbJiAYCDg,12723
|
|
299
|
+
onnxruntime/transformers/models/whisper/whisper_helper.py,sha256=VatGmGiB0NJr1m1y5IqSLkWamQhj-ygmmL-9I-0lgxM,23487
|
|
300
|
+
onnxruntime/transformers/models/whisper/whisper_openai_helper.py,sha256=uF1MpfwD8LWFmA6-tWLq10ocB-yVFx_7NA_dL3Rsy0g,3272
|
|
301
|
+
onnxruntime_directml-1.20.0.dist-info/METADATA,sha256=VJSA2DP4dzDfeZ2ieT0PUls_9s1rJfEFgRh5OgKDSCs,4632
|
|
302
|
+
onnxruntime_directml-1.20.0.dist-info/WHEEL,sha256=ugue6NJCr9gUOQmWni1lhHLbY_ilTPbmSokNVdK9MnY,102
|
|
303
|
+
onnxruntime_directml-1.20.0.dist-info/entry_points.txt,sha256=7qLS4FbGXwPZjfdpVAGpnmk9I6m6H5CxEnwcCx1Imjs,77
|
|
304
|
+
onnxruntime_directml-1.20.0.dist-info/top_level.txt,sha256=zk_fJEekrTm9DLxX2LwGegokVqP6blqPhFoMIuh0Nv8,12
|
|
305
|
+
onnxruntime_directml-1.20.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
onnxruntime
|