-
Notifications
You must be signed in to change notification settings - Fork 177
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
Update dependencies and package organization. #52
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,2 @@ | ||
torch | ||
numpy | ||
absl-py | ||
stanford-stk @ git+https://github.com/stanford-futuredata/stk.git@main | ||
grouped_gemm @ git+https://github.com/tgale96/grouped_gemm@main | ||
mosaicml-turbo==0.0.4 | ||
stanford-stk>=0.0.6 | ||
triton==2.1.0 |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -21,15 +21,22 @@ | |||||
] | ||||||
|
||||||
install_requires=[ | ||||||
'stanford-stk @ git+https://github.com/stanford-futuredata/stk.git@main', | ||||||
'grouped_gemm @ git+https://github.com/tgale96/grouped_gemm@main', | ||||||
'mosaicml-turbo==0.0.4', | ||||||
"triton==2.1.0", | ||||||
"stanford-stk>=0.0.6", | ||||||
] | ||||||
|
||||||
extra_deps = {} | ||||||
|
||||||
extra_deps['dev'] = [ | ||||||
'absl-py', | ||||||
extra_deps["gg"] = [ | ||||||
"grouped_gemm", | ||||||
] | ||||||
|
||||||
extra_deps["quant"] = [ | ||||||
"mosaicml-turbo==0.0.4", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
@dblalock can we bump to 0.0.5? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets do this in a separate PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1, I'd rather not touch anything right now |
||||||
] | ||||||
|
||||||
extra_deps["dev"] = [ | ||||||
"absl-py", | ||||||
] | ||||||
|
||||||
extra_deps['all'] = set(dep for deps in extra_deps.values() for dep in deps) | ||||||
|
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.
does this need strict pin? Might cause problems down the road if someone else (eg torch) starts upgrading....
Could we lower bound?
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.
I'm concerned about Triton breaking us with a newer release. We could make it >=2.1.0, but that's a little risky.