mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
### Description In PR #19073 I mistunderstood the value of "--parallel". Instead of testing if args.parallel is None or not , I should test the returned value of number_of_parallel_jobs function. If build.py was invoked without --parallel, then args.parallel equals to 1. Because it is the default value. Then we should not add "/MP". However, the current code adds it. Because if `args.paralllel` is evaluated to `if 1` , which is True. If build.py was invoked with --parallel with additional numbers, then args.parallel equals to 0. Because it is unspecified. Then we should add "/MP". However, the current code does not add it. Because `if args.paralllel` is evaluated to `if 0` , which is False. This also adds a new build flag: use_binskim_compliant_compile_flags, which is intended to be only used in ONNX Runtime team's build pipelines for compliance reasons. ### Motivation and Context |
||
|---|---|---|
| .. | ||
| build_check_binsize_config | ||
| __init__.py | ||
| build_full_ort_and_create_ort_files.sh | ||
| build_minimal_ort_and_run_tests.sh | ||
| build_ort_and_check_binary_size.py | ||
| check_build_binary_size.py | ||
| nnapi_minimal_build_minimal_ort_and_run_tests.sh | ||
| readelf_utils.py | ||