Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoens committed Jul 9, 2024
1 parent 3934fe1 commit 75b62f8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: CPU Pytest benchmark
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.8
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Check ldd --version
run: ldd --version
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 50 # this is to make sure we obtain the target base commit
- name: Python Setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
echo "Action triggered by ${{ github.event.pull_request.html_url }}"
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 50 # this is to make sure we obtain the target base commit
- name: Python Setup
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Check ldd --version
run: ldd --version
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 50 # this is to make sure we obtain the target base commit
- name: Python Setup
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
container: pytorch/manylinux-cuda121
steps:
- name: Checkout tensordict
uses: actions/checkout@v2
uses: actions/checkout@v4
env:
AGENT_TOOLSDIRECTORY: "/opt/hostedtoolcache"
- name: Install PyTorch nightly
Expand All @@ -69,7 +69,7 @@ jobs:
python3 -mpip install auditwheel
auditwheel show dist/*
- name: Upload wheel for the test-wheel job
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: tensordict-linux-${{ matrix.python_version[0] }}_${{ matrix.cuda_support[2] }}.whl
path: dist/*.whl
Expand All @@ -92,9 +92,9 @@ jobs:
container: pytorch/manylinux-${{ matrix.cuda_support[2] }}
steps:
- name: Checkout tensordict
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Download built wheels
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: tensordict-linux-${{ matrix.python_version[0] }}_${{ matrix.cuda_support[2] }}.whl
path: /tmp/wheels
Expand Down Expand Up @@ -128,14 +128,14 @@ jobs:
cuda_support: [["", "cpu", "cpu"]]
steps:
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python_version[0] }}
architecture: x64
env:
AGENT_TOOLSDIRECTORY: "/opt/hostedtoolcache"
- name: Checkout tensordict
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install PyTorch Nightly
run: |
export PATH="/opt/python/${{ matrix.python_version[1] }}/bin:$PATH"
Expand All @@ -149,7 +149,7 @@ jobs:
export PATH="/opt/python/${{ matrix.python_version[1] }}/bin:$PATH"
python3 -mpip install numpy pytest pillow>=4.1.1 scipy networkx expecttest pyyaml
- name: Download built wheels
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: tensordict-linux-${{ matrix.python_version[0] }}_${{ matrix.cuda_support[2] }}.whl
path: /tmp/wheels
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
with:
python-version: ${{ matrix.python_version[1] }}
- name: Checkout tensordict
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install PyTorch nightly
shell: bash
run: |
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
with:
python-version: ${{ matrix.python_version[1] }}
- name: Checkout tensordict
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install PyTorch Nightly
shell: bash
run: |
Expand All @@ -249,7 +249,7 @@ jobs:
run: |
python3 -mpip install numpy pytest --no-cache-dir
- name: Download built wheels
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: tensordict-win-${{ matrix.python_version[0] }}.whl
path: wheels
Expand Down Expand Up @@ -291,9 +291,9 @@ jobs:
]
steps:
- name: Checkout tensordict
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Download built wheels
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: tensordict-win-${{ matrix.python_version[0] }}.whl
path: wheels
Expand Down

0 comments on commit 75b62f8

Please sign in to comment.