-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
TankredO
committed
Apr 23, 2021
0 parents
commit be91ec8
Showing
178 changed files
with
21,530 additions
and
0 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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -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 |
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 |
---|---|---|
@@ -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 |
Oops, something went wrong.