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

fixs missing include #14

Merged
merged 2 commits into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ jobs:
uses: actions/checkout@v4
- name: Build wheel with Python 3.10
run: |
python3.10 -m pip install -U setuptools poetry build six
python3.10 -m pip install -U setuptools poetry build six pybind11
python3.10 -m poetry build -f wheel
- name: Build wheel with Python 3.11
run: |
python3.11 -m pip install -U setuptools poetry build six
python3.11 -m pip install -U setuptools poetry build six pybind11
python3.11 -m poetry build -f wheel
- name: Build wheel with Python 3.12
run: |
python3.12 -m pip install -U setuptools poetry build six
python3.12 -m pip install -U setuptools poetry build six pybind11
python3.12 -m poetry build -f wheel
- name: Upload the wheel artifact
uses: actions/upload-artifact@v4
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ exclude = [
]

[tool.poetry.build]
script = "build.py"
script = "cupti_build.py"
generate-setup-file = true

[build-system]
Expand All @@ -44,7 +44,7 @@ ft_launcher = "nvidia_resiliency_ext.fault_tolerance.launcher:main"
profile = "black" # black-compatible
line_length = 100 # should match black parameters
py_version = 310 # python 3.10 as a target version
extend_skip = ["setup.py", "build.py"]
extend_skip = ["setup.py", "cupti_build.py"]

[tool.black]
line_length = 100
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <cstdio>
#include <vector>
#include <cstdint>
#include <cstdlib>
#include <mutex>


Expand Down