-
-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to manylinux_2_28_x86_64 (#496)
- Loading branch information
1 parent
264b71f
commit 2c9cc34
Showing
5 changed files
with
13 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
# install python dependencies | ||
python3 -m pip install --upgrade pip | ||
python3 -m pip install setuptools wheel twine auditwheel |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
python3 -m pip wheel . -w dist/ --no-deps | ||
auditwheel repair dist/*.whl --plat $AUDITWHEEL_PLAT | ||
twine upload --skip-existing wheelhouse/* |
2c9cc34
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Possible performance regression was detected for benchmark 'Python-Benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold
2
.tests/python/benchmarks/test_ops.py::test_perf_bfv[256-bfv_test-add]
3358.5560895702897
iter/sec (stddev: 0.000001645522078482284
)8643.950824555428
iter/sec (stddev: 0.000003551626309436832
)2.57
tests/python/benchmarks/test_ops.py::test_perf_bfv[4096-bfv_test-add]
3352.1514174863937
iter/sec (stddev: 0.0000014623501715163625
)8698.915401837972
iter/sec (stddev: 0.0000014620686432503777
)2.60
This comment was automatically generated by workflow using github-action-benchmark.