Skip to content

Commit

Permalink
Disable tensor and autodiff tests generation
Browse files Browse the repository at this point in the history
  • Loading branch information
syl20bnr committed Jan 4, 2024
1 parent 81f9c91 commit 60ebdbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ jobs:
sudo apt install -y libegl1-mesa libgl1-mesa-dri libxcb-xfixes0-dev mesa-vulkan-drivers
- name: wgpu tests
# run: cargo test tests::module -p burn-wgpu --color=always -- --color=always --test-threads 1
run: cargo test tests::matmul -p burn-wgpu --color=always -- --color=always --test-threads 1
# run: cargo test tests::matmul -p burn-wgpu --color=always -- --color=always --test-threads 1
run: cargo -p burn-wgpu --color=always -- --color=always --test-threads 1

# - name: Run cargo clippy for stable version
# if: runner.os == 'Linux' && matrix.rust == 'stable' && matrix.test == 'std'
Expand Down
4 changes: 2 additions & 2 deletions burn-wgpu/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ mod tests {

pub type ReferenceTensor<const D: usize> = burn_tensor::Tensor<ReferenceBackend, D>;

burn_tensor::testgen_all!();
burn_autodiff::testgen_all!();
// burn_tensor::testgen_all!();
// burn_autodiff::testgen_all!();
}

0 comments on commit 60ebdbb

Please sign in to comment.