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

[ci] added wheel build scripts #910

Merged
merged 13 commits into from
May 5, 2022
Prev Previous commit
Next Next commit
polish code and workflow
  • Loading branch information
FrankLeeeee committed May 1, 2022
commit 9d905f277b04b576bd1adb0ff6ab9c849677cd89
7 changes: 3 additions & 4 deletions .github/workflows/scripts/build_colossalai_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@ def all_wheel_info():
lines = file_text.strip().split('\n')

for line in lines:
print(line)
for method, url, python_version in line.split():
wheel_info[torch_version][cuda_version][python_version] = dict(method=method, url=url)
method, url, python_version = line.split('\t')
wheel_info[torch_version][cuda_version][python_version] = dict(method=method, url=url)
return wheel_info


Expand All @@ -61,7 +60,7 @@ def build_colossalai(wheel_info):

def main():
wheel_info = all_wheel_info()
build_colossalai(wheel_info)
# build_colossalai(wheel_info)

if __name__ == '__main__':
main()
Expand Down