Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix source and pip tar.gz builds on s390x systems #5984

Merged
merged 1 commit into from
Mar 2, 2024
Merged

Conversation

cjvolzka
Copy link
Contributor

@cjvolzka cjvolzka commented Mar 1, 2024

Description

Motivation and Context

  • Building on s390x (and other environments depending on python setup) fails
    • The issue also can also appear when installing 1.16.0rc1 from TestPyPI for environments where we don't have pre-built wheels
    • Failures include not being able to find pacakges despite them being installed
      pip3 install -e . ... 
      -- Could NOT find pybind11 (missing: pybind11_DIR)
      ... 
      Traceback (most recent call last): File "/onnx/.setuptools-cmake-build/tools/protoc-gen-mypy.py", line 28, in <module>
      import google.protobuf.descriptor_pb2 as d_typed 
      
  • The issue is caused by (Fix ModuleNotFoundError: No module named 'cmake' #5195) which was to fix (ModuleNotFoundError: No module named 'cmake' during pip install -e . #5194)
    • The original fix bypasses the pip venv PYTHONPATH and attempts to rely on sys.path. However without the pip venv PYTHONPATH, some modules may not be found even if they are installed.
    • Instead of bypassing the pip venv PYTHONPATH, this comment from the original issue shows how to address the issue using pyproject.toml's [build-system]
  • I replicated the origial issue and confirmed this fix resolves it.
  • I confirmed the builds work on s390x with this fix

* Fix builds from source and pip tar.gz on s390x systems
* Revert (#5195) and replace with fix from [this comment](#5194 (comment)) from the original issue (#5194)

### Motivation and Context
* Building on s390x (and other environments depending on python setup) fails
    * The issue also can also appear when installing `1.16.0rc1` from TestPyPI for environments where we don't have pre-built wheels
    * Failures include not being able to find pacakges despite them being installed
        ```
        pip3 install -e . ...
        -- Could NOT find pybind11 (missing: pybind11_DIR)
        ...
        Traceback (most recent call last): File "/onnx/.setuptools-cmake-build/tools/protoc-gen-mypy.py", line 28, in <module>
        import google.protobuf.descriptor_pb2 as d_typed
        ```
* The issue is cased by (#5195) which was to fix (#5194)
    * The original fix bypasses the pip venv PYTHONPATH and attempts to rely on sys.path. However without the pip venv PYTHONPATH, some modules may not be found even if they are installed.
        * For reference, the pip venv PYTHONPATH gets set to  `/tmp/pip-build-env-bn_o_cjc/site` which contains `sitecustomize.py` which comes from https://github.com/pypa/pip/blob/main/tests/lib/venv.py#L171-L189
    *  Instead of bypassing the pip venv PYTHONPATH, [this comment](#5194 (comment)) from the original issue shows how to address the issue using pyproject.toml's `[build-system]`
 * I replicated the origial issue and confirmed this fix resolves it.
 * I confirmed the builds work on s390x with this fix

Signed-off-by: Charles Volzka <cjvolzka@us.ibm.com>
@cjvolzka cjvolzka requested a review from a team as a code owner March 1, 2024 17:23
@cjvolzka cjvolzka added this to the 1.16 milestone Mar 1, 2024
Copy link

codecov bot commented Mar 1, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 56.81%. Comparing base (b48d763) to head (b054c4f).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #5984   +/-   ##
=======================================
  Coverage   56.81%   56.81%           
=======================================
  Files         506      506           
  Lines       30357    30357           
  Branches     4589     4589           
=======================================
  Hits        17246    17246           
  Misses      12283    12283           
  Partials      828      828           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Copy link
Contributor

@justinchuby justinchuby left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you! This fix looks neat.

@justinchuby justinchuby added the run release CIs Use this label to trigger release tests in CI label Mar 1, 2024
@justinchuby justinchuby closed this Mar 1, 2024
@justinchuby justinchuby reopened this Mar 1, 2024
@cjvolzka cjvolzka added this pull request to the merge queue Mar 2, 2024
Merged via the queue into main with commit 238f2b9 Mar 2, 2024
82 checks passed
@cjvolzka cjvolzka deleted the fix-s390x-builds branch March 2, 2024 01:30
cjvolzka added a commit that referenced this pull request Mar 2, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
### Description
* Cherry-pick (#5984) - Fix builds from source and pip tar.gz on s390x systems
* Revert (#5195) and replace with fix from [this comment](#5194 (comment)) from the original issue (#5194)

### Motivation and Context
* Building on s390x (and other environments depending on python setup) fails
    * The issue also can also appear when installing `1.16.0rc1` from TestPyPI for environments where we don't have pre-built wheels
    * Failures include not being able to find pacakges despite them being installed
        ```
        pip3 install -e . ...
        -- Could NOT find pybind11 (missing: pybind11_DIR)
        ...
        Traceback (most recent call last): File "/onnx/.setuptools-cmake-build/tools/protoc-gen-mypy.py", line 28, in <module>
        import google.protobuf.descriptor_pb2 as d_typed
        ```
* The issue is cased by (#5195) which was to fix (#5194)
    * The original fix bypasses the pip venv PYTHONPATH and attempts to rely on sys.path. However without the pip venv PYTHONPATH, some modules may not be found even if they are installed.
        * For reference, the pip venv PYTHONPATH gets set to  `/tmp/pip-build-env-bn_o_cjc/site` which contains `sitecustomize.py` which comes from https://github.com/pypa/pip/blob/main/tests/lib/venv.py#L171-L189
    *  Instead of bypassing the pip venv PYTHONPATH, [this comment](#5194 (comment)) from the original issue shows how to address the issue using pyproject.toml's `[build-system]`
 * I replicated the origial issue and confirmed this fix resolves it.
 * I confirmed the builds work on s390x with this fix

Signed-off-by: Charles Volzka <cjvolzka@us.ibm.com>
cjvolzka added a commit that referenced this pull request Mar 5, 2024
…5986)

### Description
* Cherry-pick (#5984) - Fix builds from source and pip tar.gz on s390x
systems
* Revert (#5195) and replace with fix from [this
comment](#5194 (comment))
from the original issue (#5194)

### Motivation and Context
* Building on s390x (and other environments depending on python setup)
fails * The issue also can also appear when installing `1.16.0rc1` from
TestPyPI for environments where we don't have pre-built wheels *
Failures include not being able to find pacakges despite them being
installed ``` pip3 install -e . ... -- Could NOT find pybind11 (missing:
pybind11_DIR) ...
Traceback (most recent call last): File
"/onnx/.setuptools-cmake-build/tools/protoc-gen-mypy.py", line 28, in
<module>
        import google.protobuf.descriptor_pb2 as d_typed
        ```
* The issue is cased by (#5195) which was to fix (#5194) * The original
fix bypasses the pip venv PYTHONPATH and attempts to rely on sys.path.
However without the pip venv PYTHONPATH, some modules may not be found
even if they are installed. * For reference, the pip venv PYTHONPATH
gets set to `/tmp/pip-build-env-bn_o_cjc/site` which contains
`sitecustomize.py` which comes from
https://github.com/pypa/pip/blob/main/tests/lib/venv.py#L171-L189 *
Instead of bypassing the pip venv PYTHONPATH, [this
comment](#5194 (comment))
from the original issue shows how to address the issue using
pyproject.toml's `[build-system]`
 * I replicated the origial issue and confirmed this fix resolves it.
 * I confirmed the builds work on s390x with this fix

Signed-off-by: Charles Volzka <cjvolzka@us.ibm.com>
isdanni pushed a commit to isdanni/onnx that referenced this pull request Mar 18, 2024
### Description
* Fix builds from source and pip tar.gz on s390x systems
* Revert (onnx#5195) and replace with fix from [this
comment](onnx#5194 (comment))
from the original issue (onnx#5194)

### Motivation and Context
* Building on s390x (and other environments depending on python setup)
fails
* The issue also can also appear when installing `1.16.0rc1` from
TestPyPI for environments where we don't have pre-built wheels
* Failures include not being able to find pacakges despite them being
installed
        ```
        pip3 install -e . ...
        -- Could NOT find pybind11 (missing: pybind11_DIR)
        ...
Traceback (most recent call last): File
"/onnx/.setuptools-cmake-build/tools/protoc-gen-mypy.py", line 28, in
<module>
        import google.protobuf.descriptor_pb2 as d_typed
        ```
* The issue is cased by (onnx#5195) which was to fix (onnx#5194)
* The original fix bypasses the pip venv PYTHONPATH and attempts to rely
on sys.path. However without the pip venv PYTHONPATH, some modules may
not be found even if they are installed.
* For reference, the pip venv PYTHONPATH gets set to
`/tmp/pip-build-env-bn_o_cjc/site` which contains `sitecustomize.py`
which comes from
https://github.com/pypa/pip/blob/main/tests/lib/venv.py#L171-L189
* Instead of bypassing the pip venv PYTHONPATH, [this
comment](onnx#5194 (comment))
from the original issue shows how to address the issue using
pyproject.toml's `[build-system]`
 * I replicated the origial issue and confirmed this fix resolves it.
 * I confirmed the builds work on s390x with this fix

Signed-off-by: Charles Volzka <cjvolzka@us.ibm.com>
Signed-off-by: isdanni <leedanni@gmail.com>
linshokaku pushed a commit to linshokaku/onnx that referenced this pull request Oct 2, 2024
### Description
* Fix builds from source and pip tar.gz on s390x systems
* Revert (onnx#5195) and replace with fix from [this
comment](onnx#5194 (comment))
from the original issue (onnx#5194)

### Motivation and Context
* Building on s390x (and other environments depending on python setup)
fails
* The issue also can also appear when installing `1.16.0rc1` from
TestPyPI for environments where we don't have pre-built wheels
* Failures include not being able to find pacakges despite them being
installed
        ```
        pip3 install -e . ...
        -- Could NOT find pybind11 (missing: pybind11_DIR)
        ...
Traceback (most recent call last): File
"/onnx/.setuptools-cmake-build/tools/protoc-gen-mypy.py", line 28, in
<module>
        import google.protobuf.descriptor_pb2 as d_typed
        ```
* The issue is cased by (onnx#5195) which was to fix (onnx#5194)
* The original fix bypasses the pip venv PYTHONPATH and attempts to rely
on sys.path. However without the pip venv PYTHONPATH, some modules may
not be found even if they are installed.
* For reference, the pip venv PYTHONPATH gets set to
`/tmp/pip-build-env-bn_o_cjc/site` which contains `sitecustomize.py`
which comes from
https://github.com/pypa/pip/blob/main/tests/lib/venv.py#L171-L189
* Instead of bypassing the pip venv PYTHONPATH, [this
comment](onnx#5194 (comment))
from the original issue shows how to address the issue using
pyproject.toml's `[build-system]`
 * I replicated the origial issue and confirmed this fix resolves it.
 * I confirmed the builds work on s390x with this fix

Signed-off-by: Charles Volzka <cjvolzka@us.ibm.com>
Signed-off-by: Linsho Kaku <linsho@preferred.jp>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
run release CIs Use this label to trigger release tests in CI
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

None yet

2 participants