Skip to content

Commit

Permalink
pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
TankredO committed Apr 23, 2021
0 parents commit be91ec8
Show file tree
Hide file tree
Showing 178 changed files with 21,530 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/pt15_cu101_manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Manual Build pytorch1.5 cuda10.1

on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'Test pytorch1.5 cuda10.1 build'
workflow_run:
workflows: ['Trigger Builds']
types:
- completed
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8]
ginjinn-distribution: [ginjinn-gpu-pt15_cu101_linux]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
name: Python ${{ matrix.python-version }} example
steps:
- uses: actions/checkout@v2
- name: Setup conda
uses: s-weigand/setup-conda@v1
with:
update-conda: true
python-version: ${{ matrix.python-version }}
conda-channels: anaconda, conda-forge, pytorch
- run: conda --version
- run: which python
- name: Install dependencies
run: |
conda install pytest conda-build anaconda-client pip pytest-cov
- name: Build and publish GinJinn
run: |
conda config --set anaconda_upload yes
conda-build conda.recipe/${{ matrix.ginjinn-distribution }} --token ${{ secrets.ANACONDA_TOKEN }} --user AGOberprieler --variants "{'python': ['${{ matrix.python-version }}']}"
- name: Install GinJinn from Anaconda cloud
run: conda install -c conda-forge -c pytorch -c agoberprieler ginjinn2 pytorch=1.5.0 cudatoolkit=10.1
- name: Test with pytest
run: |
pytest --cov=./ginjinn/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
59 changes: 59 additions & 0 deletions .github/workflows/pt15_cu101_manual_nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Manual Nightly Build pytorch1.5 cuda10.1

on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'Test pytorch1.5 cuda10.1 build'
workflow_run:
workflows: ['Trigger Nightly Builds']
types:
- completed
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8]
ginjinn-distribution: [ginjinn-gpu-pt15_cu101_linux]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
NIGHTLY: true
name: Python ${{ matrix.python-version }} example
steps:
- uses: actions/checkout@v2
- name: Setup conda
uses: s-weigand/setup-conda@v1
with:
update-conda: true
python-version: ${{ matrix.python-version }}
conda-channels: anaconda, conda-forge, pytorch
- run: conda --version
- run: which python
- name: Install dependencies
run: |
conda install pytest conda-build anaconda-client pip pytest-cov
- name: Build and publish GinJinn
run: |
conda config --set anaconda_upload yes
conda-build conda.recipe/${{ matrix.ginjinn-distribution }} --token ${{ secrets.ANACONDA_TOKEN }} --user AGOberprieler --variants "{'python': ['${{ matrix.python-version }}']}" --label nightly
- name: Install GinJinn from Anaconda cloud
run: conda install -c conda-forge -c pytorch -c agoberprieler/label/nightly ginjinn2 pytorch=1.5.0 cudatoolkit=10.1
- name: Test with pytest
run: |
pytest --cov=./ginjinn/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
58 changes: 58 additions & 0 deletions .github/workflows/pt16_cu101_manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Manual Build pytorch1.6 cuda10.1

on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'Test pytorch1.6 cuda10.1 build'
workflow_run:
workflows: ['Trigger Builds']
types:
- completed
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8]
ginjinn-distribution: [ginjinn-gpu-pt16_cu101_linux]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
name: Python ${{ matrix.python-version }} example
steps:
- uses: actions/checkout@v2
- name: Setup conda
uses: s-weigand/setup-conda@v1
with:
update-conda: true
python-version: ${{ matrix.python-version }}
conda-channels: anaconda, conda-forge, pytorch
- run: conda --version
- run: which python
- name: Install dependencies
run: |
conda install pytest conda-build anaconda-client pip pytest-cov
- name: Build and publish GinJinn
run: |
conda config --set anaconda_upload yes
conda-build conda.recipe/${{ matrix.ginjinn-distribution }} --token ${{ secrets.ANACONDA_TOKEN }} --user AGOberprieler --variants "{'python': ['${{ matrix.python-version }}']}"
- name: Install GinJinn from Anaconda cloud
run: conda install -c conda-forge -c pytorch -c agoberprieler ginjinn2 pytorch=1.6.0 cudatoolkit=10.1
- name: Test with pytest
run: |
pytest --cov=./ginjinn/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
59 changes: 59 additions & 0 deletions .github/workflows/pt16_cu101_manual_nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Manual Nightly Build pytorch1.6 cuda10.1

