-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump torch to <2.5 (#142) * bump torch to <2.5 (#143) * bump torch to <2.4.1 (#144) * bump torch (#146) * install from git, not pypi * Update setup.py Co-authored-by: Saaketh Narayan <[email protected]> * no type checking in `kernel.py` (#147) --------- Co-authored-by: Saaketh Narayan <[email protected]>
- Loading branch information
1 parent
5b2650a
commit 35abddf
Showing
4 changed files
with
52 additions
and
110 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,14 +21,14 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
include: | ||
- name: "python3.11-pytorch2.3.1-gpus1" | ||
- name: "python3.11-pytorch2.4.0-gpus1" | ||
gpu_num: 1 | ||
python_version: 3.11 | ||
container: mosaicml/pytorch:2.3.1_cu121-python3.11-ubuntu20.04 | ||
- name: "python3.11-pytorch2.3.1-gpus2" | ||
container: mosaicml/pytorch:2.4.0_cu124-python3.11-ubuntu20.04 | ||
- name: "python3.11-pytorch2.4.0-gpus2" | ||
gpu_num: 2 | ||
python_version: 3.11 | ||
container: mosaicml/pytorch:2.3.1_cu121-python3.11-ubuntu20.04 | ||
container: mosaicml/pytorch:2.4.0_cu124-python3.11-ubuntu20.04 | ||
steps: | ||
- name: Run PR GPU tests | ||
uses: mosaicml/ci-testing/.github/actions/[email protected] | ||
|
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 |
---|---|---|
|
@@ -62,15 +62,15 @@ | |
install_requires = [ | ||
'numpy>=1.21.5,<2.1.0', | ||
'packaging>=21.3.0,<24.2', | ||
'torch>=2.3.0,<2.4', | ||
'torch>=2.4.0,<2.4.1', | ||
'triton>=2.1.0', | ||
'stanford-stk @ git+https://[email protected]/stanford-futuredata/stk.git@a1ddf98466730b88a2988860a9d8000fd1833301', | ||
'stanford-stk @ git+https://[email protected]/stanford-futuredata/stk.git@v0.7.1', | ||
] | ||
|
||
extra_deps = {} | ||
|
||
extra_deps['gg'] = [ | ||
'grouped_gemm @ git+https://[email protected]/tgale96/grouped_gemm.git@66c7195e35e8c4f22fa6a014037ef511bfa397cb', | ||
'grouped_gemm @ git+https://[email protected]/tgale96/grouped_gemm.git@v0.1.6', | ||
] | ||
|
||
extra_deps['dev'] = [ | ||
|
@@ -83,7 +83,7 @@ | |
] | ||
|
||
extra_deps['testing'] = [ | ||
'mosaicml>=0.22.0', | ||
'mosaicml>=0.24.1', | ||
] | ||
|
||
extra_deps['all'] = list({dep for key, deps in extra_deps.items() for dep in deps if key not in {'testing'}}) | ||
|