forked from pytorch/torchrec
-
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.
test fix dynamic embedding wheels (pytorch#1428)
Summary: Pull Request resolved: pytorch#1428 Differential Revision: D50034865
- Loading branch information
1 parent
8beba7d
commit df99fad
Showing
1 changed file
with
8 additions
and
4 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 |
---|---|---|
|
@@ -14,20 +14,24 @@ on: | |
|
||
jobs: | ||
build_wheels: | ||
name: Wheels on ${{ matrix.os }}/${{ matrix.pyver }}/cu${{ matrix.cuver }} | ||
name: build_dynamic_embedding_wheels_${{ matrix.python-version }}_cu${{ matrix.cuver }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
pyver: [ cp38, cp39, cp310 ] | ||
cuver: [ "11.6", "11.3"] | ||
os: [linux.2xlarge] | ||
python-version: ["3.8"] | ||
cuver: ["11.6"] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: install pipx | ||
run: | | ||
pip3 install --user pipx | ||
- uses: pypa/[email protected] | ||
with: | ||
package-dir: contrib/dynamic_embedding | ||
|