on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'Test pytorch1.6 cuda10.1 build'
workflow_run:
workflows: ['Trigger Nightly Builds']
types:
- completed
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8]
ginjinn-distribution: [ginjinn-gpu-pt16_cu101_linux]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
NIGHTLY: true
name: Python ${{ matrix.python-version }} example
steps:
- uses: actions/checkout@v2
- name: Setup conda
uses: s-weigand/setup-conda@v1
with:
update-conda: true
python-version: ${{ matrix.python-version }}
conda-channels: anaconda, conda-forge, pytorch
- run: conda --version
- run: which python
- name: Install dependencies
run: |
conda install pytest conda-build anaconda-client pip pytest-cov
- name: Build and publish GinJinn
run: |
conda config --set anaconda_upload yes
conda-build conda.recipe/${{ matrix.ginjinn-distribution }} --token ${{ secrets.ANACONDA_TOKEN }} --user AGOberprieler --variants "{'python': ['${{ matrix.python-version }}']}" --label nightly
- name: Install GinJinn from Anaconda cloud
run: conda install -c conda-forge -c pytorch -c agoberprieler/label/nightly ginjinn2 pytorch=1.6.0 cudatoolkit=10.1
- name: Test with pytest
run: |
pytest --cov=./ginjinn/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
58 changes: 58 additions & 0 deletions .github/workflows/pt16_cu102_manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Manual Build pytorch1.6 cuda10.2

on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'Test pytorch1.6 cuda10.2 build'
workflow_run:
workflows: ['Trigger Builds']
types:
- completed
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8]
ginjinn-distribution: [ginjinn-gpu-pt16_cu102_linux]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
name: Python ${{ matrix.python-version }} example
steps:
- uses: actions/checkout@v2
- name: Setup conda
uses: s-weigand/setup-conda@v1
with:
update-conda: true
python-version: ${{ matrix.python-version }}
conda-channels: anaconda, conda-forge, pytorch
- run: conda --version
- run: which python
- name: Install dependencies
run: |
conda install pytest conda-build anaconda-client pip pytest-cov
- name: Build and publish GinJinn
run: |
conda config --set anaconda_upload yes
conda-build conda.recipe/${{ matrix.ginjinn-distribution }} --token ${{ secrets.ANACONDA_TOKEN }} --user AGOberprieler --variants "{'python': ['${{ matrix.python-version }}']}"
- name: Install GinJinn from Anaconda cloud
run: conda install -c conda-forge -c pytorch -c agoberprieler ginjinn2 pytorch=1.6.0 cudatoolkit=10.2
- name: Test with pytest
run: |
pytest --cov=./ginjinn/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
59 changes: 59 additions & 0 deletions .github/workflows/pt16_cu102_manual_nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Manual Nightly Build pytorch1.6 cuda10.2

on:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
tags:
description: 'Test pytorch1.6 cuda10.2 build'
workflow_run:
workflows: ['Trigger Nightly Builds']
types:
- completed
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8]
ginjinn-distribution: [ginjinn-gpu-pt16_cu102_linux]
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
NIGHTLY: true
name: Python ${{ matrix.python-version }} example
steps:
- uses: actions/checkout@v2
- name: Setup conda
uses: s-weigand/setup-conda@v1
with:
update-conda: true
python-version: ${{ matrix.python-version }}
conda-channels: anaconda, conda-forge, pytorch
- run: conda --version
- run: which python
- name: Install dependencies
run: |
conda install pytest conda-build anaconda-client pip pytest-cov
- name: Build and publish GinJinn
run: |
conda config --set anaconda_upload yes
conda-build conda.recipe/${{ matrix.ginjinn-distribution }} --token ${{ secrets.ANACONDA_TOKEN }} --user AGOberprieler --variants "{'python': ['${{ matrix.python-version }}']}" --label nightly
- name: Install GinJinn from Anaconda cloud
run: conda install -c conda-forge -c pytorch -c agoberprieler/label/nightly ginjinn2 pytorch=1.6.0 cudatoolkit=10.2
- name: Test with pytest
run: |
pytest --cov=./ginjinn/ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: true
Loading

0 comments on commit be91ec8

Please sign in to comment.