onnxruntime/tools/ci_build
Adrian Lizarraga 3b4c7df4e9
[QNN EP] Make QNN EP a shared library (#23120)
### Description
- Makes QNN EP a shared library **by default** when building with
`--use_qnn` or `--use_qnn shared_lib`. Generates the following build
artifacts:
- **Windows**: `onnxruntime_providers_qnn.dll` and
`onnxruntime_providers_shared.dll`
- **Linux**: `libonnxruntime_providers_qnn.so` and
`libonnxruntime_providers_shared.so`
  - **Android**: Not supported. Must build QNN EP as a static library.
- Allows QNN EP to still be built as a static library with `--use_qnn
static_lib`. This is primarily for the Android QNN AAR package.
- Unit tests run for both the static and shared QNN EP builds.

### Detailed changes
- Updates Java bindings to support both shared and static QNN EP builds.
- Provider bridge API:
- Adds logging sink ETW to the provider bridge. Allows EPs to register
ETW callbacks for ORT logging.
- Adds a variety of methods for onnxruntime objects that are needed by
QNN EP.
- QNN EP:
- Adds `ort_api.h` and `ort_api.cc` that encapsulates the API provided
by ORT in a manner that allows the EP to be built as either a shared or
static library.
- Adds custom function to transpose weights for Conv and Gemm (instead
of adding util to provider bridge API).
- Adds custom function to quantize data for LeakyRelu (instead of adding
util to provider bridge API).
  - Adds custom ETW tracing for QNN profiling events:
    - shared library: defines its own TraceLogging provider handle
- static library: uses ORT's TraceLogging provider handle and existing
telemetry provider.
- ORT-QNN Packages:
- **Python**: Pipelines build QNN EP as a shared library by default.
User can build a local python wheel with QNN EP as a static library by
passing `--use_qnn static_lib`.
- **NuGet**: Pipelines build QNN EP as a shared library by default.
`build.py` currently enforces QNN EP to be built as a shared library.
Can add support for building a QNN NuGet package with static later if
deemed necessary.
- **Android**: Pipelines build QNN EP as a **static library**.
`build.py` enforces QNN EP to be built as a static library. Packaging
multiple shared libraries into an Android AAR package is not currently
supported due to the added need to also distribute a shared libcpp.so
library.

### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
2025-01-22 12:11:00 -08:00
..
github [QNN EP] Make QNN EP a shared library (#23120) 2025-01-22 12:11:00 -08:00
requirements Update onnxruntime binary size checks ci pipeline's docker image (#23405) 2025-01-17 15:29:17 -08:00
__init__.py
amd_hipify.py [MigraphX EP] [ROCm EP] Upstream ROCm changes for bugfixes and features (#23249) 2025-01-15 12:57:04 -08:00
build.py [QNN EP] Make QNN EP a shared library (#23120) 2025-01-22 12:11:00 -08:00
compile_triton.py Use ruff as the formatter to replace black-isort (#23397) 2025-01-16 11:14:15 -08:00
coverage.py
gen_def.py Bump ruff from 0.5.4 to 0.9.1 (#23328) 2025-01-15 11:11:17 -08:00
get_docker_image.py Change docker buildx's driver to default (#23388) 2025-01-16 09:38:34 -08:00
hipify-perl [MigraphX EP] [ROCm EP] Upstream ROCm changes for bugfixes and features (#23249) 2025-01-15 12:57:04 -08:00
logger.py
op_registration_utils.py Enable comprehension simplification in ruff rules (#23414) 2025-01-17 08:43:06 -08:00
op_registration_validator.py Target py310 and modernize codebase with ruff (#23401) 2025-01-16 19:10:14 -08:00
patch_manylinux.py Target py310 and modernize codebase with ruff (#23401) 2025-01-16 19:10:14 -08:00
policheck_exclusions.xml
reduce_op_kernels.py Enable comprehension simplification in ruff rules (#23414) 2025-01-17 08:43:06 -08:00
replace_urls_in_deps.py Target py310 and modernize codebase with ruff (#23401) 2025-01-16 19:10:14 -08:00
set-trigger-rules.py Target py310 and modernize codebase with ruff (#23401) 2025-01-16 19:10:14 -08:00
update_tsaoptions.py Target py310 and modernize codebase with ruff (#23401) 2025-01-16 19:10:14 -08:00
upload_python_package_to_azure_storage.py Target py310 and modernize codebase with ruff (#23401) 2025-01-16 19:10:14 -08:00