-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Add custom gpu call for linux wheel (#12)
* Update Publish.yml * Update Publish.yml * Update Publish.yml * Update Publish.yml * Update Publish.yml * Update pyproject.toml * Update pyproject.toml * Update Publish.yml * Update pyproject.toml * Update pyproject.toml * Update requirements-dev.txt * Update Publish.yml * Fix macos and windows * Update Publish.yml * Update Publish.yml * Update Publish.yml * Update permission * Update Publish.yml * Update Publish.yml * Update * Update Publish.yml * Update * Update * Update * Update pyproject.toml * Update pyproject.toml * Fix python version compat * Update pyproject.toml * Update Publish.yml * Update * Update * Update prepare_build_wheel_on_cuda.sh * Update prepare_build_wheel_on_cuda.sh * Update prepare_build_wheel_on_cuda.sh * Update prepare_build_wheel_on_cuda.sh * Update prepare_build_wheel_on_cuda.sh * Update * Update prepare_build_wheel_on_cuda.sh * Update prepare_build_wheel_on_cuda.sh * Update setup_cuda.py
- Loading branch information
Showing
15 changed files
with
36 additions
and
118 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
|
||
import glob | ||
import os | ||
import io | ||
import platform | ||
import re | ||
import subprocess | ||
|
@@ -62,6 +63,10 @@ | |
|
||
HERE = os.path.dirname(os.path.realpath(__file__)) | ||
|
||
# obtain long description from README | ||
here = os.path.abspath(os.path.dirname(__file__)) | ||
with io.open(os.path.join(here, 'README.md'), 'r', encoding='utf-8') as f: | ||
README = f.read() | ||
|
||
# This custom class for building the extensions uses CMake to compile. You | ||
# don't have to use CMake for this task, but I found it to be the easiest when | ||
|
@@ -156,6 +161,8 @@ def build_extension(self, ext): | |
name='braintaichi', | ||
version=__version__, | ||
description='Leveraging Taichi Lang to customize brain dynamics operators', | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
author='BrainTaichi Developers', | ||
author_email='[email protected]', | ||
packages=find_namespace_packages(exclude=['lib*', 'docs*', 'tests*', 'win_dll*', 'out*', 'cmake*', 'scripts*']), | ||
|