Adds OUTPUT_PADDING
to ConvTrans2D
#908
Workflow file for this run
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
on: | |
- push | |
- pull_request | |
jobs: | |
cargo-check-features: | |
name: cargo-check-features | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
config: | |
- toolchain: stable | |
command: cargo hack check --feature-powerset --no-dev-deps --depth 2 --skip default,nightly,cuda,cudnn,webgpu | |
- toolchain: nightly | |
command: cargo hack check --each-feature --no-dev-deps --features nightly --skip default,cuda,cudnn,webgpu | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.config.toolchain }} | |
override: true | |
- uses: taiki-e/install-action@cargo-hack | |
- name: Check Features Combinations | |
run: ${{ matrix.config.command }} |