Skip to content

remove the "List installed packages" step #7

remove the "List installed packages" step

remove the "List installed packages" step #7

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
env:
OS: ${{ matrix.os }}
# container:
# image: pytorch/pytorch:2.4.0-cuda11.8-cudnn9-devel
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install CUDA Toolkit
uses: Jimver/[email protected]
with:
cuda: "12.4.0"
- name: Verify CUDA installation
run: |
nvcc --version
python -c "import torch; print(torch.cuda.is_available())"